/* ─────────────────────────────────────────────
   AVERGENT v2 — Sound-inspired design system
   Shared across all pages.
   ───────────────────────────────────────────── */

:root {
  --navy:         #032738;
  --navy-soft:    #0a354a;
  --cream:        #fff9ea;
  --cream-warm:   #fef4db;
  --cream-peach:  #ffeed6;
  --sage:         #d8e8df;
  --sage-dark:    #b1d7d4;
  --peach-border: #ffcb95;
  --orange:       #ff9600;
  --orange-dark:  #e07f00;
  --grey:         #f0f3f5;
  --ink:          #032738;
  --ink-soft:     #3a5a6e;
  --ink-mute:     #6c8a9d;
  --rule:         rgba(3, 39, 56, 0.14);
  --rule-soft:    rgba(3, 39, 56, 0.06);

  --radius:       clamp(16px, 2.67vw, 32px);
  --radius-sm:    clamp(12px, 2vw, 24px);

  --H0:  clamp(3rem, calc(0.99rem + 7vw), 4.75rem);
  --H1:  clamp(2.75rem, calc(1.85rem + 4vw), 4rem);
  --H2:  clamp(2.25rem, calc(1.93rem + 2vw), 3rem);
  --H3:  clamp(1.5rem, calc(0.89rem + 3vw), 2.25rem);
  --H4:  clamp(1.2rem, calc(0.68rem + 2vw), 1.5rem);
  --H5:  clamp(1.1rem, calc(0.69rem + 1.5vw), 1.25rem);
  --intro: 1.125rem;

  --gutter: clamp(20px, 3.5vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Fraunces', Georgia, 'Adjusted Baskerville Fallback', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.sans { font-family: 'Instrument Sans', -apple-system, sans-serif; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.wrap-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}

.eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow--orange { color: var(--orange-dark); }
.eyebrow--cream  { color: var(--cream-peach); }

/* ═══════════════ NAV ═══════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid rgba(3, 39, 56, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo img {
  display: block;
  height: 56px;
  width: auto;
  filter: brightness(1.05) drop-shadow(0 0 10px rgba(255, 150, 0, 0.28));
  animation: logo-glimmer 5s ease-in-out infinite;
  will-change: filter;
}

@keyframes logo-glimmer {
  0%, 100% {
    filter: brightness(1.05) drop-shadow(0 0 10px rgba(255, 150, 0, 0.28));
  }
  50% {
    filter: brightness(1.10) drop-shadow(0 0 16px rgba(255, 150, 0, 0.45));
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-logo img { animation: none; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-menu a:hover { color: var(--orange-dark); opacity: 1; }
.nav-menu a[aria-current="page"] { opacity: 1; }

.nav-menu a[aria-current="page"] {
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

.nav-menu li.has-drop { position: relative; }

/* Invisible hover bridge between the trigger and the dropdown — prevents the
   menu from collapsing when the mouse crosses the gap, and keeps the spacing
   visually consistent regardless of which menu was last open. */
.nav-menu li.has-drop::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 24px;
  pointer-events: none;
}
.nav-menu li.has-drop:hover::before,
.nav-menu li.has-drop:focus-within::before {
  pointer-events: auto;
}

.nav-menu li.has-drop > a::after {
  content: " ▾";
  font-size: 10px;
  opacity: 0.5;
  margin-left: 3px;
}

.nav-drop {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  background: var(--cream);
  color: var(--ink);
  padding: 16px 0;
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 48px -16px rgba(3, 39, 56, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
}

.nav-menu li.has-drop:hover .nav-drop,
.nav-menu li.has-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0s;
}

.nav-drop a {
  display: block;
  padding: 8px 22px;
  color: var(--ink);
  opacity: 1;
  font-size: 14px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  border-bottom: none !important;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-drop a:hover { background: var(--cream-peach); color: var(--navy); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.015em;
  line-height: 1;
  color: var(--ink);
  background: var(--orange);
  padding: 11px 18px 11px 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.nav-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

/* Orange-outlined bubble around the Contact item — sibling to the solid CTA */
.nav-menu .nav-contact > a {
  padding: 9px 18px;
  margin-left: 4px;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  color: var(--orange-dark);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-menu .nav-contact > a:hover {
  background: var(--orange);
  color: var(--ink);
  opacity: 1;
  border-color: var(--orange);
}
.nav-menu .nav-contact > a[aria-current="page"] {
  border-bottom: 1.5px solid var(--orange);
}

.nav-cta:focus-visible,
.nav-menu a:focus-visible,
.nav-drop a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.hamburger {
  display: none;
  position: relative;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s var(--ease);
}

.hamburger:hover { background: rgba(3, 39, 56, 0.06); }

.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  display: block;
  position: absolute;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
  left: 10px;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }

.nav.is-open .hamburger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav.is-open .hamburger span:nth-child(2) { opacity: 0; }
.nav.is-open .hamburger span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav-inner { position: relative; }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu panel — slides down from under the nav bar */
  .nav.is-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 12px var(--gutter) 24px;
    gap: 0;
    border-top: 1px solid rgba(3, 39, 56, 0.08);
    box-shadow: 0 20px 40px -12px rgba(3, 39, 56, 0.14);
    max-height: calc(100vh - var(--nav-height, 72px));
    overflow-y: auto;
  }

  .nav.is-open .nav-menu li {
    border-bottom: 1px solid rgba(3, 39, 56, 0.08);
  }

  .nav.is-open .nav-menu li:last-child { border-bottom: none; }

  .nav.is-open .nav-menu > li > a {
    display: block;
    padding: 16px 0;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 1;
    color: var(--ink);
  }

  .nav.is-open .nav-menu li.has-drop > a::after { display: none; }

  /* Sub-dropdowns: always visible, indented */
  .nav.is-open .nav-drop {
    display: block;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 14px 16px;
    margin: 0 0 0 0;
    border-radius: 0;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav.is-open .nav-drop a {
    color: var(--ink-soft);
    padding: 8px 0;
    font-size: 15px;
    font-family: 'Fraunces', serif;
  }

  .nav.is-open .nav-drop a:hover {
    color: var(--orange-dark);
    background: transparent;
  }

  /* On mobile the Contact nav link serves the same purpose as the Get Started
     CTA — the orange pill button stays hidden in the open menu. */

  body.nav-locked { overflow: hidden; }
}

/* ═══════════════ HOMEPAGE HERO (DARK) ═══════════════ */

.hero {
  background: var(--navy);   /* fallback while the video loads */
  color: var(--cream);
  padding: clamp(80px, 14vw, 200px) 0 clamp(100px, 16vw, 220px);
  position: relative;
  overflow: hidden;
}

/* Background video layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark navy wash over the video so the white serif headline stays legible.
   Lighter than the still-image treatment because the watercolor clip is
   soft-toned already — we want the art visible without fighting the type. */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(3, 39, 56, 0.72) 0%,
    rgba(3, 39, 56, 0.52) 45%,
    rgba(3, 39, 56, 0.78) 100%
  );
  pointer-events: none;
}

