/* =========================================================================
   NorthPeak Roofing Co. — Design System
   Luxury architectural / modern Colorado craftsmanship. Evergreen, sand and
   muted copper on warm ivory. Editorial serif headlines, restrained sans
   body. Asymmetry and whitespace do the work — not cards, not gradients.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* ---- Color: evergreen / sand / muted copper on warm ivory ---- */
  --evergreen:       #22362B;
  --evergreen-deep:  #16241C;
  --evergreen-mid:   #3B5544;
  --sand:            #D9CDB4;
  --sand-deep:       #BFAC85;
  --copper:          #A9683F;
  --copper-deep:     #8A5230;
  --ivory:           #FAF6EE;
  --ivory-deep:      #F1E9D8;
  --charcoal:        #2A2924;
  --charcoal-70:     rgba(42,41,36,0.72);
  --charcoal-50:     rgba(42,41,36,0.52);
  --charcoal-30:     rgba(42,41,36,0.3);
  --line:            rgba(42,41,36,0.15);
  --line-on-dark:    rgba(250,246,238,0.2);
  --cream-on-dark:   rgba(250,246,238,0.72);

  --serif: 'Fraunces', serif;
  --sans:  'Work Sans', sans-serif;

  --wrap: 1280px;
  --wrap-narrow: 860px;
  --radius: 2px;
  --shadow-soft: 0 1px 3px rgba(22,36,28,0.08);
  --shadow-lifted: 0 24px 60px rgba(22,36,28,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

/* =========================================================================
   Typography
   ========================================================================= */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: var(--evergreen); }

.d1 { font-size: clamp(2.6rem, 4vw + 1rem, 5.4rem); line-height: 1.04; }
.d2 { font-size: clamp(2rem, 2.6vw + 1rem, 3.4rem); line-height: 1.08; }
.d3 { font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem); }
.d4 { font-size: 1.3rem; font-weight: 400; }
em.accent-italic { font-style: italic; color: var(--copper); }

.label {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper);
}
.label::before { content:""; width: 26px; height: 1px; background: var(--copper); display:inline-block; }
.label--dark { color: var(--sand); }
.label--dark::before { background: var(--copper); }
.label--center { justify-content: center; }

.lede { font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem); color: var(--charcoal-70); max-width: 52ch; font-weight: 400; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 32px; }

.block { padding: 7.5rem 0; }
.block--tight { padding: 5rem 0; }
.block--evergreen { background: var(--evergreen); color: var(--ivory); }
.block--evergreen h1, .block--evergreen h2, .block--evergreen h3 { color: var(--ivory); }
.block--sand { background: var(--ivory-deep); }
@media (max-width: 720px) {
  .block { padding: 4.5rem 0; }
  .block--tight { padding: 3.5rem 0; }
}

.rule { height: 1px; background: var(--line); border: 0; }
.rule--dark { background: var(--line-on-dark); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 1rem 1.9rem; border-radius: var(--radius); border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-copper { background: var(--copper); color: var(--ivory); }
.btn-copper:hover { background: var(--copper-deep); }
.btn-line { background: transparent; color: var(--evergreen); border-color: var(--evergreen); }
.btn-line:hover { background: var(--evergreen); color: var(--ivory); }
.btn-line-light { background: transparent; color: var(--ivory); border-color: var(--line-on-dark); }
.btn-line-light:hover { background: rgba(250,246,238,0.12); border-color: var(--ivory); }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 600; font-size: 0.94rem; color: var(--evergreen);
  border-bottom: 1px solid var(--charcoal-30); padding-bottom: 0.15rem;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.text-link:hover { border-color: var(--copper); color: var(--copper); gap: 0.8em; }
.text-link--light { color: var(--ivory); border-color: var(--line-on-dark); }
.text-link--light:hover { color: var(--sand); border-color: var(--sand); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,238,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.15rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--evergreen); }
.brand__tag { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-top: 0.25rem; }

