:root {
  --navy-950: #071839;
  --navy-900: #0d2456;
  --navy-800: #17366e;
  --navy-100: #e9eef8;
  --teal-500: #55c8b7;
  --teal-600: #3caf9f;
  --teal-100: #e3f8f4;
  --ink: #10203f;
  --muted: #61708a;
  --line: #dfe6ef;
  --surface: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 36, 86, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --heading: "Montserrat", Arial, sans-serif;
  --body: "Lato", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy-950);
  font-family: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.65rem, 5.7vw, 5.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3.45rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy-950);
}
.skip-link:focus { transform: translateY(0); }
.page-shell { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 108px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.97), rgba(255,255,255,.88), transparent);
}
.nav-shell {
  width: min(1210px, calc(100% - 36px));
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 14px 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(13,36,86,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 35px rgba(10,36,86,.08);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 7px; font-family: var(--heading); }
.brand-mark { color: var(--navy-900); font-size: 1.25rem; font-weight: 800; letter-spacing: -.08em; }
.brand-mark sup { color: var(--teal-600); font-size: .62em; top: -.4em; position: relative; }
.brand-name { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 28px); }
.site-nav a {
  position: relative;
  color: #4d5870;
  font-family: var(--heading);
  font-size: .77rem;
  font-weight: 600;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--teal-500);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px; background: var(--navy-900); }

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--heading);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(85,200,183,.5);
  outline-offset: 3px;
}
.button-primary { color: #062843; background: var(--teal-500); box-shadow: 0 10px 25px rgba(85,200,183,.28); }
.button-primary:hover { background: #67d6c6; }
.button-dark { color: white; background: var(--navy-900); }
.button-outline { color: var(--navy-900); border-color: var(--navy-900); background: white; }
.button-light { color: var(--navy-950); background: white; }
.button-ghost { color: white; border-color: rgba(255,255,255,.72); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; min-height: 700px; padding-top: 82px; display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 660px;
  height: 660px;
  right: -280px;
  top: -200px;
  border: 1px solid rgba(85,200,183,.24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(85,200,183,.025), inset 0 0 0 140px rgba(13,36,86,.025);
}
.hero .page-shell { width: min(1480px, calc(100% - 64px)); }
.hero-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 48px; align-items: center; }
.eyebrow {
  margin-bottom: 22px;
  color: var(--navy-800);
  font-family: var(--heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 24px; height: 2px; margin-right: 8px; vertical-align: middle; background: var(--teal-500); }
.eyebrow.light { color: #d9eff0; }
.headline-line { display: block; }
.hero h1 { max-width: none; margin-bottom: 26px; font-size: clamp(3.15rem, 4vw, 4.75rem); }
.hero h1 .headline-line { white-space: nowrap; }
.hero-lede { max-width: 590px; margin-bottom: 34px; color: var(--muted); font-size: 1.12rem; }
.hero-copy .button-row { margin-bottom: 48px; }
.proof-strip { display: flex; gap: 0; }
.proof-strip div { min-width: 138px; padding: 0 24px; border-left: 1px solid var(--line); }
.proof-strip div:first-child { padding-left: 0; border-left: 0; }
.proof-strip strong { display: block; color: var(--navy-900); font-family: var(--heading); font-size: 1rem; }
.proof-strip span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 500px; }
.visual-frame {
  position: absolute;
  inset: 22px 0 0 24px;
  overflow: hidden;
  border-radius: 160px 24px 160px 24px;
  background: linear-gradient(135deg, var(--navy-100), var(--teal-100));
  box-shadow: var(--shadow);
}
.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,24,57,.15), transparent 50%); }
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.search-card {
  position: absolute;
  left: -40px;
  bottom: 24px;
  width: 240px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 45px rgba(8,35,75,.18);
  backdrop-filter: blur(14px);
}
.search-card-top { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.status-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 5px var(--teal-100); }
.search-card strong { display: block; margin: 12px 0 14px; font-family: var(--heading); font-size: .93rem; }
.candidate-stack { display: flex; align-items: center; }
.candidate-stack span, .candidate-stack b { width: 34px; height: 34px; margin-left: -6px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; color: white; background: var(--navy-800); font-size: .65rem; }
.candidate-stack span:first-child { margin-left: 0; background: #86a4c6; }
.candidate-stack span:nth-child(2) { background: #4b708f; }
.candidate-stack b { color: var(--navy-900); background: var(--teal-100); }
.search-meter { height: 5px; margin: 17px 0 7px; overflow: hidden; border-radius: 10px; background: var(--navy-100); }
.search-meter span { display: block; width: 68%; height: 100%; background: var(--teal-500); }
.search-card small { color: var(--muted); }
.hero-orbit { position: absolute; border: 1px solid rgba(85,200,183,.48); border-radius: 50%; }
.orbit-one { width: 62px; height: 62px; top: 0; right: -22px; }
.orbit-two { width: 18px; height: 18px; left: 10px; top: 52px; background: var(--teal-500); }

.difference { padding: 82px 0 88px; background: linear-gradient(180deg, var(--surface), #fff); }
.difference .section-heading { margin-bottom: 28px; }
.difference .split-heading { display: grid; grid-template-columns: .88fr 1.12fr; gap: 44px; align-items: end; justify-content: initial; }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p:not(.eyebrow):not(.rating) { max-width: 570px; margin-bottom: 0; color: var(--muted); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.split-heading .eyebrow { margin-bottom: 16px; }
.centered { text-align: center; }
.centered p { margin-inline: auto; }
.difference-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center; }
.process-list { position: relative; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 22px; bottom: 38px; left: 21px; width: 1px; background: #cbd4e2; }
.process-list li { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 0 0 18px; }
.process-list li > span { z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #cad5e3; border-radius: 50%; color: var(--muted); background: white; font-family: var(--heading); font-size: .7rem; font-weight: 700; }
.process-list li.active > span { color: var(--navy-950); border-color: var(--teal-500); background: var(--teal-500); }
.process-list h3 { margin: 3px 0 6px; }
.process-list p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.media-main { position: relative; height: 340px; margin: 0; overflow: hidden; border-radius: 28px; background: var(--navy-900); box-shadow: var(--shadow); }
.media-main img { width: 100%; height: 100%; object-fit: cover; }
.media-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,18,46,.78), transparent 58%); }
.media-main figcaption { position: absolute; z-index: 1; left: 24px; bottom: 22px; display: flex; align-items: center; gap: 12px; color: white; font-family: var(--heading); font-size: .8rem; font-weight: 600; }
.play { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; padding-left: 2px; }
.media-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.media-thumbs div { height: 76px; border-radius: 14px; background: var(--navy-100); }
.thumb-one { background-image: linear-gradient(135deg, #b8d6da, #4a6a8b) !important; }
.thumb-two { background-image: linear-gradient(135deg, #dbe2ec, #7d9b88) !important; }
.thumb-three { background-image: linear-gradient(135deg, #91a8c5, #152d5a) !important; }

.services { position: relative; overflow: hidden; }
.services::after { content: "PX3"; position: absolute; right: -18px; top: 115px; color: rgba(13,36,86,.025); font-family: var(--heading); font-size: 13rem; font-weight: 800; pointer-events: none; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 36px rgba(14,41,83,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(14,41,83,.12); }
.service-card.featured { grid-column: span 2; color: white; border: 0; background: linear-gradient(120deg, var(--navy-900), var(--navy-800)); }
.service-card.featured h3, .service-card.featured a { color: white; }
.service-card.featured p { color: #c4d1e7; }
.service-icon { width: 42px; height: 42px; margin-bottom: 25px; display: grid; place-items: center; border-radius: 12px; color: var(--navy-900); background: var(--teal-100); font-size: 1.1rem; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card a, .text-link, .insight-card a { color: var(--navy-900); font-family: var(--heading); font-size: .76rem; font-weight: 700; }
.service-card a span, .text-link span, .insight-card a span { color: var(--teal-600); }

.clients { background: var(--surface); }
.rating { color: var(--muted); }
.rating strong { color: var(--ink); }
.rating > span { color: var(--teal-600); }
.rating small { margin-left: 14px; color: #96a0b2; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-card { position: relative; min-height: 300px; padding: 28px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; border-radius: 20px; color: white; background: var(--navy-900); isolation: isolate; }
.story-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 18%, rgba(85,200,183,.55), transparent 30%), linear-gradient(145deg, rgba(8,25,58,.05), rgba(5,18,45,.98)); }
.story-two::before { background: radial-gradient(circle at 50% 15%, rgba(218,151,123,.48), transparent 28%), linear-gradient(145deg, #174875, #081c45); }
.story-three::before { background: radial-gradient(circle at 80% 20%, rgba(130,181,163,.6), transparent 26%), linear-gradient(145deg, #132a5a, #071735); }
.story-kicker { margin-bottom: auto; color: #bcf5ec; font-family: var(--heading); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.story-card h3 { max-width: 85%; margin-bottom: 18px; color: white; font-size: 1.45rem; }
.story-card button { position: absolute; right: 24px; bottom: 57px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; background: rgba(255,255,255,.12); cursor: pointer; }
.story-card p { margin: 0; color: #cbd7e9; font-size: .78rem; }
.logo-band { margin-top: 72px; padding: 34px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; border-top: 1px solid var(--line); }
.logo-band span { color: #8b96a9; font-family: var(--heading); font-weight: 700; text-align: center; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role-card { position: relative; padding: 110px 24px 24px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 12px 35px rgba(10,35,78,.07); }
.role-avatar { position: absolute; top: -24px; left: 24px; width: 106px; height: 106px; display: grid; place-items: center; border: 7px solid white; border-radius: 50%; color: white; background: linear-gradient(140deg, #6584aa, var(--navy-900)); box-shadow: 0 10px 25px rgba(13,36,86,.15); font-family: var(--heading); font-weight: 800; }
.avatar-two { background: linear-gradient(140deg, #b3c1d3, #3f5b7f); }
.avatar-three { background: linear-gradient(140deg, #73c3b5, #214f62); }
.role-type { display: inline-block; margin-bottom: 8px; padding: 3px 9px; border-radius: 999px; color: #237f74; background: var(--teal-100); font-size: .66rem; font-weight: 700; }
.role-type.coral { color: #9d5d4e; background: #fff0eb; }
.role-type.blue { color: #3b5da7; background: #edf2ff; }
.role-card h3 { margin-bottom: 6px; }
.role-card > p { margin-bottom: 18px; color: var(--muted); font-size: .87rem; }
.role-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.role-meta span { padding: 7px 9px; border-radius: 7px; color: var(--muted); background: var(--surface); font-size: .72rem; }
.role-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.role-actions a { min-height: 40px; display: grid; place-items: center; border: 1px solid var(--navy-900); border-radius: 999px; font-family: var(--heading); font-size: .72rem; font-weight: 700; }
.role-actions .apply { color: #062843; border-color: var(--teal-500); background: var(--teal-500); }

.newsletter-wrap { padding-bottom: 48px; }
.newsletter { padding: 46px 54px; display: grid; grid-template-columns: 1fr .92fr; gap: 48px; align-items: center; border-radius: 26px; color: #d6e0ef; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow); }
.newsletter h2 { margin-bottom: 10px; color: white; font-size: clamp(1.7rem, 3vw, 2.55rem); }
.newsletter p { margin-bottom: 0; }
.newsletter-form { position: relative; display: flex; gap: 10px; }
.newsletter-form input { width: 100%; min-height: 52px; padding: 0 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: white; background: rgba(255,255,255,.09); }
.newsletter-form input::placeholder { color: #aab8d0; }
.form-note { position: absolute; top: calc(100% + 8px); left: 16px; color: #ccfff7; font-size: .78rem; }

.insights { background: linear-gradient(180deg, #fff, var(--surface)); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 12px 34px rgba(11,37,80,.07); }
.insight-art { height: 180px; padding: 20px; display: flex; align-items: end; color: white; background: linear-gradient(135deg, #bdd8d3, #23466f); }
.insight-art span { font-family: var(--heading); font-size: 2.8rem; font-weight: 800; opacity: .75; }
.art-rural { background: linear-gradient(135deg, #8ac7bb, #29466b 72%); }
.art-balance { background: linear-gradient(135deg, #d6bd94, #386b80); }
.insight-copy { padding: 26px; }
.insight-copy > span { display: block; margin-bottom: 12px; color: var(--teal-600); font-family: var(--heading); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insight-copy h3 { min-height: 3.8em; margin-bottom: 14px; }
.insight-copy p { color: var(--muted); font-size: .9rem; }

.contact-section { padding: 64px 0 82px; background: var(--surface); }
.contact-section .page-shell { width: min(1400px, calc(100% - 48px)); }
.contact-banner { position: relative; min-height: 350px; padding: 46px 51% 46px 54px; display: flex; align-items: center; overflow: hidden; border-radius: 30px; background: linear-gradient(118deg, var(--navy-900), #255a75 54%, var(--teal-500)); box-shadow: var(--shadow); }
.contact-banner::after { content: ""; position: absolute; width: 420px; height: 420px; right: 20%; top: -220px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.contact-copy { position: relative; z-index: 2; }
.contact-banner h2 { margin-bottom: 14px; color: white; font-size: clamp(2.2rem, 3.15vw, 3.35rem); }
.contact-banner h2 .headline-line { white-space: nowrap; }
.contact-banner p:not(.eyebrow) { max-width: 560px; margin-bottom: 22px; color: #d6e4eb; }
.contact-banner > img { position: absolute; z-index: 1; right: 0; bottom: 0; width: 49%; height: 104%; object-fit: contain; object-position: bottom right; }

.site-footer { position: relative; overflow: hidden; padding: 70px 0 26px; color: #b7c4d9; background: linear-gradient(135deg, #06142f, var(--navy-950) 58%, #0b244d); }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--teal-500), #8be1d5 32%, transparent 75%); }
.site-footer::after { content: "PX3"; position: absolute; right: -28px; bottom: -110px; color: rgba(255,255,255,.025); font-family: var(--heading); font-size: 17rem; font-weight: 800; line-height: 1; pointer-events: none; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.65fr .72fr .72fr 1.12fr; gap: clamp(32px, 4vw, 72px); align-items: start; }
.brand.inverse .brand-mark { color: white; }
.brand.inverse .brand-name { color: #94a6c1; }
.footer-brand .brand-mark { font-size: 1.7rem; }
.footer-statement { max-width: 440px; margin: 28px 0 12px; color: white; font-family: var(--heading); font-size: clamp(1.25rem, 1.8vw, 1.75rem); font-weight: 600; line-height: 1.35; letter-spacing: -.025em; }
.footer-description { max-width: 390px; margin-bottom: 0; color: #8fa2bf; font-size: .92rem; }
.site-footer h2 { margin-bottom: 24px; color: white; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer h2 > span { margin-right: 8px; color: var(--teal-500); font-size: .66rem; }
.footer-nav > a { position: relative; display: block; width: fit-content; margin-bottom: 12px; color: #aebbd0; font-size: .91rem; transition: color .2s ease, transform .2s ease; }
.footer-nav > a::after { content: "↗"; position: absolute; left: calc(100% + 7px); color: var(--teal-500); opacity: 0; transform: translate(-4px, 3px); transition: opacity .2s ease, transform .2s ease; }
.footer-nav > a:hover { color: white; transform: translateX(3px); }
.footer-nav > a:hover::after { opacity: 1; transform: translate(0, 0); }
.footer-contact { padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); backdrop-filter: blur(12px); }
.footer-contact h2 { margin-bottom: 16px; }
.footer-contact > a { display: block; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-contact > a:first-of-type { border-top: 0; }
.footer-contact > a span { display: block; margin-bottom: 2px; color: #7f93b1; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact > a strong { color: white; font-family: var(--heading); font-size: .88rem; font-weight: 600; }
.footer-bottom { position: relative; z-index: 1; margin-top: 52px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom a { color: white; font-family: var(--heading); font-weight: 600; }
.footer-bottom a span { margin-left: 6px; color: var(--teal-500); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card { transition: none; }
}

@media (max-width: 1180px) {
  .site-header { padding-top: 10px; }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; border-radius: 22px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; padding: 10px; cursor: pointer; }
  .site-nav { position: absolute; top: 86px; left: 18px; right: 18px; padding: 20px; display: none; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 7px 5px; font-size: .9rem; }
  .site-nav a::after { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: 0; padding-top: 76px; }
  .hero-grid, .difference-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 56px; }
  .hero-copy { max-width: 1020px; }
  .hero-visual { max-width: 670px; width: 100%; min-height: 550px; }
  .difference-grid { gap: 40px; }
  .media-showcase { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .story-grid, .role-grid, .insight-grid { grid-template-columns: 1fr 1fr; }
  .story-card:last-child, .role-card:last-child, .insight-card:last-child { grid-column: span 2; }
  .newsletter { grid-template-columns: 1fr; }
  .contact-banner { padding-right: 44%; }
  .contact-banner > img { width: 47%; }
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
  .footer-contact h2 { grid-column: span 2; }
}

@media (max-width: 700px) {
  .page-shell { width: min(100% - 28px, 1280px); }
  .section-pad { padding: 78px 0; }
  .nav-shell { width: calc(100% - 20px); min-height: 62px; padding-left: 18px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .hero { padding-top: 58px; }
  .hero .page-shell { width: min(100% - 28px, 1480px); }
  .hero h1 .headline-line, .contact-banner h2 .headline-line { display: inline; white-space: normal; }
  .hero-grid { gap: 42px; }
  .hero-lede { font-size: 1rem; }
  .proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
  .proof-strip div { min-width: 0; padding: 0 10px; }
  .proof-strip strong { font-size: .78rem; }
  .proof-strip span { font-size: .57rem; }
  .hero-visual { min-height: 420px; }
  .visual-frame { inset: 0 0 0 12px; border-radius: 100px 20px 100px 20px; }
  .search-card { left: 0; bottom: -22px; width: 210px; }
  .orbit-one { right: 0; }
  .split-heading { display: block; }
  .difference .split-heading { display: block; }
  .split-heading > p, .split-heading > a { margin-top: 22px; }
  .media-main { height: 300px; }
  .service-grid, .story-grid, .role-grid, .insight-grid { grid-template-columns: 1fr; }
  .service-card.featured, .story-card:last-child, .role-card:last-child, .insight-card:last-child { grid-column: auto; }
  .service-card { min-height: 235px; }
  .logo-band { grid-template-columns: repeat(2, 1fr); }
  .logo-band span:last-child { grid-column: span 2; }
  .role-grid { gap: 54px; padding-top: 22px; }
  .newsletter { padding: 38px 24px 48px; }
  .newsletter-form { display: grid; }
  .newsletter-form button { width: 100%; }
  .contact-section { padding: 48px 0 62px; }
  .contact-section .page-shell { width: min(100% - 28px, 1400px); }
  .contact-banner { min-height: 580px; padding: 40px 24px 280px; align-items: start; }
  .contact-banner > img { width: 100%; height: 270px; object-position: bottom center; }
  .contact-banner .button-row { display: grid; }
  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; display: block; }
  .footer-contact h2 { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .proof-strip { grid-template-columns: 1fr; gap: 12px; }
  .proof-strip div, .proof-strip div:first-child { padding: 0 0 0 14px; border-left: 2px solid var(--teal-500); }
  .hero-visual { min-height: 370px; }
  .button-row .button { width: 100%; }
}