/* Warm orange glow flourish — sits above the video, below the headline */
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 65%; height: 120%;
  background: radial-gradient(circle, rgba(255, 150, 0, 0.14), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero .wrap { position: relative; z-index: 2; }

/* Respect users who prefer reduced motion — stop autoplay, show poster only */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-media {
    background: var(--navy) url('/hero-poster.png') center/cover no-repeat;
  }
}

.hero-kicker {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-kicker::before {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--orange);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: var(--H0);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--cream);
  max-width: 14ch;
  margin-bottom: 48px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--peach-border);
  display: block;
}

.hero-sub {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 249, 234, 0.78);
  max-width: 56ch;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ═══════════════ INTERIOR HERO (CREAM) ═══════════════ */
/* Used on persona/subpages — cream background, big serif headline, dual CTAs,
   decorative navy arc shape in upper right. */

.pg-hero {
  --bubble-img: none;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -18%;
  width: 60%;
  height: 130%;
  background-color: var(--navy);
  background-image:
    linear-gradient(155deg, rgba(3, 39, 56, 0.55) 0%, rgba(3, 39, 56, 0.82) 60%, rgba(3, 39, 56, 0.92) 100%),
    var(--bubble-img);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: normal, normal;
  border-radius: 50% 50% 50% 50%;
  pointer-events: none;
  z-index: 1;
}