.nav-primary { display: flex; align-items: center; gap: 2.2rem; }
.nav-primary a {
  font-family: var(--sans); font-weight: 500; font-size: 0.92rem; color: var(--charcoal-70);
  position: relative; padding: 0.3rem 0; transition: color var(--dur) var(--ease);
}
.nav-primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav-primary a:hover { color: var(--evergreen); }
.nav-primary a:hover::after, .nav-primary a[aria-current="page"]::after { transform: scaleX(1); }
.nav-primary a[aria-current="page"] { color: var(--evergreen); }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { font-family: var(--sans); font-weight: 500; font-size: 0.88rem; color: var(--evergreen); }

.menu-toggle { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--evergreen); }
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--header-h, 72px);
  background: var(--ivory); z-index: 99; padding: 1.5rem 32px 2.5rem; overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--evergreen);
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.mobile-nav__cta { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav__phone { font-family: var(--sans); font-size: 1rem; color: var(--evergreen); margin-top: 0.5rem; text-align: center; }

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
}
body.nav-open { overflow: hidden; }

/* =========================================================================
   Editorial Hero
   ========================================================================= */
.editorial-hero { position: relative; background: var(--ivory); }
.editorial-hero__frame { position: relative; height: 84vh; min-height: 560px; overflow: hidden; }
.editorial-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.editorial-hero__tag {
  position: absolute; top: 2rem; right: 2rem; z-index: 2;
  background: rgba(250,246,238,0.92); color: var(--evergreen);
  padding: 0.65rem 1.1rem; font-family: var(--sans); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius);
}
.editorial-hero__panel {
  position: relative; z-index: 2; margin-top: -140px;
  width: min(560px, 88vw);
  margin-left: 6vw;
  background: var(--ivory); padding: 2.8rem 2.8rem 2.6rem;
  box-shadow: var(--shadow-lifted);
}
.editorial-hero__panel h1 { margin-top: 0.9rem; }
.editorial-hero__panel p { margin-top: 1.2rem; }
.editorial-hero__row { display: flex; align-items: center; gap: 1.6rem; margin-top: 1.9rem; flex-wrap: wrap; }

@media (max-width: 760px) {
  .editorial-hero__frame { height: 62vh; min-height: 420px; }
  .editorial-hero__panel { margin-top: -90px; margin-left: 4vw; padding: 2rem 1.8rem 2rem; width: 92vw; }
  .editorial-hero__tag { top: 1.2rem; right: 1.2rem; font-size: 0.64rem; padding: 0.5rem 0.8rem; }
}

/* =========================================================================
   Brand statement (asymmetric intro)
   ========================================================================= */
.statement { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.statement__media { position: relative; }
.statement__media img { aspect-ratio: 4/4.6; object-fit: cover; }
.statement__quote { font-size: clamp(1.5rem, 1.6vw + 1rem, 2.15rem); color: var(--evergreen); line-height: 1.28; }
.statement__body { margin-top: 1.8rem; color: var(--charcoal-70); font-size: 1.02rem; max-width: 46ch; }
@media (max-width: 900px) {
  .statement { grid-template-columns: 1fr; gap: 2.5rem; }
  .statement__media { order: -1; }
}

/* =========================================================================
   Services — editorial expandable list
   ========================================================================= */
.service-row { border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row__head {
  width: 100%; display: flex; align-items: flex-start; gap: 1.8rem;
  padding: 2.1rem 0; text-align: left; cursor: pointer;
}
.service-row__num { font-family: var(--serif); font-size: 1.1rem; color: var(--copper); flex-shrink: 0; width: 2.2rem; padding-top: 0.3rem; }
.service-row__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem); color: var(--evergreen); flex-grow: 1; }
.service-row__teaser { display: none; }
.service-row__arrow {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--charcoal-30); margin-top: 0.15rem;
  display: flex; align-items: center; justify-content: center; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service-row__arrow svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.service-row.is-open .service-row__arrow { background: var(--evergreen); border-color: var(--evergreen); color: var(--ivory); }
