:root {
  --navy: #0b182d;
  --navy-2: #132540;
  --navy-3: #1c3152;
  --gold: #f6c667;
  --gold-dark: #b7892f;
  --cream: #f6c667;
  --paper: #fafaf7;
  --white: #fff;
  --ink: #101c2f;
  --body: #596273;
  --muted: #8992a1;
  --line: #e7e9ed;
  --shadow: 0 28px 70px rgba(11, 24, 45, .14);
  --radius: 24px;
  --container: 1200px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir LT Pro", "Avenir Next", Avenir, "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button, input { font: inherit; }

button { color: inherit; }

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  background: rgba(250, 250, 247, .9);
  border-bottom: 1px solid transparent;
  transition: height .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .94);
  border-color: rgba(11, 24, 45, .08);
  box-shadow: 0 8px 30px rgba(11, 24, 45, .06);
}

.header-inner { height: 100%; display: flex; align-items: center; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 112px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
  margin: 0 auto;
}

.desktop-nav a {
  position: relative;
  color: #3b4656;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  /* .button is used on <button> too (hero video CTA), which browsers default
     to cursor:default. Harmless on anchors. */
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(215, 169, 46, .22);
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}

.button:hover {
  background: #ffda73;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(215, 169, 46, .3);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.round-arrow:focus-visible {
  outline: 3px solid rgba(254, 207, 82, .65);
  outline-offset: 4px;
}

.button svg { width: 18px; height: 18px; transition: transform .2s; }
.button:hover svg { transform: translateX(3px); }
.button-small { min-height: 46px; padding: 11px 19px; font-size: .78rem; }
.button-large { min-height: 58px; padding: 17px 29px; }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  padding: 150px 0 0;
  min-height: 820px;
  background: linear-gradient(102deg, var(--paper) 0 55%, var(--navy) 55% 100%);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  top: 88px;
  right: 0;
  width: 45%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.hero-grid-lines {
  position: absolute;
  inset: 88px 0 0;
  opacity: .035;
  background-image: linear-gradient(rgba(11, 24, 45, .8) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 24, 45, .8) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(46px, 6vw, 90px);
  align-items: center;
}

.hero-copy { padding: 30px 0 96px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-dark { color: #9b7416; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.055em;
}

h1 { font-size: clamp(3.1rem, 5.25vw, 5.3rem); line-height: .98; }
h2 { font-size: clamp(2.5rem, 4.1vw, 4.25rem); line-height: 1.02; }
h1 em, h2 em { color: var(--gold-dark); font-family: "Tomboy LP", "Segoe Print", "Bradley Hand", cursive; font-weight: 500; }

.hero-lead {
  max-width: 530px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.hero-media { position: relative; align-self: stretch; min-height: 620px; }

.hero-photo-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 610px);
  overflow: hidden;
  border-radius: 0 0 0 90px;
  box-shadow: -32px 35px 80px rgba(0, 0, 0, .28);
}

.hero-photo-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 14, 29, .76) 100%), linear-gradient(90deg, rgba(11, 24, 45, .14), transparent 35%);
}

.roof-line { position: absolute; z-index: -1; top: 8%; right: -18%; width: 110%; height: 42%; opacity: .18; }
.roof-line svg { width: 100%; height: 100%; }
.roof-line path { fill: none; stroke: var(--gold); stroke-width: 2; }

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  min-height: 108px;
  margin-top: -10px;
  transform: none;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(3, 12, 28, .22);
}

.trust-strip > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
}