.pg-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 60% 40%, rgba(255, 150, 0, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.pg-hero .wrap { position: relative; z-index: 3; }

.pg-hero-body {
  max-width: 780px;
}

.pg-hero .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 28px;
  display: block;
}

.pg-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: var(--H1);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 30px;
  text-wrap: balance;
  max-width: 16ch;
}

.pg-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.pg-hero p {
  font-family: 'Fraunces', serif;
  font-size: var(--intro);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 40px;
  font-weight: 400;
}

.pg-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.pg-brand-lockup {
  display: block;
  height: auto;
  max-height: 96px;
  width: auto;
  max-width: 420px;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .pg-brand-lockup { max-height: 72px; max-width: 320px; margin-bottom: 18px; }
}

@media (max-width: 760px) {
  /* Hide the decorative bubble on mobile — it overlaps the body copy and
     mobile doesn't have the horizontal room to tuck it cleanly. */
  .pg-hero::before,
  .pg-hero::after { display: none; }
}

/* ═══════════════ WHAT SETS US APART (6-card grid) ═══════════════ */

.sets-apart {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}

.sets-apart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.sets-apart-head h2 {
  font-size: var(--H2);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.05;
  max-width: 16ch;
}

.sets-apart-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.sets-apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}

.set {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.set-dot {
  width: 14px; height: 14px;
  background: var(--sage);
  border: 1.5px solid var(--sage-dark);
  border-radius: 999px;
  margin-bottom: 10px;
}
.set:nth-child(even) .set-dot { background: var(--cream-peach); border-color: var(--peach-border); }
.set:nth-child(3n) .set-dot   { background: var(--cream-warm); border-color: var(--orange); }

.set h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
}

.set p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .sets-apart-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .sets-apart-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════ STATEMENT BLOCK (NAVY DARK) ═══════════════ */

.statement {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 50%; height: 150%;
  background: radial-gradient(circle, rgba(255, 150, 0, 0.1), transparent 60%);
  pointer-events: none;
}

.statement .wrap { position: relative; z-index: 2; max-width: 1080px; }

.statement blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 36px;
  text-wrap: balance;
}

.statement blockquote::before {
  content: "\2014\00a0";
  color: var(--orange);
  font-style: normal;
  font-weight: 400;
}

.statement cite {
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--peach-border);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement cite strong {
  color: var(--cream);
  font-weight: 600;
  margin-right: 10px;
}

/* ═══════════════ INFO STRIP (4-column) ═══════════════ */

.strip {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 48px;
}

.strip-col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.strip-col p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.strip-col-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--orange-dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .strip-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════ PROOF IN PRACTICE (3 cards) ═══════════════ */

.proof {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.proof-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-head h2 {
  font-size: var(--H3);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}

.proof-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.proof-head a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}

.proof-head a:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  background: var(--cream-peach);
  border-radius: var(--radius-sm);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--peach-border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -24px rgba(3, 39, 56, 0.22);
}

.proof-card .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 2px;
}

.proof-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.15;
}

.proof-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.proof-card-stat {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--orange-dark);
  letter-spacing: -0.03em;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ═══════════════ STATS STRIP (4 tiles) ═══════════════ */

.stats {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream-peach);
  border-top: 1px solid var(--peach-border);
  border-bottom: 1px solid var(--peach-border);
}

.stats-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.stats-head .eyebrow { color: var(--orange-dark); margin-bottom: 14px; display: block; }