.service-row.is-open .service-row__arrow svg { transform: rotate(135deg); }

.service-row__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.service-row__panel-in {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: center;
  padding: 0 0 2.6rem 4rem;
}
.service-row__panel-in p { color: var(--charcoal-70); max-width: 52ch; }
.service-row__panel-in ul { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-row__panel-in li { font-size: 0.94rem; color: var(--charcoal-70); padding-left: 1.2rem; position: relative; }
.service-row__panel-in li::before { content:""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 1px; background: var(--copper); }
.service-row__media { aspect-ratio: 4/3; overflow: hidden; }
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__cta { margin-top: 1.3rem; }

@media (max-width: 760px) {
  .service-row__head { gap: 1rem; padding: 1.6rem 0; }
  .service-row__panel-in { grid-template-columns: 1fr; padding-left: 0; gap: 1.5rem; }
  .service-row__num { width: 1.6rem; font-size: 0.95rem; }
}

/* =========================================================================
   Why NorthPeak — split screen with stat highlights
   ========================================================================= */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; }
.split__media { position: relative; min-height: 460px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split__content { padding: 6rem 6vw; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 340px; }
  .split__content { padding: 3.5rem 6vw; }
}

.check-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.check-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.98rem; color: var(--charcoal-70); }
.check-list svg { width: 17px; height: 17px; color: var(--copper); flex-shrink: 0; margin-top: 0.22rem; }

.stat-row { display: flex; gap: 3rem; margin-top: 2.6rem; flex-wrap: wrap; }
.stat-row__item { border-top: 1px solid var(--line); padding-top: 1rem; min-width: 120px; }
.stat-row__num { font-family: var(--serif); font-size: 2.1rem; color: var(--evergreen); }
.stat-row__label { font-family: var(--sans); font-size: 0.8rem; color: var(--charcoal-50); margin-top: 0.3rem; }
.stat-row__note { width: 100%; font-family: var(--sans); font-size: 0.72rem; color: var(--charcoal-30); margin-top: 0.4rem; }

/* =========================================================================
   Featured project — cinematic case study
   ========================================================================= */
.case-study { position: relative; color: var(--ivory); min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.case-study__media { position: absolute; inset: 0; z-index: 0; }
.case-study__media img { width: 100%; height: 100%; object-fit: cover; }
.case-study__scrim { position: absolute; inset: 0; z-index: 0; background: linear-gradient(0deg, rgba(22,36,28,0.86) 0%, rgba(22,36,28,0.15) 55%, rgba(22,36,28,0.05) 100%); }
.case-study__content { position: relative; z-index: 1; width: 100%; padding: 4rem 0; }
.case-study__meta { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-on-dark); }
.case-study__meta div { font-family: var(--sans); font-size: 0.84rem; }
.case-study__meta span { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.35rem; }
.case-study h2 { color: var(--ivory); margin-top: 0.8rem; max-width: 16ch; }
.case-study p.lede { color: var(--cream-on-dark); margin-top: 1.1rem; }
@media (max-width: 640px) {
  .case-study { min-height: 0; }
  .case-study__content { padding: 3rem 0 2.5rem; }
}

/* =========================================================================
   Project gallery — varied sizes
   ========================================================================= */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.6rem; grid-auto-rows: 220px; grid-auto-flow: dense; }
