/* =========================================================
   NorCal Exterior — Design System
   Refined coastal craft. Navy + gold. Editorial layout.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand — official client hex codes */
  --navy:        #003B75;
  --navy-deep:   #002951;
  --navy-soft:   #1B5594;
  --gold:        #EDAA12;
  --gold-warm:   #D5960A;
  --gold-soft:   #F5C95A;

  /* Neutrals */
  --paper:       #FAF7F2;
  --paper-warm:  #F4EFE6;
  --paper-cool:  #EEF2F7;
  --fog:         #E8E4DC;
  --line:        #D6D0C4;
  --line-cool:   #C4D0DE;
  --ink:         #1A1F2C;
  --ink-soft:    #4A5060;
  --ink-mute:    #7B8094;
  --white:       #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --max-w: 1280px;
  --max-w-text: 64ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 520ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold-soft); color: var(--navy-deep); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; color: var(--navy-deep); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.2; }
h4 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; color: var(--navy-deep); }

.lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

p a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; transition: color var(--t-fast) var(--ease); }
p a:hover { color: var(--gold-warm); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper-warm { background: var(--paper-warm); }
.section--paper-cool { background: var(--paper-cool); }
.section--navy { background: var(--navy); color: var(--paper); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--paper); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-warm); border-color: var(--gold-warm); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid var(--navy-deep);
}
.btn-secondary:hover { background: var(--navy-deep); color: var(--paper); }
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(250, 247, 242, 0.3);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--navy-deep); border-color: var(--paper); }
.btn .arrow { transition: transform var(--t-base) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(10px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding-block: var(--s-4);
}
.brand { display: flex; align-items: center; gap: var(--s-4); }
.brand__logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand__logo--lg { width: 88px; height: 88px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.brand__location {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .brand__logo { width: 48px; height: 48px; }
  .brand__text { display: none; }
}

.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav__list { display: flex; align-items: center; gap: var(--s-6); }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  padding: var(--s-3) 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--gold-warm); }
.nav__chev { width: 10px; height: 10px; opacity: 0.5; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: var(--s-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility var(--t-base);
  box-shadow: 0 20px 50px -20px rgba(8, 22, 40, 0.18);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: var(--s-3) var(--s-4);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav__dropdown a:hover { background: var(--paper-warm); color: var(--navy-deep); }

.nav__cta { display: inline-flex; align-items: center; gap: var(--s-3); }
.nav__phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.nav__phone:hover { color: var(--gold-warm); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-deep);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--navy-deep);
  transition: transform var(--t-base) var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--s-7) var(--gutter);
    gap: var(--s-2);
    transform: translateY(-101%);
    transition: transform var(--t-base) var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { padding: var(--s-4) 0; font-size: 1.125rem; justify-content: space-between; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 var(--s-4) 0;
    background: transparent;
    min-width: 0;
  }
  .nav__dropdown a { padding: var(--s-3) 0; color: var(--ink-soft); }
  .nav__cta { padding-top: var(--s-5); flex-direction: column; align-items: stretch; gap: var(--s-4); }
  .nav__cta .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 36rem; }
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
}
.hero__lede { margin-top: var(--s-5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-7); }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 22, 40, 0.25));
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  background: var(--paper);
  padding: var(--s-3) var(--s-5);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
}
.hero__badge span { color: var(--gold-warm); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 4 / 3; max-height: 60vh; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: var(--paper);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  padding-block: var(--s-6);
}
.trust__item { display: flex; flex-direction: column; gap: 4px; padding-inline: var(--s-2); border-left: 1px solid rgba(212, 166, 72, 0.25); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.trust__value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--paper); letter-spacing: -0.01em; line-height: 1.15; }
@media (max-width: 700px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .trust__item:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head__main { max-width: 36rem; }
.section-head__main h2 { margin-top: var(--s-4); }
.section-head__aside { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.6; max-width: 38ch; justify-self: end; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head__aside { justify-self: start; }
}

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.svc-card {
  display: block;
  padding: var(--s-7) var(--s-5) var(--s-6);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.svc-card:nth-child(3n) { border-right: 0; }
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.svc-card:hover { background: var(--paper-cool); }
.svc-card:hover::before { transform: scaleX(1); }

/* Wide variant: spans full row to balance odd-count grids */
.svc-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-7);
  padding: var(--s-6) var(--s-7);
  border-right: 0;
  background: var(--paper-cool);
}
.svc-card--wide:hover { background: var(--paper-cool); }
.svc-card--wide:hover::before { transform: scaleX(1); }
.svc-card--wide .svc-card__num { grid-row: 1 / span 2; align-self: start; padding-top: 6px; }
.svc-card--wide h3 { margin-top: 0; }
.svc-card--wide p { margin-top: var(--s-2); max-width: 50ch; }
.svc-card--wide .svc-card__more { margin-top: 0; white-space: nowrap; }
@media (max-width: 800px) {
  .svc-card--wide { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-7) var(--s-5) var(--s-6); }
  .svc-card--wide .svc-card__num { grid-row: auto; padding-top: 0; }
  .svc-card--wide .svc-card__more { margin-top: var(--s-5); }
}
.svc-card__num { font-family: var(--font-display); font-size: 0.9375rem; font-style: italic; color: var(--gold-warm); }
.svc-card h3 { margin-top: var(--s-4); }
.svc-card p { margin-top: var(--s-4); color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.svc-card__more .arrow { transition: transform var(--t-base) var(--ease); }
.svc-card:hover .svc-card__more .arrow { transform: translateX(4px); }
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .svc-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: 0 !important; }
}