.stats-head h2 {
  font-size: var(--H3);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.stats-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.stats-head p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: left;
}

.stats--centered {
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  gap: 64px;
}
.stats--centered .stat { text-align: center; }
.stats--centered .stat-rule { margin-left: auto; margin-right: auto; }
.stats--centered .stat-lbl { margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .stats-grid.stats--centered {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}
@media (max-width: 520px) {
  .stats-grid.stats--centered {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.stat-num sup {
  font-size: 0.42em;
  color: var(--orange-dark);
  top: -0.9em;
  position: relative;
  margin-left: 0.04em;
  font-weight: 500;
}

.stat-rule {
  width: 40px; height: 1px;
  background: var(--orange);
  margin: 16px 0 12px;
}

.stat-lbl {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 220px;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ TWO-COLUMN EDITORIAL (used on interior pages) ═══════════════ */

.editorial {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.editorial-fig {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -24px rgba(3, 39, 56, 0.22);
}

.editorial-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(1.04) contrast(0.98);
}

.editorial-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 39, 56, 0.2));
  mix-blend-mode: multiply;
}

.editorial-txt .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 18px;
  display: block;
}

.editorial-txt h2 {
  font-size: var(--H2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 18ch;
}

.editorial-txt h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.editorial-txt p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 52ch;
}

.editorial-txt ul {
  list-style: none;
  margin-top: 20px;
}

.editorial-txt ul li {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 10px 0 10px 26px;
  position: relative;
  border-top: 1px solid var(--rule);
}

.editorial-txt ul li:last-child { border-bottom: 1px solid var(--rule); }

.editorial-txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .editorial-inner { grid-template-columns: 1fr; }
  .editorial-fig { aspect-ratio: 3 / 2; order: -1; }
}

/* ═══════════════ FAQ ═══════════════ */

.faq {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.faq-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.faq-head .eyebrow { margin-bottom: 14px; display: block; color: var(--orange-dark); }

.faq-head h2 {
  font-size: var(--H3);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.08;
}

.faq-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-q {
  all: unset;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  cursor: pointer;
  width: 100%;
  transition: color 0.3s var(--ease);
}

.faq-q:hover { color: var(--orange-dark); }

.faq-q-text { flex: 1; }

.faq-toggle {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  margin-top: 4px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.35s var(--ease);
}

.faq-toggle::before { top: 10px; left: 2px; width: 18px; height: 1.5px; }
.faq-toggle::after  { top: 2px; left: 10px; width: 1.5px; height: 18px; }

.faq-item.open .faq-toggle::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.open .faq-a { max-height: 700px; }

.faq-a-inner {
  padding: 0 50px 28px 0;
}

.faq-a p {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 76ch;
  margin-bottom: 14px;
}

.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul {
  margin: 10px 0 14px 22px;
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* ═══════════════ HOMEPAGE INTRO (shared, was on index.html) ═══════════════ */

.intro {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
  position: relative;
}

.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro .eyebrow {
  margin-bottom: 24px;
  display: block;
}

.intro h2 {
  font-size: var(--H2);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: balance;
  font-weight: 400;
}

.intro h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.intro p {
  font-size: var(--intro);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 auto 40px;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-outline:hover { background: var(--navy); color: var(--cream); }

.btn-outline .arr {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-outline:hover .arr { transform: translateX(2px); }

.btn-outline:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--orange);
  padding: 15px 28px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.25s var(--ease);
}

.btn-solid:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-solid .arr {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
}

.btn-solid:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ═══════════════ HOMEPAGE CAPS GRID (legacy for index.html) ═══════════════ */

.caps {
  padding: 0 0 clamp(80px, 10vw, 140px);
  background: var(--cream);
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
  border-top: 1px solid var(--rule);
  padding-top: 64px;
}

.cap { display: flex; flex-direction: column; gap: 14px; }

.cap-dot {
  width: 14px; height: 14px;
  background: var(--sage);
  border: 1.5px solid var(--sage-dark);
  border-radius: 999px;
  margin-bottom: 10px;
}

.cap:nth-child(even) .cap-dot { background: var(--cream-peach); border-color: var(--peach-border); }
.cap:nth-child(3n) .cap-dot   { background: var(--cream-warm); border-color: var(--orange); }

.cap h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
}

.cap p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cap .arr-link {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.cap .arr-link:hover { gap: 10px; color: var(--orange-dark); }
.cap .arr-link::after { content: "→"; font-family: 'Fraunces', serif; }

@media (max-width: 900px) {
  .caps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .caps-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════ HOMEPAGE APPROACH (legacy for index.html) ═══════════════ */

.approach {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255, 150, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.approach-txt .eyebrow { color: var(--orange); margin-bottom: 24px; display: block; }

.approach h2 {
  font-family: 'Fraunces', serif;
  font-size: var(--H2);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--cream);
  margin-bottom: 44px;
  max-width: 14ch;
}

.approach h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--peach-border);
}

.approach-list { list-style: none; }

.approach-step {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 249, 234, 0.14);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.approach-step:last-child { border-bottom: 1px solid rgba(255, 249, 234, 0.14); }

.approach-step-n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--peach-border);
  line-height: 1;
  padding-top: 2px;
}

