:root {
  --ink: #10182f;
  --ink-2: #1b2948;
  --paper: #f5f0e8;
  --white: #fffdfa;
  --red: #d84a43;
  --red-dark: #b93632;
  --yellow: #efb22d;
  --blue: #7888ff;
  --line: rgba(16, 24, 47, .16);
  --muted: #5e6474;
  --shadow: 0 28px 70px rgba(16, 24, 47, .16);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.15rem, 6.4vw, 6.55rem); }
h2 { font-size: clamp(2.4rem, 4.9vw, 4.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 11vw, 150px); }
.section-tight { padding-block: 34px; }
.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: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--red-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ffc4be; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-block: 16px;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding-block: 10px;
  background: rgba(16, 24, 47, .96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(15px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #f4b5ab;
  border-radius: 13px 4px 13px 4px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-4deg);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 1.1rem; letter-spacing: .12em; }
.brand-copy small { margin-top: 6px; color: #f4b5ab; font-size: .66rem; letter-spacing: .06em; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.main-nav a { font-size: .78rem; font-weight: 700; text-decoration: none; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: #f4b5ab;
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 11px 17px; color: var(--ink); background: var(--white); border-radius: 999px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 6% 16%, rgba(120, 136, 255, .24), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(216, 74, 67, .27), transparent 32%),
    var(--ink);
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 820px;
  padding-top: 122px;
  padding-bottom: 64px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(44px, 7vw, 90px);
}
.hero-copy { max-width: 740px; }
.hero-copy h1 { max-width: 750px; margin-bottom: 30px; }
.hero-copy h1::first-line { color: #fff; }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #ced3e1; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 14px 30px rgba(216, 74, 67, .3); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 18px 36px rgba(216, 74, 67, .38); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-checks { display: flex; margin: 30px 0 0; padding: 0; flex-wrap: wrap; gap: 10px 22px; list-style: none; color: #dce0e9; font-size: .77rem; }
.hero-checks li::before { margin-right: 7px; color: var(--yellow); content: "✓"; font-weight: 900; }
.hero-media { position: relative; align-self: stretch; min-height: 620px; }
.hero-photo {
  position: absolute;
  inset: 0 0 0 28px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 42% 42% 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
}
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,24,47,.34), transparent 44%); content: ""; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16,24,47,.1);
  box-shadow: var(--shadow);
  border-radius: 18px;
}
.hero-badge-top { top: 17%; left: -16px; flex-direction: column; transform: rotate(-3deg); }
.hero-badge-top strong { color: var(--red-dark); font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.hero-badge-top span { margin-top: 5px; font-size: .68rem; font-weight: 700; }
.hero-badge-bottom { right: -24px; bottom: 8%; align-items: center; gap: 11px; transform: rotate(2deg); }
.badge-dot { width: 10px; height: 10px; background: #39a86b; border-radius: 50%; box-shadow: 0 0 0 6px rgba(57,168,107,.12); }
.hero-badge-bottom span:last-child { display: grid; }
.hero-badge-bottom strong { font-size: .86rem; }
.hero-badge-bottom small { color: var(--muted); font-size: .64rem; }
.hero-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 16px;
  color: var(--ink);
  background: var(--yellow);
  white-space: nowrap;
}
.hero-marquee div { width: max-content; margin-inline: auto; font-family: var(--display); font-size: .8rem; font-weight: 900; letter-spacing: .18em; }
.hero-marquee span { margin-inline: 18px; }

.proof { color: var(--white); background: #18233e; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: grid; min-height: 110px; padding: 12px 26px; align-content: center; border-left: 1px solid rgba(255,255,255,.14); }
.proof-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.proof-grid strong { margin-bottom: 10px; color: #f4b5ab; font-size: .7rem; letter-spacing: .15em; }
.proof-grid span { margin-bottom: 4px; font-family: var(--display); font-size: 1.05rem; font-weight: 800; line-height: 1.1; }
.proof-grid small { color: #aeb5c5; font-size: .68rem; line-height: 1.45; }

.section-heading { margin-bottom: clamp(44px, 7vw, 74px); }
.split-heading { display: grid; align-items: end; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 7vw, 100px); }
.split-heading h2 { max-width: 780px; margin-bottom: 0; }
.split-heading > p { margin-bottom: 6px; color: var(--muted); font-size: 1.05rem; }
.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-card {
  position: relative;
  display: flex;
  min-height: 355px;
  padding: 28px;
  flex-direction: column;
  background: rgba(255,255,255,.18);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}
.audience-card:hover { z-index: 2; background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow); }
.audience-card.card-featured { color: var(--white); background: var(--red); }
.card-number { margin-bottom: auto; color: var(--red-dark); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.card-featured .card-number { color: #ffc8c1; }
.audience-card h3 { margin: 50px 0 16px; }
.audience-card > p:not(.card-number) { color: var(--muted); font-size: .86rem; }
.card-featured > p:not(.card-number) { color: #ffe6e3; }
.audience-card a { display: flex; margin-top: 20px; align-items: center; justify-content: space-between; border-top: 1px solid currentColor; padding-top: 13px; font-size: .74rem; font-weight: 800; text-decoration: none; }

.showcase { color: var(--white); background: var(--ink); }
.showcase-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.showcase-collage { position: relative; min-height: 700px; }
.showcase-collage figure { margin: 0; overflow: hidden; }
.showcase-main { position: absolute; inset: 0 24% 0 0; border-radius: 180px 180px 18px 18px; }
.showcase-main img, .showcase-small img { width: 100%; height: 100%; object-fit: cover; }
.showcase-small { position: absolute; right: 0; bottom: 40px; width: 40%; height: 42%; border: 8px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow); }
.image-note { position: absolute; right: 3%; top: 7%; color: #f4b5ab; font-family: var(--display); font-size: clamp(1.2rem,2vw,1.9rem); font-weight: 800; line-height: 1.04; transform: rotate(5deg); }
.showcase-copy h2 { max-width: 620px; margin-bottom: 28px; }
.showcase-copy > p:not(.eyebrow) { color: #b9c0d0; font-size: 1.03rem; }
.model-list { margin-block: 38px; border-top: 1px solid rgba(255,255,255,.18); }
.model-list > div { display: grid; padding: 18px 0; grid-template-columns: 55px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.model-list span { color: #f4b5ab; font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.model-list p { margin: 0; color: #aeb5c5; font-size: .8rem; }
.model-list strong { display: block; margin-bottom: 4px; color: var(--white); font-family: var(--display); font-size: 1.1rem; }
.text-link { display: inline-flex; padding-bottom: 7px; gap: 12px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 800; text-decoration: none; }

.pricing { background: #ebe4da; }
.centered-heading { max-width: 830px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading h2 { margin-bottom: 24px; }
.centered-heading > p:not(.eyebrow) { max-width: 680px; margin-inline: auto; color: var(--muted); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 490px; padding: 34px; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.price-featured { color: var(--white); background: var(--ink); transform: translateY(-18px); box-shadow: var(--shadow); }
.popular { position: absolute; top: 0; right: 28px; padding: 8px 14px; color: var(--ink); background: var(--yellow); border-radius: 0 0 10px 10px; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.price-top { display: flex; margin-bottom: 60px; align-items: center; justify-content: space-between; gap: 16px; }
.price-top p { margin: 0; color: var(--red-dark); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.price-featured .price-top p { color: #f4b5ab; }
.price-top span { color: var(--muted); font-size: .67rem; }
.price-featured .price-top span { color: #aeb5c5; }
.price { display: flex; margin-bottom: 38px; align-items: baseline; gap: 5px; }
.price small { align-self: flex-start; color: var(--muted); font-size: .68rem; }
.price-featured .price small { color: #aeb5c5; }
.price strong { font-family: var(--display); font-size: clamp(2.7rem,4vw,4rem); line-height: 1; letter-spacing: -.055em; }
.price > span { font-size: .72rem; }
.price-card ul { margin: 0 0 34px; padding: 0; list-style: none; color: var(--muted); font-size: .8rem; }
.price-featured ul { color: #cbd0dc; }
.price-card li { padding-block: 10px; border-bottom: 1px solid var(--line); }
.price-featured li { border-color: rgba(255,255,255,.14); }
.price-card li::before { margin-right: 8px; color: var(--red); content: "✓"; font-weight: 900; }
.price-card a { margin-top: auto; padding: 14px 18px; color: var(--white); background: var(--red); border-radius: 999px; font-size: .76rem; font-weight: 800; text-align: center; text-decoration: none; }
.price-featured a { color: var(--ink); background: var(--white); }
.price-note { max-width: 780px; margin: 20px auto 0; color: var(--muted); font-size: .69rem; text-align: center; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: clamp(60px,9vw,130px); }
.process-copy h2 { max-width: 700px; margin-bottom: 25px; }
.process-copy > p:not(.eyebrow) { max-width: 670px; color: var(--muted); }
.steps { margin: 40px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; padding-block: 19px; grid-template-columns: 54px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--red-dark); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.steps strong { font-family: var(--display); font-size: 1rem; }
.steps p { margin: 4px 0 0; color: var(--muted); font-size: .76rem; }
.process-media { position: relative; margin: 0; overflow: hidden; border-radius: 180px 180px 20px 20px; box-shadow: var(--shadow); }
.process-media img { width: 100%; aspect-ratio: .78; object-fit: cover; }
.process-media figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; padding: 18px; color: var(--white); background: rgba(16,24,47,.9); border-radius: 14px; }
.process-media figcaption strong { font-family: var(--display); }
.process-media figcaption span { color: #c2c7d3; font-size: .68rem; }

.techniques { color: var(--white); background: #1a2743; }
.techniques .split-heading > p { color: #b9c0d0; }
.tech-table { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.tech-table article { display: flex; min-height: 330px; padding: 28px; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.tech-table article > span { margin-bottom: auto; color: #f4b5ab; font-size: .65rem; font-weight: 900; }
.tech-table h3 { margin: 60px 0 14px; font-size: 1.45rem; }
.tech-table p { color: #b7bece; font-size: .8rem; }
.tech-table small { margin-top: auto; padding-top: 16px; color: var(--yellow); border-top: 1px solid rgba(255,255,255,.16); font-size: .65rem; font-weight: 900; text-transform: uppercase; }

.local { background: var(--paper); }
.local-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px,8vw,110px); }
.local-copy { position: sticky; top: 120px; align-self: start; }
.local-copy h2 { margin-bottom: 26px; }
.local-copy > p:not(.eyebrow, .national-note) { color: var(--muted); }
.local-highlight { display: grid; margin-top: 34px; padding: 20px; gap: 5px; background: var(--yellow); border-radius: 16px; transform: rotate(-1deg); }
.local-highlight strong { font-family: var(--display); font-size: 1.05rem; }
.local-highlight span { font-size: .72rem; }
.national-note { margin-top: 25px; color: var(--muted); font-size: .72rem; }
.places { border-top: 1px solid var(--line); }
.places a { display: grid; padding: 22px 8px; align-items: center; grid-template-columns: 58px 1fr; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.35rem,2.3vw,2.2rem); font-weight: 850; line-height: 1; letter-spacing: -.03em; text-decoration: none; transition: padding .2s ease, color .2s ease; }
.places a:hover { padding-left: 18px; color: var(--red-dark); }
.places span { color: var(--red-dark); font-family: var(--sans); font-size: .64rem; letter-spacing: .1em; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,8vw,110px); }
.faq-intro h2 { margin-bottom: 25px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-intro .text-link { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; padding: 24px 0; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--display); font-size: clamp(1.05rem,1.8vw,1.35rem); font-weight: 800; line-height: 1.15; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 30px; height: 30px; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--red); border-radius: 50%; font-family: var(--sans); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 750px; padding: 0 52px 25px 0; color: var(--muted); font-size: .86rem; }

.final-cta { overflow: hidden; padding-block: clamp(80px,9vw,120px); color: var(--white); background: var(--red-dark); }
.cta-grid { display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: clamp(50px,8vw,100px); }
.cta-grid h2 { margin-bottom: 26px; }
.cta-grid > div > p:not(.eyebrow) { max-width: 680px; color: #ffe0dc; }
.button-light { color: var(--ink); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.5); }
.cta-grid figure { position: relative; margin: 0; overflow: hidden; border: 10px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(89,16,14,.3); transform: rotate(3deg); }
.cta-grid figure::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.4); content: ""; }
.cta-grid figure img { width: 100%; min-height: 360px; object-fit: cover; }

.site-footer { padding: 70px 0 28px; color: #c5cad5; background: #0c1325; }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 45px; }
.brand-light { margin-bottom: 22px; color: var(--white); }
.footer-brand > p { max-width: 330px; color: #919aad; font-size: .76rem; }
.footer-main h2 { margin-bottom: 18px; color: var(--white); font-family: var(--sans); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main a { margin-bottom: 9px; color: #b7becc; font-size: .73rem; text-decoration: none; }
.footer-main a:hover { color: var(--white); }
.footer-main > div > p { color: #919aad; font-size: .7rem; }
.footer-bottom { display: flex; margin-top: 55px; padding-top: 22px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #717b90; font-size: .64rem; }
.footer-bottom p { margin: 0; }
.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .7rem; }
  .hero-grid { grid-template-columns: 1fr .7fr; gap: 42px; }
  .hero-media { min-height: 570px; }
  .audience-grid, .tech-table { grid-template-columns: repeat(2, 1fr); }
  .showcase-collage { min-height: 610px; }
  .footer-main { grid-template-columns: 1.25fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 690px); }
  .section { padding-block: 85px; }
  .site-header { background: rgba(16,24,47,.94); }
  .menu-toggle { position: relative; z-index: 102; display: grid; width: 44px; height: 44px; padding: 10px; place-content: center; gap: 5px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 101; inset: 0; display: flex; padding: 105px 28px 50px; align-items: stretch; flex-direction: column; gap: 0; background: var(--ink); transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-size: 1.45rem; }
  .main-nav .nav-cta { margin-top: 22px; padding: 16px 20px; border: 0; font-family: var(--sans); font-size: .9rem; text-align: center; }
  body.menu-open { overflow: hidden; }
  .hero-grid { min-height: auto; padding-top: 130px; padding-bottom: 72px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-media { min-height: 620px; }
  .hero-photo { right: 0; left: 0; max-width: 520px; margin-inline: auto; }
  .hero-badge-top { left: 5%; }
  .hero-badge-bottom { right: 4%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.14); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .showcase-grid, .process-grid, .local-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; }
  .showcase-collage { max-width: 630px; width: 100%; margin-inline: auto; }
  .showcase-copy { max-width: 630px; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { min-height: 430px; }
  .price-featured { transform: none; }
  .process-media { max-width: 520px; width: 100%; margin-inline: auto; }
  .local-copy { position: static; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); --radius: 18px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .section { padding-block: 72px; }
  .brand-copy small { display: none; }
  .site-header, .site-header.scrolled { padding-block: 9px; }
  .hero-grid { padding-top: 106px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-checks { display: grid; }
  .hero-media { min-height: 500px; }
  .hero-photo { inset: 0 10px; border-radius: 44% 44% 20px 20px; }
  .hero-badge { padding: 13px 15px; }
  .hero-badge-top { top: 12%; left: 0; }
  .hero-badge-bottom { right: 0; bottom: 5%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 96px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .audience-grid, .tech-table { grid-template-columns: 1fr; }
  .audience-card { min-height: 310px; }
  .showcase-collage { min-height: 500px; }
  .showcase-main { right: 15%; }
  .showcase-small { width: 44%; }
  .image-note { display: none; }
  .price-card { min-height: 420px; padding: 27px; }
  .price-top { margin-bottom: 40px; }
  .process-copy .button { width: 100%; }
  .tech-table article { min-height: 290px; }
  .places a { grid-template-columns: 42px 1fr; font-size: 1.45rem; }
  .cta-grid figure { transform: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding-bottom: 72px; flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 90; right: 10px; bottom: 10px; left: 10px; display: block; }
  .mobile-cta a { display: block; padding: 15px 20px; color: var(--white); background: var(--red); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; box-shadow: 0 14px 36px rgba(16,24,47,.3); font-size: .84rem; font-weight: 900; text-align: center; text-decoration: none; }
}

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

@media print {
  .site-header, .mobile-cta, .hero-marquee { display: none; }
  .hero { color: var(--ink); background: #fff; }
  .hero-grid { min-height: auto; padding-top: 20px; }
  .hero-lead, .hero-checks { color: var(--ink); }
  .section { padding-block: 35px; }
}