.gallery__item { position: relative; overflow: hidden; grid-column: span 3; grid-row: span 1; }
.gallery__item--wide { grid-column: span 4; grid-row: span 2; }
.gallery__item--tall { grid-column: span 2; grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,36,28,0.82) 0%, rgba(22,36,28,0) 50%); opacity: 0; transition: opacity var(--dur) var(--ease); }
.gallery__item:hover .gallery__scrim { opacity: 1; }
.gallery__label {
  position: absolute; left: 1.4rem; bottom: 1.3rem; color: var(--ivory);
  opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__label { opacity: 1; transform: translateY(0); }
.gallery__label strong { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.gallery__label span { font-family: var(--sans); font-size: 0.74rem; color: var(--sand); letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery__item, .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery__scrim, .gallery__label { opacity: 1; transform: none; }
}

/* =========================================================================
   Process — editorial horizontal timeline
   ========================================================================= */
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; position: relative; }
.process-line::before { content:""; position: absolute; top: 14px; left: 0; right: 0; height: 1px; background: var(--line); }
.process-line__item { position: relative; padding-top: 2.6rem; }
.process-line__item::before { content:""; position: absolute; top: 8px; left: 0; width: 13px; height: 13px; border-radius: 50%; background: var(--copper); }
.process-line__num { font-family: var(--serif); font-size: 0.95rem; color: var(--copper); }
.process-line__item h3 { font-size: 1.25rem; margin-top: 0.5rem; }
.process-line__item p { margin-top: 0.7rem; color: var(--charcoal-70); font-size: 0.93rem; }
@media (max-width: 860px) {
  .process-line { grid-template-columns: 1fr; gap: 2.4rem; }
  .process-line::before { top: 0; bottom: 0; left: 14px; right: auto; width: 1px; height: auto; }
  .process-line__item { padding-top: 0; padding-left: 2.6rem; }
  .process-line__item::before { top: 0.4rem; left: 8px; }
}

/* =========================================================================
   Materials
   ========================================================================= */
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.material-card__media { aspect-ratio: 1/1; overflow: hidden; }
.material-card__media img { width: 100%; height: 100%; object-fit: cover; }
.material-card h3 { font-size: 1.1rem; margin-top: 1.2rem; }
.material-card p { font-size: 0.88rem; color: var(--charcoal-70); margin-top: 0.5rem; }
@media (max-width: 900px) { .materials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .materials-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Customer stories — editorial, alternating
   ========================================================================= */
.story { display: grid; grid-template-columns: 90px 1fr; gap: 2rem; padding: 3.2rem 0; border-top: 1px solid var(--line); }
.story:last-child { border-bottom: 1px solid var(--line); }
.story__mark { font-family: var(--serif); font-size: 3.5rem; color: var(--sand-deep); line-height: 1; }
.story__quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 0.8vw + 1rem, 1.5rem); color: var(--evergreen); line-height: 1.4; max-width: 62ch; }
.story__meta { margin-top: 1.3rem; font-family: var(--sans); font-size: 0.85rem; color: var(--charcoal-50); }
.story__meta strong { color: var(--evergreen); font-weight: 600; }
@media (max-width: 640px) {
  .story { grid-template-columns: 1fr; gap: 0.6rem; }
  .story__mark { display: none; }
}

/* =========================================================================
   Service area
   ========================================================================= */
.area-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.area-tag { font-family: var(--sans); font-size: 0.86rem; padding: 0.6rem 1.1rem; border: 1px solid var(--line); border-radius: 30px; color: var(--charcoal-70); }
.area-map-frame {
  position: relative; background: var(--evergreen); border-radius: var(--radius);
  aspect-ratio: 1/1; overflow: hidden; box-shadow: var(--shadow-lifted);
}
.area-map-frame svg { width: 100%; height: 100%; }
.area-map-frame__caption {
  position: absolute; left: 1.5rem; bottom: 1.5rem; color: var(--ivory);
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 900px) { .area-split { grid-template-columns: 1fr; gap: 2.5rem; } .area-map-frame { order: -1; } }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.7rem 0.1rem; text-align: left; }
.faq-q span.q-text { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: var(--evergreen); }
.faq-q__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q__icon::before, .faq-q__icon::after { content:""; position: absolute; background: var(--copper); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.faq-q__icon::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-q__icon::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-q__icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a__in { padding: 0 2.4rem 1.8rem 0.1rem; color: var(--charcoal-70); font-size: 0.98rem; max-width: 66ch; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta { position: relative; color: var(--ivory); }
.final-cta__media { position: absolute; inset: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,36,28,0.88) 0%, rgba(22,36,28,0.78) 100%); }
.final-cta__content { position: relative; z-index: 1; padding: 7rem 0; text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--ivory); margin-top: 0.9rem; }
.final-cta p { color: var(--cream-on-dark); margin-top: 1.2rem; }
.final-cta__row { display: flex; align-items: center; justify-content: center; gap: 1.7rem; margin-top: 2.2rem; flex-wrap: wrap; }
.final-cta__phone { font-family: var(--serif); font-size: 1.25rem; color: var(--ivory); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--evergreen-deep); color: rgba(250,246,238,0.68); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-on-dark); }
.footer-brand .brand__name { color: var(--ivory); }
.footer-brand p { margin-top: 1.2rem; font-size: 0.92rem; max-width: 32ch; color: rgba(250,246,238,0.58); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-on-dark); display: flex; align-items: center; justify-content: center; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.footer-social a:hover { border-color: var(--copper); background: rgba(169,104,63,0.18); }
.footer-social svg { width: 15px; height: 15px; color: var(--ivory); }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.4); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.93rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-contact li { font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.7rem 0; flex-wrap: wrap; font-size: 0.8rem; color: rgba(250,246,238,0.4); }
.footer-bottom__links { display: flex; gap: 1.5rem; }
.footer-bottom__links a:hover { color: var(--ivory); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; } }