/* ---------- Case study (featured project) ---------- */
.case {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.case__media { display: grid; grid-template-columns: 2fr 1fr; gap: var(--s-3); aspect-ratio: 5 / 6; }
.case__img-main { grid-row: 1 / span 2; overflow: hidden; }
.case__img-main img { width: 100%; height: 100%; object-fit: cover; }
.case__img-sub { overflow: hidden; }
.case__img-sub img { width: 100%; height: 100%; object-fit: cover; }
.case__copy { max-width: 32rem; }
.case__copy h2 { margin-top: var(--s-4); }
.case__meta { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-top: var(--s-6); padding-block: var(--s-5); border-block: 1px solid var(--line); }
.case__meta-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.case__meta-value { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-deep); margin-top: 4px; }
.case__body { margin-top: var(--s-5); color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; }
.case__cta { margin-top: var(--s-6); }
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
.quote {
  padding: var(--s-7) var(--s-6);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  font-style: italic;
}
.quote__body {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote__attr { display: flex; flex-direction: column; gap: 2px; padding-top: var(--s-4); border-top: 1px solid var(--line); }
.quote__name { font-weight: 600; color: var(--navy-deep); font-size: 0.9375rem; }
.quote__project { font-size: 0.8125rem; color: var(--ink-mute); letter-spacing: 0.04em; }
@media (max-width: 800px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---------- Process strip ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
.process__step { display: flex; flex-direction: column; gap: var(--s-3); padding-top: var(--s-5); border-top: 2px solid var(--navy); }
.process__num { font-family: var(--font-display); font-size: 0.875rem; font-style: italic; color: var(--navy); font-weight: 500; }
.process__step h4 { margin: 0; }
.process__step p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  padding-block: var(--s-5);
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  transition: color var(--t-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-warm); }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-warm);
  transition: transform var(--t-base) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding-block: 0 var(--s-5);
  padding-right: var(--s-7);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 60ch;
}

