:root {
  --orange: #f7941d;
  --orange-soft: #ffb55a;
  --orange-dark: #d86c00;
  --ink: #151616;
  --ink-soft: #252726;
  --paper: #f5f2ea;
  --paper-deep: #ebe6da;
  --muted: #6d6f6a;
  --line: rgba(21, 22, 22, 0.13);
  --white: #ffffff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:has(.mobile-menu.is-open) { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }
h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 12px 16px; background: #fff; color: var(--ink); font-weight: 900; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.topbar {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 7px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.topbar p { margin: 0; }
.topbar div { display: flex; gap: 12px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--orange-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 9px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(21,22,22,.1);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand img { width: 104px; height: 46px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #343635;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--orange); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.phone-link { display: grid; gap: 2px; color: var(--ink); font-size: 15px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.phone-kicker { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 27px;
  background: var(--orange);
  color: #111;
  border: 1px solid var(--orange);
  border-radius: 3px;
  box-shadow: 0 9px 28px rgba(0,0,0,.18);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-soft); box-shadow: 0 13px 34px rgba(0,0,0,.22); }
.button-small { min-height: 43px; padding-inline: 17px; box-shadow: none; font-size: 11px; white-space: nowrap; }
.button-light { background: var(--white); border-color: var(--white); box-shadow: none; }
.button-dark { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #34332f url('../images/team/crew-window-delivery.jpg') center/cover no-repeat;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,11,.94) 0%, rgba(10,11,11,.77) 47%, rgba(10,11,11,.16) 79%); }
.hero-content { position: relative; width: min(800px, 89vw); margin-left: max(22px, calc((100vw - var(--max)) / 2)); padding: 82px 0 94px; color: #fff; }
.eyebrow { margin: 0 0 22px; color: var(--orange-soft); font-size: 12px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.dark { color: var(--orange-dark); }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(54px, 6.2vw, 92px); line-height: .94; letter-spacing: -.06em; }
.hero-copy { max-width: 650px; margin: 29px 0 33px; color: rgba(255,255,255,.83); font-size: clamp(18px, 1.8vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 29px; }
.text-link { color: white; font-size: 14px; font-weight: 900; text-underline-offset: 6px; }
.hero-proof { display: flex; gap: 0; width: min(720px, 100%); margin-top: 57px; border-top: 1px solid rgba(255,255,255,.26); }
.hero-proof span { flex: 1; padding: 22px 29px 0 0; margin-right: 28px; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.5; }
.hero-proof strong { display: block; color: white; font-size: 19px; }
.hero-scroll { position: absolute; right: max(22px, calc((100vw - var(--max)) / 2)); bottom: 34px; display: flex; align-items: center; gap: 17px; color: white; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.hero-scroll span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 16px; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip > div { min-height: 126px; display: flex; align-items: center; gap: 17px; padding: 27px clamp(20px, 3.2vw, 52px); border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip span { color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.trust-strip p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.trust-strip strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14px; }

.section { max-width: var(--max); margin: 0 auto; padding: 122px 0; }
.heading-row { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 100px; margin-bottom: 58px; }
.heading-row h2 { max-width: 740px; }
.heading-row > p { margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(27,27,24,.11); }
.service-image { position: relative; aspect-ratio: 1.35; overflow: hidden; background: #ddd; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.38)); }
.service-image span { position: absolute; left: 24px; bottom: 21px; z-index: 1; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.service-body { padding: 31px 30px 34px; }
.service-body h3 { margin: 0 0 15px; font-size: 26px; letter-spacing: -.03em; }
.service-body p { min-height: 96px; margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-body a { display: inline-flex; gap: 17px; color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.service-body a span { color: var(--orange-dark); transition: transform .2s ease; }
.service-body a:hover span { transform: translateX(4px); }

.why-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 850px; background: var(--ink); }
.why-image { min-height: 640px; background: url('../images/team/crew-window-installation.jpg') center/cover no-repeat; }
.why-content { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(42px, 7vw, 108px); color: #fff; }
.why-content h2 { max-width: 620px; }
.why-intro { max-width: 620px; margin: 26px 0 34px; color: rgba(255,255,255,.67); font-size: 16px; line-height: 1.75; }
.why-list { max-width: 660px; margin-bottom: 38px; border-top: 1px solid rgba(255,255,255,.16); }
.why-list article { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.why-list article > span { color: var(--orange-soft); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.why-list h3 { margin: 0 0 7px; font-size: 18px; }
.why-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.why-content .button { align-self: flex-start; }

.team-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 7vw, 110px); align-items: center; max-width: var(--max); margin: 0 auto; padding: 122px 0; }
.team-copy h2 { max-width: 520px; }
.team-copy > p:not(.eyebrow) { max-width: 500px; margin: 27px 0 31px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.team-owner { display: flex; align-items: center; gap: 17px; max-width: 500px; margin-bottom: 27px; padding: 24px 0; border-block: 1px solid var(--line); }
.team-owner img { width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; object-fit: cover; object-position: center 24%; }
.team-owner div { display: grid; gap: 5px; }
.team-owner strong { font-size: 16px; }
.team-owner span { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.team-gallery { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 16px; min-height: 640px; }
.team-gallery figure { position: relative; min-height: 0; margin: 0; overflow: hidden; background: #ddd; }
.team-gallery-main { grid-row: 1 / 3; }
.team-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-gallery figure:hover img { transform: scale(1.025); }
.team-gallery figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 3px; padding: 52px 23px 21px; background: linear-gradient(transparent, rgba(10,11,11,.9)); color: #fff; }
.team-gallery figcaption strong { font-size: 14px; }
.team-gallery figcaption span { color: rgba(255,255,255,.7); font-size: 11px; }

.process { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 125px; }
.process-intro h2 { max-width: 520px; }
.process-intro > p:not(.eyebrow) { max-width: 520px; margin: 26px 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.dark-link { color: var(--ink); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 44px; height: 44px; display: grid; place-items: center; background: var(--orange); border-radius: 50%; font-size: 11px; font-weight: 900; }
.process-list h3 { margin: 3px 0 9px; font-size: 24px; letter-spacing: -.025em; }
.process-list p { max-width: 560px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.reviews-section { padding: 120px max(22px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: #fff; }
.review-header { display: grid; grid-template-columns: 1.15fr .65fr; gap: 120px; align-items: end; max-width: var(--max); margin: 0 auto 56px; }
.review-header > p { margin: 0 0 8px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--max); margin: 0 auto; }
.review-card { min-height: 360px; display: flex; flex-direction: column; margin: 0; padding: 37px 34px 31px; background: var(--ink-soft); border: 1px solid rgba(255,255,255,.12); }
.stars { color: var(--orange-soft); font-size: 14px; letter-spacing: .18em; }
.review-card blockquote { margin: 28px 0 38px; font-family: Georgia, 'Times New Roman', serif; font-size: 22px; line-height: 1.55; }
.review-card figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); }
.review-card figcaption strong { font-size: 13px; }
.review-card figcaption span { color: rgba(255,255,255,.55); font-size: 12px; }

.areas-section { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto; padding: 120px 0; }
.areas-content { padding-right: 110px; }
.areas-content > p:not(.eyebrow) { margin: 27px 0 33px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.area-list > a { min-height: 92px; display: flex; align-items: center; gap: 18px; padding: 23px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 800; text-decoration: none; transition: background .2s ease; }
.area-list > a:hover { background: #fff; }
.area-list span { color: var(--orange-dark); font-size: 10px; font-weight: 900; }
.area-list .more-area { color: var(--muted); font-size: 15px; }
.area-list .more-area span { width: 23px; height: 23px; display: grid; place-items: center; background: var(--orange); color: var(--ink); border-radius: 50%; font-size: 15px; }

.quote-section { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--orange); }
.quote-copy { padding: 100px max(48px, calc((100vw - var(--max)) / 2)) 100px max(22px, calc((100vw - var(--max)) / 2)); }
.quote-copy .eyebrow { color: rgba(21,22,22,.65); }
.quote-copy h2 { max-width: 560px; }
.quote-copy > p:not(.eyebrow) { max-width: 520px; margin: 27px 0 36px; font-size: 16px; line-height: 1.7; }
.quote-contact { display: grid; gap: 18px; padding-top: 30px; border-top: 1px solid rgba(21,22,22,.22); }
.quote-contact a, .quote-contact p { margin: 0; font-size: 16px; font-weight: 900; line-height: 1.5; text-decoration: none; }
.quote-contact span { display: block; color: rgba(21,22,22,.58); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.form-panel { display: grid; place-items: center; padding: 75px max(22px, calc((100vw - var(--max)) / 2)) 75px 7vw; background: #f9f8f4; }
.form-panel form, .form-success { width: min(660px, 100%); }
.form-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.form-heading h3 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.form-heading span { color: var(--muted); font-size: 11px; font-weight: 700; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 18px; }
.field-grid label { display: grid; gap: 8px; color: #3b3d3b; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.field-grid input, .field-grid select, .field-grid textarea { width: 100%; min-height: 53px; padding: 14px 15px; color: var(--ink); background: #fff; border: 1px solid rgba(21,22,22,.19); border-radius: 2px; outline: 0; font-size: 14px; letter-spacing: normal; text-transform: none; }
.field-grid textarea { min-height: 112px; resize: vertical; }
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus { border-color: var(--orange-dark); box-shadow: 0 0 0 3px rgba(247,148,29,.14); }
.full-field { grid-column: 1 / -1; }
.submit-button { width: 100%; margin-top: 24px; box-shadow: none; }
.privacy-note { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-error { margin: 15px 0 0; padding: 12px 14px; background: #fff0ed; border: 1px solid #be3e2f; color: #86291f; font-size: 13px; line-height: 1.5; }
.submit-button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-success { display: grid; place-items: center; padding: 48px; background: white; border: 1px solid var(--line); text-align: center; }
.form-success > span { width: 60px; height: 60px; display: grid; place-items: center; background: var(--orange); border-radius: 50%; font-size: 26px; font-weight: 900; }
.form-success h3 { margin: 23px 0 12px; font-size: 31px; }
.form-success p { max-width: 460px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.form-success button { margin-top: 24px; padding: 0; border: 0; background: none; cursor: pointer; font-size: 12px; font-weight: 900; text-decoration: underline; text-underline-offset: 5px; text-transform: uppercase; }

.faq-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 120px; }
.faq-intro { position: sticky; top: 125px; align-self: start; }
.faq-intro h2 { max-width: 490px; }
.faq-intro > p:not(.eyebrow) { max-width: 420px; margin-top: 25px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-intro a { color: var(--ink); font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 2px; cursor: pointer; font-size: 17px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; font-weight: 400; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--orange); }
.faq-list details > p { max-width: 670px; margin: -6px 50px 28px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; padding: 90px max(22px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: #fff; }
.final-cta h2 { max-width: 800px; }
.final-actions { display: flex; flex-direction: column; align-items: center; gap: 17px; flex: 0 0 auto; }
.final-actions > a:last-child { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 800; }

footer { padding: 70px max(22px, calc((100vw - var(--max)) / 2)) 25px; background: #0c0d0d; color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.65fr repeat(3, 1fr); gap: 70px; padding-bottom: 65px; }
.footer-brand img {
  width: 180px;
  height: auto;
  aspect-ratio: 437 / 186;
  object-fit: contain;
}
.footer-brand > p { margin: 15px 0 6px; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-brand > span { color: rgba(255,255,255,.47); font-size: 13px; }
.footer-main h3 { margin: 0 0 20px; color: var(--orange-soft); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-main a, .footer-main p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.6; text-decoration: none; }
.footer-main a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 10px; }
.mobile-action-bar { display: none; }

/* Multi-page SEO architecture */
.section-narrow { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 38px; color: inherit; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.breadcrumbs span { display: flex; gap: 7px; }
.breadcrumbs a { color: inherit; text-underline-offset: 4px; }
.breadcrumbs b { opacity: .45; }

.detail-hero { min-height: 610px; display: grid; align-items: center; background-position: center; background-size: cover; color: #fff; }
.detail-hero-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 88px 0 100px; }
.detail-hero h1, .page-hero h1, .article-hero h1, .thank-you-card h1, .not-found-page h1 { max-width: 960px; margin: 0; font-size: clamp(52px, 7vw, 92px); line-height: .96; letter-spacing: -.058em; }
.detail-hero-inner > p:not(.eyebrow) { max-width: 710px; margin: 27px 0 32px; color: rgba(255,255,255,.8); font-size: 20px; line-height: 1.6; }

.detail-intro { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 100px; padding-block: 110px; }
.detail-intro h2 { max-width: 650px; }
.detail-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.8; }

.benefit-band { padding: 0 max(32px, calc((100vw - var(--max)) / 2)) 110px; }
.card-grid-three { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.card-grid-three article { min-height: 320px; padding: 38px 34px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card-grid-three article > span { color: var(--orange-dark); font-size: 11px; font-weight: 900; }
.card-grid-three h2 { margin: 70px 0 16px; font-size: 27px; letter-spacing: -.035em; }
.card-grid-three p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.content-section { padding-block: 115px; }
.section-kicker { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; margin-bottom: 55px; }
.section-kicker > p:not(.eyebrow) { margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-kicker a { font-weight: 800; text-underline-offset: 4px; }
.option-grid, .city-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.option-grid article, .city-service-grid article { padding: 35px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.option-grid h3, .city-service-grid h3 { margin: 0 0 13px; font-size: 23px; letter-spacing: -.025em; }
.option-grid p, .city-service-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.dark-content-section, .local-context-band { padding-block: 110px; background: var(--ink); color: #fff; }
.split-content { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 110px; }
.split-content h2 { max-width: 640px; }
.split-content > div > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
.number-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.number-list li { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 18px; min-height: 85px; border-bottom: 1px solid rgba(255,255,255,.16); }
.number-list span { color: var(--orange-soft); font-size: 11px; font-weight: 900; }
.number-list strong { font-size: 18px; }

.link-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.link-card-grid a { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 26px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 850; text-decoration: none; }
.link-card-grid a:hover { background: var(--orange); }
.link-card-grid b { color: var(--orange-dark); }
.link-card-grid a:hover b { color: var(--ink); }

.resource-section { padding-block: 110px; background: var(--paper-deep); }
.article-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card-grid article { min-height: 340px; display: flex; flex-direction: column; padding: 32px; background: #fff; border: 1px solid var(--line); }
.article-card-grid h3 { margin: 18px 0 14px; font-size: 24px; line-height: 1.18; letter-spacing: -.035em; }
.article-card-grid h3 a { text-decoration: none; }
.article-card-grid article > p:not(.article-meta) { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.article-meta { margin: 0; color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-meta a { text-underline-offset: 4px; }
.card-link { display: inline-flex; gap: 16px; margin-top: auto; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; text-underline-offset: 5px; }
.detail-faq { padding-block: 115px; }

.page-hero { padding-block: 100px; }
.page-hero .breadcrumbs { margin-bottom: 65px; }
.page-hero .section-narrow > p:not(.eyebrow) { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.dark-page-hero, .blog-hero { background: var(--ink); color: #fff; }
.dark-page-hero .section-narrow > p:not(.eyebrow), .blog-hero .section-narrow > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.city-hero { background: linear-gradient(135deg, #fff 0 67%, var(--paper-deep) 67%); }
.city-hero .hero-actions { margin-top: 32px; }
.city-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.city-card-grid article { min-height: 370px; display: flex; flex-direction: column; padding: 36px; background: #fff; border: 1px solid var(--line); }
.city-card-grid article > span { color: var(--orange-dark); font-size: 11px; font-weight: 900; }
.city-card-grid h2 { margin: 58px 0 18px; font-size: 34px; }
.city-card-grid p { margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-link-list { border-top: 1px solid rgba(255,255,255,.16); }
.service-link-list a { min-height: 90px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 22px; font-weight: 800; text-decoration: none; }
.service-link-list b { color: var(--orange-soft); }
.local-context-band { background: var(--orange); color: var(--ink); }
.local-context-band .eyebrow { color: rgba(21,22,22,.6); }
.local-context-band .split-content > div > p:not(.eyebrow) { color: rgba(21,22,22,.68); }
.neighborhood-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid rgba(21,22,22,.22); border-left: 1px solid rgba(21,22,22,.22); list-style: none; }
.neighborhood-list li { min-height: 72px; display: flex; align-items: center; padding: 18px 21px; border-right: 1px solid rgba(21,22,22,.22); border-bottom: 1px solid rgba(21,22,22,.22); font-size: 14px; font-weight: 850; }
.city-service-grid { grid-template-columns: repeat(3, 1fr); }
.city-service-grid article { display: flex; flex-direction: column; min-height: 330px; }
.city-service-grid .card-link { margin-top: auto; }

.blog-hero { position: relative; background: linear-gradient(115deg, var(--ink) 0 64%, #2d2f2e 64%); }
.category-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: -1px; background: #fff; border-left: 1px solid var(--line); }
.category-strip a { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.category-strip span { font-size: 20px; font-weight: 850; }
.category-strip b { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.article-list { display: grid; gap: 24px; }
.article-list article { display: grid; grid-template-columns: .65fr 1.35fr; gap: 38px; align-items: center; padding: 24px; background: #fff; border: 1px solid var(--line); }
.article-thumb { aspect-ratio: 1.45; overflow: hidden; background: #ddd; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-list h2 { margin: 15px 0 12px; font-size: 32px; line-height: 1.1; }
.article-list h2 a { text-decoration: none; }
.article-list article > div > p:not(.article-meta) { max-width: 720px; margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.category-hero { min-height: 520px; display: grid; align-items: center; padding-block: 80px; background-position: center; background-size: cover; color: #fff; }
.category-hero h1 { max-width: 900px; margin: 0; font-size: clamp(50px, 7vw, 84px); line-height: .96; letter-spacing: -.055em; }
.category-hero .section-narrow > p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.72); }
.inline-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; padding-block: 85px; }
.inline-cta h2 { max-width: 720px; }

.article-hero { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 680px; background: #fff; }
.article-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px 7vw 85px max(32px, calc((100vw - var(--max)) / 2)); }
.article-hero h1 { font-size: clamp(48px, 5.5vw, 78px); }
.article-dek { max-width: 760px; margin: 27px 0 24px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.byline { margin: 0; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .03em; }
.article-hero-image { min-height: 520px; overflow: hidden; }
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: center; gap: 80px; padding-block: 105px; }
.article-sidebar { position: sticky; top: 112px; align-self: start; display: grid; gap: 12px; padding: 24px; background: #fff; border: 1px solid var(--line); }
.article-sidebar > p { margin: 0 0 9px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-sidebar nav { display: grid; gap: 11px; }
.article-sidebar nav a { color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; }
.article-sidebar nav a:hover { color: var(--ink); text-decoration: underline; }
.article-sidebar .button { min-height: 46px; margin-top: 11px; font-size: 10px; }
.article-body { min-width: 0; }
.article-body .lead { margin: 0 0 55px; padding-bottom: 35px; border-bottom: 1px solid var(--line); color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: 24px; line-height: 1.65; }
.article-body section { scroll-margin-top: 120px; margin-bottom: 60px; }
.article-body h2 { margin: 0 0 22px; font-size: 38px; line-height: 1.08; }
.article-body p, .article-body li { color: #4d504d; font-size: 17px; line-height: 1.85; }
.article-body p { margin: 0 0 21px; }
.article-body ul { display: grid; gap: 10px; padding-left: 24px; }
.article-service-cta { margin: 65px 0; padding: 42px; background: var(--orange); }
.article-service-cta h2 { max-width: 600px; }
.article-service-cta p:not(.eyebrow) { color: rgba(21,22,22,.72); }
.article-faq details > p { font-size: 15px; }
.related-locations { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; padding-block: 90px; border-top: 1px solid var(--line); }
.related-locations h2 { max-width: 470px; font-size: 48px; }

.thank-you-page { min-height: 750px; padding-block: 70px 110px; background: linear-gradient(140deg, var(--paper) 0 68%, var(--orange) 68%); }
.thank-you-card { width: min(860px, 100%); margin: 0 auto; padding: 60px; background: #fff; border: 1px solid var(--line); box-shadow: 0 25px 80px rgba(22,22,19,.12); }
.thank-you-card h1 { font-size: clamp(48px, 7vw, 78px); }
.thank-you-card > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 28px; background: var(--orange); border-radius: 50%; font-size: 28px; font-weight: 900; }
.next-steps { display: grid; gap: 0; margin: 38px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.next-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.next-steps li > span { width: 34px; height: 34px; display: grid; place-items: center; background: var(--paper-deep); border-radius: 50%; font-size: 12px; font-weight: 900; }
.next-steps strong { font-size: 16px; }
.next-steps p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.thank-you-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.not-found-page { min-height: 650px; display: grid; align-items: center; padding-block: 100px; }
.not-found-page p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.7; }

@media (max-width: 980px) {
  .detail-intro, .section-kicker, .split-content, .article-hero, .related-locations { grid-template-columns: 1fr; gap: 45px; }
  .card-grid-three, .article-card-grid, .city-service-grid { grid-template-columns: 1fr; }
  .card-grid-three article { min-height: 0; }
  .card-grid-three h2 { margin-top: 35px; }
  .link-card-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero-image { min-height: 460px; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; }
  .article-sidebar { position: static; }
  .article-sidebar nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section-narrow, .detail-hero-inner { width: min(100% - 40px, var(--max)); }
  .detail-hero { min-height: 560px; }
  .detail-hero h1, .page-hero h1, .article-hero h1, .thank-you-card h1, .not-found-page h1 { font-size: clamp(43px, 13vw, 64px); }
  .detail-hero-inner > p:not(.eyebrow) { font-size: 17px; }
  .detail-intro, .content-section, .detail-faq, .resource-section, .dark-content-section, .local-context-band { padding-block: 78px; }
  .benefit-band { padding: 0 20px 78px; }
  .section-kicker { margin-bottom: 36px; }
  .option-grid, .city-card-grid, .category-strip { grid-template-columns: 1fr; }
  .link-card-grid { grid-template-columns: 1fr; }
  .city-card-grid article { min-height: 0; }
  .city-card-grid h2 { margin-top: 35px; }
  .page-hero { padding-block: 75px; }
  .page-hero .breadcrumbs { margin-bottom: 45px; }
  .article-list article { grid-template-columns: 1fr; gap: 24px; }
  .article-list h2 { font-size: 27px; }
  .inline-cta { align-items: flex-start; flex-direction: column; padding-block: 68px; }
  .article-hero-copy { padding: 65px 20px; }
  .article-hero-image { min-height: 340px; }
  .article-layout { padding-block: 78px; }
  .article-sidebar nav { grid-template-columns: 1fr; }
  .article-body .lead { font-size: 21px; }
  .article-body h2 { font-size: 32px; }
  .article-body p, .article-body li { font-size: 16px; }
  .article-service-cta { padding: 30px 24px; }
  .related-locations { padding-block: 70px; }
  .related-locations h2 { font-size: 41px; }
  .thank-you-page { padding-block: 45px 75px; }
  .thank-you-card { padding: 38px 24px; }
  .thank-you-actions { align-items: stretch; flex-direction: column; }
  .neighborhood-list { grid-template-columns: 1fr; }
}

@media (max-width: 1280px) {
  .section, .areas-section, .team-section { margin-inline: 32px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
}

@media (max-width: 1080px) {
  .topbar div { display: none; }
  .topbar { justify-content: center; text-align: center; }
  .desktop-nav, .phone-link { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { margin-left: 0; }
  .mobile-menu { position: fixed; inset: 112px 0 0; z-index: 35; display: block; padding: 32px; background: #fff; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 25px; font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
  .mobile-menu-phone { display: block; margin-top: 30px; color: var(--orange-dark); font-size: 16px; font-weight: 900; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .heading-row { gap: 50px; }
  .why-section { grid-template-columns: .8fr 1.2fr; }
  .why-content { padding-inline: 55px; }
  .team-section { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .team-gallery { min-height: 570px; }
  .process, .faq-section { gap: 65px; }
  .review-header { gap: 60px; }
  .review-card blockquote { font-size: 19px; }
  .areas-content { padding-right: 55px; }
  .quote-section { grid-template-columns: .75fr 1.25fr; }
  .form-panel { padding-left: 55px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .topbar { display: none; }
  .site-header { min-height: 72px; }
  .mobile-menu { inset-top: 72px; inset: 72px 0 0; }
  .section { margin-inline: 24px; padding-block: 85px; }
  .hero { min-height: calc(100svh - 72px); background-position: 64% center; }
  .hero-content { align-self: end; margin-inline: 24px; padding: 80px 0 48px; width: calc(100% - 48px); }
  .hero-shade { background: linear-gradient(90deg, rgba(10,11,11,.95), rgba(10,11,11,.59)); }
  .hero h1 { max-width: 670px; font-size: clamp(51px, 11vw, 76px); }
  .hero-scroll { display: none; }
  .heading-row, .review-header, .process, .faq-section { grid-template-columns: 1fr; }
  .heading-row, .review-header { gap: 25px; }
  .heading-row > p, .review-header > p { max-width: 610px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .service-image { aspect-ratio: auto; min-height: 300px; }
  .service-body { display: flex; flex-direction: column; justify-content: center; }
  .service-body p { min-height: 0; }
  .why-section { grid-template-columns: 1fr; }
  .why-image { min-height: 520px; }
  .why-content { padding: 85px 40px; }
  .team-section { grid-template-columns: 1fr; gap: 45px; margin-inline: 24px; padding-block: 85px; }
  .team-copy > p:not(.eyebrow) { max-width: 650px; }
  .team-gallery { min-height: 620px; }
  .process-intro, .faq-intro { position: static; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .areas-section { grid-template-columns: 1fr; gap: 55px; margin-inline: 24px; padding-block: 85px; }
  .areas-content { padding-right: 0; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-copy, .form-panel { padding: 80px 40px; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .final-actions { align-items: flex-start; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 580px) {
  body { padding-bottom: 62px; }
  h2 { font-size: 41px; }
  .site-header { padding-inline: 16px; gap: 9px; }
  .brand span { display: none; }
  .brand img { width: 88px; }
  .header-cta { min-height: 40px; padding-inline: 12px; font-size: 10px; }
  .menu-toggle { width: 39px; }
  .mobile-menu { padding: 23px; }
  .mobile-menu nav a { font-size: 23px; }
  .hero { background-position: 61% center; }
  .hero-content { margin-inline: 20px; width: calc(100% - 40px); padding-bottom: 30px; }
  .hero .eyebrow { margin-bottom: 15px; font-size: 10px; }
  .hero h1 { font-size: clamp(44px, 14.2vw, 64px); }
  .hero-copy { margin-block: 20px 24px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { align-self: center; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 31px; }
  .hero-proof span { margin: 0; padding: 17px 0 0; font-size: 10px; }
  .hero-proof strong { font-size: 14px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { min-height: 94px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .section { margin-inline: 20px; padding-block: 73px; }
  .heading-row { margin-bottom: 35px; }
  .service-card { display: block; }
  .service-image { aspect-ratio: 1.35; min-height: 0; }
  .service-body { padding: 27px 24px 31px; }
  .why-image { min-height: 420px; }
  .why-content { padding: 70px 23px; }
  .why-intro { font-size: 15px; }
  .why-list article { grid-template-columns: 31px 1fr; gap: 11px; }
  .why-content .button { width: 100%; }
  .team-section { margin-inline: 20px; padding-block: 73px; }
  .team-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 260px; gap: 10px; min-height: 0; }
  .team-gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .team-gallery figcaption { padding: 45px 16px 16px; }
  .process-list li { grid-template-columns: 47px 1fr; gap: 13px; }
  .process-list li > span { width: 39px; height: 39px; }
  .reviews-section { padding: 73px 20px; }
  .review-header { margin-bottom: 36px; }
  .review-card { padding: 29px 24px; }
  .review-card blockquote { margin-top: 23px; font-size: 19px; }
  .areas-section { margin-inline: 20px; padding-block: 73px; }
  .area-list > a { min-height: 76px; padding: 19px 16px; font-size: 15px; }
  .area-list .more-area { font-size: 12px; }
  .quote-copy, .form-panel { padding: 70px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .form-success { padding: 38px 22px; }
  .faq-list summary { min-height: 78px; font-size: 15px; }
  .final-cta { padding: 70px 20px; gap: 35px; }
  .final-actions, .final-actions .button { width: 100%; }
  footer { padding: 57px 20px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 43px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; height: 62px; box-shadow: 0 -8px 25px rgba(0,0,0,.16); }
  .mobile-action-bar a { display: grid; place-items: center; background: #fff; color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
  .mobile-action-bar a:last-child { background: var(--orange); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* cPanel production pages */
.resource-promo { display: flex; align-items: end; justify-content: space-between; gap: 70px; max-width: var(--max); margin: 0 auto; padding: 105px 0; }
.resource-promo > div { max-width: 760px; }
.resource-promo p:not(.eyebrow) { max-width: 660px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.resource-library { padding-block: 80px 105px; }
.resource-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.resource-toolbar button { min-height: 44px; padding: 0 18px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.resource-toolbar button:hover, .resource-toolbar button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.resource-count { margin: 0 0 35px; color: var(--muted); font-size: 13px; }
.resource-count strong { color: var(--orange-dark); }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.resource-card { min-width: 0; display: grid; grid-template-columns: 42% 58%; min-height: 330px; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(21,22,22,.1); }
.resource-card[hidden] { display: none; }
.resource-cover { display: grid; place-items: center; min-height: 100%; padding: 20px; background: #e7e4dc; overflow: hidden; }
.resource-cover img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 9px 12px rgba(0,0,0,.14)); }
.resource-card-body { min-width: 0; display: flex; flex-direction: column; padding: 25px 22px; }
.resource-card h2 { margin: 13px 0 12px; font-size: 21px; line-height: 1.13; letter-spacing: -.035em; }
.resource-card-body > p:not(.article-meta) { margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.62; }
.resource-card .card-link { font-size: 9px; }
.empty-state { padding: 55px; background: #fff; border: 1px solid var(--line); text-align: center; }
.empty-state h2 { font-size: 34px; }
.empty-state p { color: var(--muted); }
.legal-copy { padding-bottom: 100px; }
.legal-copy h2 { margin: 45px 0 15px; font-size: 30px; }
.legal-copy p { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.8; }

@media (max-width: 1280px) {
  .resource-promo { margin-inline: 32px; }
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .resource-promo { align-items: flex-start; flex-direction: column; margin-inline: 24px; padding-block: 80px; }
  .resource-library { padding-block: 65px 80px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: 190px 1fr; min-height: 290px; }
}

@media (max-width: 580px) {
  .resource-promo { margin-inline: 20px; padding-block: 70px; }
  .resource-promo .button { width: 100%; }
  .resource-library { padding-block: 50px 70px; }
  .resource-toolbar { display: grid; grid-template-columns: 1fr 1fr; }
  .resource-toolbar button { padding-inline: 10px; }
  .resource-card { grid-template-columns: 115px 1fr; min-height: 250px; }
  .resource-cover { padding: 12px; }
  .resource-card-body { padding: 20px 17px; }
  .resource-card h2 { font-size: 18px; }
  .resource-card-body > p:not(.article-meta) { display: none; }
}

/* About page and real project photography */
.about-hero { min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: #fff; }
.about-hero-copy { align-self: center; padding: 90px max(48px, calc((100vw - var(--max)) / 2)); padding-right: 70px; }
.about-hero-copy h1 { max-width: 690px; margin: 0; font-size: clamp(58px, 7vw, 96px); line-height: .94; letter-spacing: -.06em; }
.about-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.about-hero-copy .hero-actions { margin-top: 34px; }
.about-hero-image { min-height: 690px; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-block: 110px; }
.about-story > div:last-child p { margin: 0 0 24px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.team-profile-section { padding-block: 105px; background: var(--ink); color: #fff; }
.team-profile-section .section-kicker > p, .team-profile-section .section-kicker > div + p { color: rgba(255,255,255,.62); }
.team-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 54px; }
.team-profile-grid article { position: relative; min-height: 620px; overflow: hidden; background: #292b2a; }
.team-profile-grid img { width: 100%; height: 100%; object-fit: cover; }
.team-profile-grid article > div { position: absolute; inset: auto 0 0; padding: 75px 30px 28px; background: linear-gradient(transparent,rgba(0,0,0,.85)); }
.team-profile-grid h3 { margin: 0; font-size: 28px; }
.team-profile-grid p { margin: 5px 0 0; color: var(--orange-soft); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-trust { display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 55px; padding-block: 95px; }
.about-trust h2 { font-size: clamp(38px, 4vw, 58px); }
.about-trust p:not(.eyebrow) { max-width: 680px; color: var(--muted); line-height: 1.75; }
.project-photo-section { padding-block: 105px; }
.project-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.project-photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

@media (max-width: 1280px) {
  .about-hero-copy { padding-left: 48px; }
}

@media (max-width: 820px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-copy { padding: 75px 30px; }
  .about-hero-image { min-height: 500px; }
  .about-story { grid-template-columns: 1fr; gap: 35px; padding-block: 80px; }
  .team-profile-grid article { min-height: 520px; }
  .about-trust { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 580px) {
  .about-hero-copy h1 { font-size: 52px; }
  .about-hero-image { min-height: 390px; }
  .team-profile-grid { grid-template-columns: 1fr; }
  .team-profile-grid article { min-height: 500px; }
  .project-photo-grid { grid-template-columns: 1fr; }
}