/* =========================================================================
   Forms
   ========================================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-weight: 600; font-size: 0.84rem; color: var(--evergreen); }
.field label .opt { font-weight: 400; color: var(--charcoal-30); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1rem;
  background: var(--ivory); font-size: 0.96rem; transition: border-color var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } .field--full { grid-column: 1; } }

.form-success { display: none; text-align: center; padding: 4rem 1.5rem; }
.form-success.is-visible { display: block; }
.form-success__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ivory-deep); color: var(--copper); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success__icon svg { width: 26px; height: 26px; }
.form-success h3 { margin-bottom: 0.8rem; }
.form-success p { color: var(--charcoal-70); max-width: 40ch; margin: 0 auto; }

/* =========================================================================
   Misc
   ========================================================================= */
.panel { background: var(--ivory); border: 1px solid var(--line); padding: 2.4rem; }
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .two-up { grid-template-columns: 1fr; gap: 2.2rem; } }
.two-up__media img { aspect-ratio: 4/3.2; object-fit: cover; }
.two-up--reverse .two-up__media { order: 2; }
@media (max-width: 900px) { .two-up--reverse .two-up__media { order: -1; } }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.team-card__media { aspect-ratio: 4/4.8; overflow: hidden; margin-bottom: 1.1rem; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: var(--evergreen); }
.team-card__role { font-family: var(--sans); font-size: 0.78rem; color: var(--copper); letter-spacing: 0.04em; margin-top: 0.25rem; }

.value-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .value-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-row { grid-template-columns: 1fr; } }
.value-item { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.value-item h3 { font-size: 1.15rem; }
.value-item p { margin-top: 0.6rem; color: var(--charcoal-70); font-size: 0.92rem; }

.timeline-editorial { display: flex; flex-direction: column; }
.timeline-editorial__row { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 1.8rem 0; border-top: 1px solid var(--line); }
.timeline-editorial__row:last-child { border-bottom: 1px solid var(--line); }
.timeline-editorial__year { font-family: var(--serif); font-size: 1.3rem; color: var(--copper); }
.timeline-editorial__row h4 { font-size: 1.05rem; color: var(--evergreen); font-family: var(--sans); font-weight: 600; }
.timeline-editorial__row p { margin-top: 0.4rem; color: var(--charcoal-70); font-size: 0.92rem; }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: flex-start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.credential-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.credential-chip { font-family: var(--sans); font-size: 0.78rem; padding: 0.5rem 1rem; border: 1px solid var(--line); color: var(--charcoal-70); border-radius: 30px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--copper); color: var(--ivory); padding: 0.8rem 1.2rem; font-family: var(--sans); font-weight: 600; }
.skip-link:focus { left: 1rem; top: 1rem; }