.approach-step h5 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.approach-step p {
  font-family: 'Fraunces', serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 249, 234, 0.72);
  font-weight: 300;
  max-width: 42ch;
}

.approach-fig {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
}

.approach-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.14) saturate(1.04) contrast(0.97);
}

.approach-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(3, 39, 56, 0.28));
  mix-blend-mode: multiply;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-fig { aspect-ratio: 3 / 2; }
}

/* ═══════════════ HOMEPAGE SERVE ═══════════════ */

.serve {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}

.serve-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.serve-head .eyebrow { margin-bottom: 18px; display: block; }

.serve-head h2 {
  font-size: var(--H2);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 14ch;
  font-weight: 400;
}

.serve-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.serve-head p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 400;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.srv { display: flex; flex-direction: column; gap: 16px; }

.srv-fig {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey);
}

.srv-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(1.04) contrast(0.98);
  transition: transform 0.8s var(--ease);
}

.srv:hover .srv-fig img { transform: scale(1.04); }

.srv-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 39, 56, 0.25));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.srv-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.srv h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.1;
}

.srv p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.srv h4 a,
.srv-media-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.srv h4 a:hover { color: var(--ink-soft); }

.serve-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .serve-head { grid-template-columns: 1fr; gap: 24px; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .serve-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ TESTIMONIAL (SAGE CARD) ═══════════════ */

.testimonial {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--cream);
}

.testimonial-card {
  background: var(--sage);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--navy);
  opacity: 0.15;
  position: absolute;
  top: 36px; left: 44px;
  font-weight: 300;
}

.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: pretty;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonial cite {
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  display: block;
}

.testimonial cite strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}

/* ═══════════════ NEWS (homepage) ═══════════════ */

.news {
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  background: var(--cream);
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.news-head h2 {
  font-size: var(--H3);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}

.news-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.news-head a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.news-head a:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

.news-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--cream-peach);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px -30px rgba(3, 39, 56, 0.22);
}

.news-card-fig {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.news-card-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(1.05) contrast(0.98);
  transition: transform 0.8s var(--ease);
}

.news-card:hover .news-card-fig img { transform: scale(1.04); }

.news-card-body .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 20px;
  display: block;
}

.news-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 400;
  text-wrap: balance;
}

.news-card-body h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.news-card-body p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 50ch;
  font-weight: 400;
}

.news-card-body .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

@media (max-width: 820px) {
  .news-card { grid-template-columns: 1fr; }
  .news-card-fig { aspect-ratio: 3 / 2; }
}

/* ═══════════════ CTA STRIP (orange band) ═══════════════ */

.cta-strip {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--cream-peach);
  border-top: 1px solid var(--peach-border);
  text-align: center;
}