/* ---------- CTA section ---------- */
.cta-section { background: var(--navy); color: var(--paper); }
.cta-section__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta-section h2 { color: var(--paper); }
.cta-section .lede { color: rgba(250, 247, 242, 0.78); }
.cta-section__form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 166, 72, 0.25);
  padding: var(--s-6);
}
.cta-section__form-wrap h3 { font-size: 1.25rem; color: var(--paper); margin-bottom: var(--s-4); }
.tally-placeholder {
  background: rgba(212, 166, 72, 0.08);
  border: 1px dashed var(--gold);
  padding: var(--s-6);
  border-radius: 2px;
  text-align: center;
  color: var(--gold-soft);
  font-size: 0.875rem;
  line-height: 1.5;
}
.tally-placeholder strong { color: var(--gold); display: block; margin-bottom: 4px; font-size: 0.9375rem; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 900px) {
  .cta-section__inner { grid-template-columns: 1fr; }
}

.cta-contacts { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-6); }
.cta-contact {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-block: var(--s-3);
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.9375rem;
}
.cta-contact:last-child { border-bottom: 0; }
.cta-contact__label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); width: 5.5rem; flex-shrink: 0; }
.cta-contact__value { color: var(--paper); }
.cta-contact a { color: var(--paper); transition: color var(--t-fast) var(--ease); }
.cta-contact a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(250, 247, 242, 0.72); padding-block: var(--s-9) var(--s-6); }
.site-footer h4 { color: var(--paper); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--s-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-7); margin-bottom: var(--s-8); }
.footer-grid__brand p { margin-top: var(--s-5); font-size: 0.9375rem; line-height: 1.65; max-width: 32ch; }
.footer-list { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-list a { font-size: 0.9375rem; transition: color var(--t-fast) var(--ease); }
.footer-list a:hover { color: var(--gold); }
.footer-nap { display: flex; flex-direction: column; gap: var(--s-3); font-size: 0.9375rem; line-height: 1.55; }
.footer-nap a { color: rgba(250, 247, 242, 0.85); }
.footer-nap a:hover { color: var(--gold); }
.footer-map { margin-bottom: var(--s-7); border: 1px solid rgba(250, 247, 242, 0.1); }
.footer-map iframe { width: 100%; height: 280px; display: block; filter: grayscale(0.3) contrast(0.95); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom__legal { display: flex; gap: var(--s-5); }
.footer-bottom__legal a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }

/* =========================================================
   SERVICE PAGE COMPONENTS
   ========================================================= */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  padding-block: var(--s-4);
  font-size: 0.8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: var(--s-3); }
.breadcrumb li + li::before {
  content: '/';
  color: var(--line);
  margin-right: 0;
}
.breadcrumb a { color: var(--ink-soft); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--gold-warm); }
.breadcrumb [aria-current="page"] { color: var(--navy-deep); font-weight: 500; }

/* ---------- Service hero (smaller than homepage hero) ---------- */
.svc-hero {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}
.svc-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.svc-hero__copy { max-width: 36rem; }
.svc-hero h1 .accent { font-style: italic; font-weight: 400; color: var(--gold-warm); }
.svc-hero__lede { margin-top: var(--s-5); }
.svc-hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-7); }
.svc-hero__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .svc-hero__grid { grid-template-columns: 1fr; }
  .svc-hero__media { aspect-ratio: 4 / 3; max-height: 50vh; }
}

/* ---------- Approach (intro text block) ---------- */
.approach {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.approach__main { max-width: 28rem; }
.approach__main h2 { line-height: 1.1; }
.approach__body { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); }
.approach__body p + p { margin-top: var(--s-5); }
@media (max-width: 800px) {
  .approach { grid-template-columns: 1fr; }
}