.trust-strip > div + div::before { content: ""; position: absolute; top: 28%; bottom: 28%; left: 0; width: 1px; background: var(--line); }
.trust-intro { border-radius: 18px 0 0 18px; background: var(--gold); }
.trust-intro span { margin-bottom: 4px; font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.trust-intro strong { font-size: 1rem; }
.trust-item strong { color: var(--navy); font-size: .88rem; }
.trust-item span { color: var(--body); font-size: .7rem; }

.section { padding: 130px 0; }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(70px, 9vw, 130px); align-items: center; }
.section-copy p { margin-bottom: 17px; color: var(--body); }
.section-copy p strong { color: var(--navy); }
.about-visual { position: relative; min-height: 590px; }
.about-photo-main { position: absolute; top: 0; right: 0; width: 78%; height: 78%; margin: 0; overflow: hidden; border-radius: var(--radius); }
.about-photo-main img, .about-photo-small img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-small { position: absolute; z-index: 2; bottom: 0; left: 0; width: 44%; height: 48%; margin: 0; overflow: hidden; border: 10px solid var(--white); border-radius: 20px; box-shadow: var(--shadow); }
.values-card { position: absolute; z-index: 3; right: -20px; bottom: 38px; width: 210px; padding: 23px 26px; border-radius: 18px 0 18px 18px; background: var(--gold); color: var(--navy); box-shadow: 0 20px 45px rgba(11, 24, 45, .16); }
.values-card span { display: block; margin-bottom: 8px; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.values-card strong { font-size: 1.22rem; line-height: 1.35; }

.culture { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.culture-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../assets/roof-pattern.svg") center / cover no-repeat;
  opacity: .16;
}
.culture .container { position: relative; }
.section-heading-wide { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.section-heading-wide h2 { margin-bottom: 0; color: var(--white); }
.section-heading-wide h2 em { color: var(--gold); }
.section-heading-wide > p { max-width: 470px; margin: 0 0 10px; color: #acb7c8; }
.culture-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

.culture-card {
  position: relative;
  grid-column: span 2;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: var(--navy-2);
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}

.culture-card:nth-child(4) { grid-column: 2 / span 2; }
.culture-card:hover { transform: translateY(-7px); background: var(--navy-3); border-color: rgba(254, 207, 82, .38); }
.culture-card > svg { width: 34px; color: var(--gold); }
.culture-card h3 { margin: 44px 0 10px; color: var(--white); font-size: 1.16rem; line-height: 1.25; }
.culture-card p { margin: 0; color: #98a6b9; font-size: .81rem; line-height: 1.65; }
.card-number { position: absolute; top: 30px; right: 30px; color: #65738a; font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.culture-card-accent { background: var(--gold); border-color: var(--gold); }
.culture-card-accent:hover { background: #ffda73; }
.culture-card-accent > svg, .culture-card-accent h3, .culture-card-accent p, .culture-card-accent .card-number { color: var(--navy); }

.growth { background: var(--paper); }
.section-heading.centered { max-width: 700px; margin: 0 auto 72px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { max-width: 590px; margin: 0 auto; color: var(--body); }

.growth-path { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.path-line { position: absolute; top: 52px; right: 10%; left: 10%; height: 2px; background: #dfe2e7; }
.path-line span { display: block; width: 0; height: 100%; background: var(--gold-dark); transition: width 1.4s var(--ease); }
.growth-path.in-view .path-line span { width: 100%; }
.growth-step { position: relative; z-index: 1; padding: 0 20px; text-align: center; }
.growth-number { display: block; margin-bottom: 14px; color: #9ba2ad; font-size: .63rem; font-weight: 800; letter-spacing: .17em; }
.growth-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border: 8px solid var(--paper); border-radius: 50%; background: var(--white); color: var(--navy); box-shadow: 0 10px 28px rgba(11, 24, 45, .09); }
.growth-icon svg { width: 29px; }
.growth-step h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.08rem; }
.growth-step p { margin: 0; color: var(--body); font-size: .78rem; }

.straight-talk { display: grid; grid-template-columns: .45fr 1.35fr auto; gap: 40px; align-items: center; margin-top: 90px; padding: 36px 40px; border: 1px solid #d9d3c6; border-radius: 18px; background: #f1e9da; }
.straight-label { align-self: start; display: flex; align-items: center; gap: 10px; color: #8d6813; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.pulse-dot { position: relative; width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--gold-dark); box-shadow: 0 0 0 6px rgba(246, 198, 103, .15); }
.pulse-dot::after { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(246, 198, 103, .7); border-radius: 50%; animation: pulse-ring 1.8s ease-out infinite; }

@keyframes pulse-ring {
  0% { transform: scale(.45); opacity: .9; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.straight-copy h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.3rem; }
.straight-copy p { margin: 0; color: #5d5a53; font-size: .88rem; }
.round-arrow { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 1.15rem; text-decoration: none; transition: transform .2s; }
.round-arrow:hover { transform: translateY(4px); }

/* Sits between growth (light) and vision (dark). Uses navy-2 so the step into
   vision's solid navy reads as intentional depth, not a seam. */
.opportunity { background: var(--navy-2); color: var(--white); }
.opportunity .eyebrow { color: var(--gold); }
.opportunity-head { position: relative; max-width: 900px; }
.opportunity-head h2 { margin-bottom: 22px; color: var(--white); }
.opportunity-title { display: grid; gap: 8px; max-width: 860px; }
.opportunity-title-kicker {
  display: flex;
  align-items: baseline;
  gap: .2em;
  color: #d9e1ec;
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.opportunity-title-kicker em {
  position: relative;
  z-index: 0;
  color: var(--gold);
  white-space: nowrap;
}
.opportunity-title-kicker em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .06em;
  left: -.08em;
  height: .24em;
  border-radius: 999px;
  background: rgba(246, 198, 103, .18);
  transform: rotate(-1.5deg);
}
.opportunity-title-main { display: block; max-width: 790px; }
.opportunity-title-main strong {
  color: var(--gold);
  font-weight: inherit;
  white-space: nowrap;
}
.opportunity-lede { margin: 0; color: #acb7c8; }

.stat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 54px 0 46px; }
.stat-tile { padding: 40px 34px; border: 1px solid rgba(246, 198, 103, .16); border-radius: 20px; background: rgba(11, 24, 45, .55); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.stat-tile:hover { transform: translateY(-7px); border-color: rgba(246, 198, 103, .42); background: rgba(11, 24, 45, .8); }
.stat-figure { display: block; margin-bottom: 12px; color: var(--gold); font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.stat-label { margin: 0; color: #d5dce7; font-size: .84rem; font-weight: 700; line-height: 1.45; }

.opportunity-foot { max-width: 780px; }
.opportunity-close { margin: 0 0 28px; color: #acb7c8; }
.opportunity-fineprint { margin: 0; color: #7b8698; font-size: .74rem; line-height: 1.75; }

.vision { position: relative; min-height: 730px; display: flex; align-items: center; background: var(--navy); color: var(--white); overflow: hidden; }
.vision-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 24, 45, .52), rgba(11, 24, 45, .82)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=85") center/cover; opacity: .62; }
.vision::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--navy) 0, transparent 22%, transparent 75%, var(--navy) 100%); }
.vision-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.vision-number { display: inline-flex; align-items: center; font-size: clamp(9rem, 21vw, 19rem); font-weight: 800; letter-spacing: 0; line-height: .8; }
.vision-number > span { display: inline-block; }
.vision-number > span + span { margin-left: -.1em; }
.vision-number-outline { color: rgba(255, 255, 255, .24); }
.vision-number-accent { color: rgba(254, 207, 82, .72); }
.vision-copy { max-width: 500px; padding: 95px 0; }
.vision-copy h2 { color: var(--white); }
.vision-copy h2 em { color: var(--gold); }
.vision-copy > p { color: #c2cad7; }
.button-light { margin-top: 18px; background: var(--white); box-shadow: none; }
.button-light:hover { background: var(--gold); }

.process { background: var(--white); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-connector { position: absolute; top: 65px; right: 16%; left: 16%; border-top: 2px dashed #d3d7dd; }
.process-card { position: relative; min-height: 345px; padding: 38px 32px 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.process-card:hover { transform: translateY(-6px); border-color: #ded2b5; box-shadow: var(--shadow); }
.process-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 5px; border-radius: 0 0 20px 20px; background: var(--gold); transform: scaleX(.25); transform-origin: left; transition: transform .3s var(--ease); }
.process-card:hover::after { transform: scaleX(1); }
.process-number { position: absolute; top: 30px; right: 30px; color: #c3c8cf; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.process-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 16px; background: var(--navy); color: var(--gold); box-shadow: 8px 8px 0 #f3e7c9; }
.process-icon svg { width: 31px; }
.step-label { color: #9b7416; font-size: .61rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.process-card h3 { margin: 8px 0 10px; color: var(--navy); font-size: 1.15rem; }
.process-card p { margin: 0; color: var(--body); font-size: .82rem; }

.final-cta { padding: 0 0 70px; background: var(--white); }
.final-cta-inner { position: relative; min-height: 510px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 70px 12%; border-radius: 30px; background: var(--navy); color: var(--white); text-align: center; overflow: hidden; }
.final-cta-inner::before { content: ""; position: absolute; width: 520px; height: 520px; top: -330px; left: 50%; border: 1px solid rgba(254, 207, 82, .18); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 60px rgba(254, 207, 82, .025), 0 0 0 120px rgba(254, 207, 82, .02); }
.final-roof-line { position: absolute; inset: auto -6% -40% 47%; width: 55%; height: 85%; border-top: 1px solid rgba(254, 207, 82, .18); transform: rotate(-37deg); }
.final-mark { position: relative; width: 48px; margin-bottom: 20px; color: var(--gold); }
.final-mark svg { width: 100%; }
.final-kicker { position: relative; margin-bottom: 18px; color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.final-cta h2 { position: relative; max-width: 800px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.35rem, 4vw, 4rem); }
.final-cta p { position: relative; max-width: 580px; margin-bottom: 30px; color: #b7c1d0; }
.final-cta .button { position: relative; }
.final-note { position: relative; margin-top: 16px; color: #79879a; font-size: .65rem; }

.site-footer { padding: 48px 0 32px; background: #07101f; color: #758198; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; }
.brand-footer { color: var(--white); }
.brand-footer { padding: 7px 11px; border-radius: 9px; background: var(--white); }
.footer-tagline { margin: 0; color: var(--cream); font-size: .73rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-links a { color: #8f9aac; font-size: .7rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .65rem; }

.video-modal { width: min(900px, calc(100% - 32px)); padding: 0; border: 0; border-radius: 24px; background: var(--navy); color: var(--white); box-shadow: 0 35px 90px rgba(0, 0, 0, .45); overflow: hidden; }
.video-modal::backdrop { background: rgba(3, 9, 19, .8); backdrop-filter: blur(7px); }
.modal-shell { position: relative; }
.modal-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; background: rgba(11, 24, 45, .7); color: var(--white); font-size: 1.55rem; line-height: 1; cursor: pointer; }
.video-frame { aspect-ratio: 16/9; background: #000; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .74rem; }
  .hero { background: linear-gradient(102deg, var(--paper) 0 58%, var(--navy) 58%); }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 40px; }
  .hero-photo-wrap { width: 100%; }
  .trust-strip > div { padding: 20px; }
  .about-grid { gap: 60px; }
  .values-card { right: 0; }
}

@media (max-width: 860px) {
  .site-header { height: 76px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { width: 46px; height: 46px; display: grid; align-content: center; gap: 6px; margin-left: auto; padding: 11px; border: 0; border-radius: 50%; background: var(--navy); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--white); transition: transform .25s, translate .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { translate: 0 4px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { translate: 0 -4px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 99; inset: 76px 0 auto; display: grid; gap: 8px; padding: 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 25px 45px rgba(11, 24, 45, .12); transform: translateY(-140%); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu > a:not(.button) { padding: 11px 3px; color: var(--navy); font-size: .9rem; font-weight: 700; text-decoration: none; }
  .mobile-menu .button { margin-top: 10px; }
  .hero { padding-top: 125px; background: linear-gradient(180deg, var(--paper) 0 48%, var(--navy) 48% 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; padding: 20px 0 35px; }
  .hero-media { min-height: 620px; }
  .hero-photo-wrap { left: 0; width: 100%; border-radius: 28px 28px 0 70px; }
  .trust-strip { grid-template-columns: 1.2fr repeat(3, 1fr); }
  .trust-strip > div { padding: 18px 15px; }
  .about-grid { grid-template-columns: 1fr; }
  .about .section-copy { max-width: 680px; }
  .about-visual { min-height: 640px; }
  .section-heading-wide { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .culture-card { grid-column: span 3; }
  .culture-card:nth-child(4) { grid-column: span 3; }
  .culture-card:last-child { grid-column: 2 / span 4; }
  .growth-path { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .path-line { display: none; }
  .stat-tiles { grid-template-columns: 1fr 1fr; }
  .stat-tiles > :last-child { grid-column: 1 / -1; }
  .straight-talk { grid-template-columns: 1fr auto; }
  .straight-label { grid-column: 1 / -1; }
  .vision-inner { grid-template-columns: 1fr; gap: 0; }
  .vision-number { position: absolute; top: 15%; left: -2%; opacity: .42; }
  .vision-copy { position: relative; margin-left: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }
  .hero { min-height: 0; padding-top: 112px; overflow: hidden; }
  .hero-grid { gap: 26px; }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 500px; }
  .hero-photo-wrap { border-radius: 22px 22px 0 50px; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 0; transform: none; border-radius: 0; }
  .trust-strip > div { min-height: 80px; padding: 18px 24px; }
  .trust-strip > div + div::before { top: 0; right: 24px; bottom: auto; left: 24px; width: auto; height: 1px; }
  .trust-intro { border-radius: 0; }
  .about-grid { gap: 45px; }
  .about-visual { min-height: 480px; }
  .about-photo-main { width: 88%; height: 76%; }
  .about-photo-small { width: 48%; height: 44%; border-width: 6px; }
  .values-card { right: 0; bottom: 16px; width: 176px; padding: 18px 20px; }
  .values-card strong { font-size: 1rem; }
  .section-heading-wide { margin-bottom: 42px; }
  .culture-grid { display: flex; gap: 14px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .culture-grid::-webkit-scrollbar { display: none; }
  .culture-card, .culture-card:nth-child(4), .culture-card:last-child { flex: 0 0 82vw; min-height: 300px; grid-column: auto; scroll-snap-align: start; }
  .section-heading.centered { margin-bottom: 52px; }
  .growth-path { grid-template-columns: 1fr; row-gap: 40px; }
  .growth-step { max-width: 340px; margin: 0 auto; }
  .stat-tiles { grid-template-columns: 1fr; gap: 14px; margin: 40px 0 34px; }
  .stat-tiles > :last-child { grid-column: auto; }
  .stat-tile { padding: 28px 26px; }
  .opportunity-title { gap: 10px; }
  .opportunity-title-kicker { display: block; }
  .opportunity-title-main strong { white-space: normal; }
  .straight-talk { grid-template-columns: 1fr; gap: 18px; margin-top: 65px; padding: 28px 24px; }
  .round-arrow { display: none; }
  .vision { min-height: 680px; }
  .vision-number { top: 11%; left: -6%; font-size: 10rem; }
  .vision-copy { padding: 100px 0 80px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-connector { top: 8%; bottom: 8%; left: 31px; right: auto; border-top: 0; border-left: 2px dashed #d3d7dd; }
  .process-card { min-height: 0; padding: 30px 28px 30px 95px; }
  .process-icon { position: absolute; top: 28px; left: 20px; width: 52px; height: 52px; box-shadow: 6px 6px 0 #f3e7c9; }
  .process-number { display: none; }
  .final-cta { padding-bottom: 0; }
  .final-cta .container { width: 100%; }
  .final-cta-inner { min-height: 540px; padding: 70px 24px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .brand-footer { justify-content: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