.cta-strip h2 {
  font-size: var(--H2);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 18px;
  text-wrap: balance;
}

.cta-strip h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.cta-strip p {
  font-size: var(--intro);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.cta-strip .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ JOBS LIST (careers) ═══════════════ */

.jobs {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.jobs-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.jobs-head .eyebrow { color: var(--orange-dark); margin-bottom: 14px; display: block; }

.jobs-head h2 {
  font-size: var(--H3);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 18px;
}

.jobs-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.jobs-head p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.jobs-list {
  border-top: 1px solid var(--rule);
}

.job {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background 0.3s var(--ease);
}

.job:hover {
  background: var(--cream-warm);
  margin: 0 -16px;
  padding: 28px 16px;
}

.job-n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--orange-dark);
}

.job h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.1;
}

.job-lbl {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.job-apply {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.job-apply:hover { background: var(--navy); color: var(--cream); }

@media (max-width: 720px) {
  .job { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .job-n { font-size: 1rem; }
  .job-apply { justify-self: start; margin-top: 6px; }
}

/* ═══════════════ CONTACT FORM ═══════════════ */

.contact {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--cream-peach);
  border-top: 1px solid var(--peach-border);
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact-left .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 18px;
  display: block;
}

.contact-left h2 {
  font-size: var(--H2);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 400;
  text-wrap: balance;
  max-width: 14ch;
}

.contact-left h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-dark);
}

.contact-left > p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 42ch;
}

.contact-info {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 28px;
}

.contact-info li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink-soft);
}

.contact-info li strong {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-dark);
  width: 52px;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--navy);
  border-bottom: 1px solid rgba(3, 39, 56, 0.18);
  transition: border-color 0.25s var(--ease);
}

.contact-info a:hover { border-color: var(--orange); }

.contact-form {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--peach-border);
  box-shadow: 0 30px 80px -40px rgba(3, 39, 56, 0.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--navy);
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: var(--peach-border);
  background: var(--cream);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(255, 150, 0, 0.15);
}

.contact-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-success {
  display: none;
  padding: 16px 20px;
  background: var(--sage);
  border-radius: 10px;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--navy);
  margin-top: 4px;
}

.contact-success.is-shown { display: block; }

@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════ FOOTER ═══════════════ */

.foot {
  background: var(--cream-warm);
  color: var(--ink-soft);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(3, 39, 56, 0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.foot-logo {
  display: inline-block;
  line-height: 1;
  margin-bottom: 18px;
}

.foot-logo img {
  display: block;
  height: 60px;
  width: auto;
  filter: brightness(1.05) drop-shadow(0 0 10px rgba(255, 150, 0, 0.28));
  animation: logo-glimmer 5s ease-in-out infinite;
  will-change: filter;
}

.foot-about {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 24px;
  font-weight: 400;
}

.foot-contact {
  list-style: none;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.foot-contact li { display: flex; gap: 10px; align-items: baseline; }
.foot-contact a { color: var(--ink-soft); border-bottom: 1px solid transparent; transition: border-color 0.25s, color 0.25s; }
.foot-contact a:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

.foot-h {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 18px;
}

.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; font-family: 'Fraunces', serif; font-size: 15px; }
.foot-col a { color: var(--ink); opacity: 0.9; transition: opacity 0.25s, color 0.25s; }
.foot-col a:hover { opacity: 1; color: var(--orange-dark); }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(3, 39, 56, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
}

.foot-bottom a { color: var(--ink-soft); transition: color 0.25s; }
.foot-bottom a:hover { color: var(--orange-dark); }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ SCROLL-REVEAL ═══════════════ */

.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.fi.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fi { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════ INLINE LINKS inside cards/strips ═══════════════ */
.srv-inline,
.strip-inline {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  transition: text-decoration-color 0.25s var(--ease);
}
.srv-inline:hover,
.strip-inline:hover {
  text-decoration-color: transparent;
}