/* ---------- Scope grid (6 cards, what's included) ---------- */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.scope-card {
  background: var(--paper);
  padding: var(--s-7) var(--s-5) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.scope-card__num { font-family: var(--font-display); font-size: 0.875rem; font-style: italic; color: var(--gold-warm); }
.scope-card h3 { font-size: 1.25rem; line-height: 1.2; margin-top: var(--s-2); }
.scope-card p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; margin-top: var(--s-2); }
@media (max-width: 1000px) {
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* ---------- Location service grid ---------- */
.loc-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.loc-svc-card {
  background: var(--paper);
  padding: var(--s-6) var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.loc-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.loc-svc-card:hover { background: var(--paper-cool); }
.loc-svc-card:hover::before { transform: scaleX(1); }
.loc-svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.loc-svc-card__more {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loc-svc-card__more .arrow { transition: transform var(--t-base) var(--ease); }
.loc-svc-card:hover .loc-svc-card__more .arrow { transform: translateX(4px); }
@media (max-width: 1000px) {
  .loc-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .loc-svc-grid { grid-template-columns: 1fr; }
  .loc-svc-card { flex-wrap: wrap; }
}

/* =========================================================
   CORE PAGE COMPONENTS
   ========================================================= */

/* ---------- About: values grid ---------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about-value {
  background: var(--paper);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.about-value__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold-warm);
}
.about-value h3 { font-size: 1.25rem; line-height: 1.2; margin-top: var(--s-2); }
.about-value p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.65; margin-top: var(--s-2); }
@media (max-width: 800px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ---------- Process detail steps ---------- */
.process-detail {
  display: flex;
  flex-direction: column;
  gap: var(--s-9);
}
.process-detail__step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-7);
  padding-top: var(--s-7);
  border-top: 2px solid var(--navy);
}
.process-detail__step:first-child { padding-top: 0; border-top: 0; }
.process-detail__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.process-detail__body { max-width: 56ch; }
.process-detail__body h2 { margin-bottom: var(--s-5); }
.process-detail__body p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.process-detail__body p + p { margin-top: var(--s-5); }
@media (max-width: 800px) {
  .process-detail__step { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.contact-row__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-warm);
  padding-top: 4px;
}
.contact-row__value {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--navy-deep);
  line-height: 1.45;
}
.contact-row a.contact-row__value { transition: color var(--t-fast) var(--ease); }
.contact-row a.contact-row__value:hover { color: var(--gold-warm); }
.contact-form-wrap {
  background: var(--paper-cool);
  padding: var(--s-7);
  border: 1px solid var(--line-cool);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--navy-deep);
}
.contact-map {
  border: 1px solid var(--line);
}
.contact-map iframe {
  width: 100%;
  height: 480px;
  display: block;
}

/* ---------- FAQ page ---------- */
.faq-page {
  display: flex;
  flex-direction: column;
  gap: var(--s-9);
}
.faq-group__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy-deep);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ---------- Legal pages ---------- */
.legal-page {
  background: var(--paper);
}
.legal-container {
  max-width: 720px;
}
.legal-meta {
  margin-top: var(--s-3);
  font-size: 0.8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.legal-body {
  margin-top: var(--s-7);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.legal-body p { margin-bottom: var(--s-4); }
.legal-body ul {
  margin-bottom: var(--s-5);
  padding-left: var(--s-5);
  list-style: disc;
}
.legal-body ul li {
  margin-bottom: var(--s-2);
}
.legal-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--gold-warm); }
.legal-disclaimer {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-6);
  background: var(--paper-cool);
  border-left: 3px solid var(--navy);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.legal-disclaimer strong { color: var(--navy-deep); }

/* ---------- FAQ hero (centered, no image) ---------- */
.faq-hero {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}
.faq-hero__inner {
  max-width: 42rem;
  margin: 0 auto;
}
.faq-hero .svc-hero__cta {
  justify-content: center;
}

/* ============================================================
   HOMEPAGE v2 ADDITIONS — full-screen hero, brands, who-band
   ============================================================ */

/* Full-screen hero with overlay */
.hero-full { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-full__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-full__overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,29,55,.52) 0%, rgba(0,29,55,.42) 38%, rgba(0,29,55,.80) 100%); }
.hero-full__inner { position: relative; z-index: 2; max-width: 60rem; color: #fff;
  padding-block: clamp(5rem, 13vh, 9rem); }
.hero-full__eyebrow { color: var(--gold-soft); }
.hero-full__title { font-family: var(--font-display); color: #fff; font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -0.02em; margin-top: var(--s-4); }
.hero-full__title .accent { font-style: italic; color: var(--gold-soft); }
.hero-full__lede { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6; max-width: 44rem; margin-top: var(--s-5); }
.hero-full__stars { display: flex; align-items: center; gap: .65rem; margin-top: var(--s-5); flex-wrap: wrap; }
.hero-full .stars { color: var(--gold); letter-spacing: .12em; font-size: 1.15rem; }
.hero-full__stars-text { color: rgba(255,255,255,.85); font-size: .95rem; }
.hero-full .hero__cta { margin-top: var(--s-6); }
.btn-secondary--on-dark { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-secondary--on-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-full__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8); font-size: 1.6rem; text-decoration: none; line-height: 1;
  animation: heroBounce 2.2s infinite; }
@keyframes heroBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }
@media (max-width: 700px) {
  .hero-full { min-height: 82vh; }
  .hero-full__overlay { background: linear-gradient(180deg, rgba(0,29,55,.5), rgba(0,29,55,.84)); }
}

/* Centered section head variant */
.section-head--center { text-align: center; flex-direction: column; align-items: center; }
.section-head__aside--center { max-width: 40rem; margin-inline: auto; }

/* Brands strip */
.brand-strip { display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: var(--s-7); }
.brand-tile { flex: 0 1 160px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; padding: 1.4rem 1.25rem; min-height: 88px; }
.brand-strip--home { max-width: 900px; margin-left: auto; margin-right: auto; }
.brand-tile img { max-height: 44px; max-width: 100%; width: auto; object-fit: contain; }

/* Who-we-are band */
.who__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.who__media img { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 4/5; max-height: 560px;
  object-position: center; }
@media (max-width: 860px) { .who__grid { grid-template-columns: 1fr; } .who__media img { aspect-ratio: 4/3; } }

/* JobTread embed */
.jobtread-embed iframe { width: 100%; min-height: 640px; border: 0; border-radius: 10px; background: #fff; display: block; }

/* ============================================================
   v2 ADDITIONS — navy utility hero, light trust strip, founder
   ============================================================ */
.faq-hero--navy { background: var(--navy-deep); }
.faq-hero--navy .faq-hero__inner::before { content: ""; display: block; width: 34px; height: 3px; background: var(--gold); margin: 0 auto 1.25rem; }
.faq-hero--navy .eyebrow { color: var(--gold-soft); }
.faq-hero--navy h1, .faq-hero--navy .faq-hero__inner h1 { color: #fff; }
.faq-hero--navy h1 .accent { color: var(--gold-soft); font-style: italic; }
.faq-hero--navy .lede { color: rgba(255,255,255,.9); }
.faq-hero--navy .btn-secondary { border-color: rgba(255,255,255,.5); color: #fff; }
.faq-hero--navy .btn-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.trust-strip--light { background: var(--paper); border-top: 3px solid var(--gold); }
.trust-strip--light .trust__label { color: var(--gold-warm); }
.trust-strip--light .trust__value { color: var(--ink); }

.founder-photo { margin-top: 1.5rem; max-width: 400px; }
.founder-photo img { width: 100%; border-radius: 12px; display: block; }
.founder-photo figcaption { margin-top: .6rem; font-size: .9rem; color: var(--ink-mute); font-style: italic; }

/* About hero: show the full shop photo including the sign (taller frame, anchored to top) */
.svc-hero__media--full { aspect-ratio: 4 / 5; }
.svc-hero__media--full img { object-position: center top; }
@media (max-width: 900px) { .svc-hero__media--full { aspect-ratio: 4 / 5; max-height: 78vh; } }
