/* Anyone For Bridge, site v2. Tokens (colours, fonts) live in tokens.css, shared with the flyer.
   Structure borrowed from Max's PinnacleSM build: fixed nav that settles on scroll, full-height hero,
   eyebrow + display type, reveal-on-scroll, generous section rhythm, dark bands, editorial footer. */

:root {
  --ink-soft: #3d3b35;
  --line: rgba(31, 90, 60, 0.18);
  --line-strong: rgba(31, 90, 60, 0.38);
  --gold-line: rgba(227, 197, 101, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
  --fs-xl: clamp(2.7rem, 6.2vw, 5rem);
  --fs-lg: clamp(2.1rem, 4.2vw, 3.4rem);
  --fs-md: clamp(1.55rem, 2.5vw, 2.1rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p a { text-decoration: underline; text-underline-offset: 0.18em; text-decoration-color: var(--line-strong); }
p a:hover { text-decoration-color: var(--baize); }
::selection { background: var(--baize); color: var(--cream); }
:focus-visible { outline: 3px solid var(--baize); outline-offset: 4px; }

.skip { position: absolute; left: -999px; top: 0; background: var(--baize-deep); color: var(--cream); padding: .75rem 1rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }

.wrap { width: min(1180px, 90vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 90vw); margin-inline: auto; }
.section-pad { padding-block: clamp(5rem, 10vw, 8.5rem); }

/* ---------- type ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; line-height: 1.08; color: var(--baize-deep); letter-spacing: -0.005em; }
.display-xl { font-size: var(--fs-xl); line-height: 1.04; }
.display-lg { font-size: var(--fs-lg); }
.display-md { font-size: var(--fs-md); line-height: 1.2; }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.32rem); line-height: 1.6; color: var(--ink-soft); max-width: 36em; }
p { max-width: 62ch; color: var(--ink-soft); }
p + p { margin-top: 1rem; }
p.eyebrow, p.hero-meta, p.footer-tag, p.cta-date, .footer p, p.footer-name, .hero-ctas + p { max-width: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--baize); margin-bottom: 1.5rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--line-strong); }
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { background: var(--gold-line); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: var(--line-strong); }
.fine { font-size: 0.92rem; color: #6a675f; }
.on-dark { color: var(--cream); }
.on-dark h2, .on-dark h3 { color: var(--cream); }
.on-dark p, .on-dark .lede { color: rgba(246, 241, 231, 0.82); }
.on-dark .fine { color: rgba(246, 241, 231, 0.62); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; min-height: 52px; border-radius: 4px; border: 1.5px solid var(--baize-deep);
  background: var(--baize-deep); color: var(--cream); cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { background: var(--baize); border-color: var(--baize); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--baize-deep); }
.btn--ghost:hover { background: var(--baize-deep); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--baize-deep); border-color: var(--cream); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--baize-deep); transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(246, 241, 231, 0.6); }
.btn--outline-light:hover { background: var(--cream); color: var(--baize-deep); border-color: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; color: var(--baize); border-bottom: 1px solid var(--line-strong); padding-bottom: 0.3rem; }
.text-link .arrow { transition: transform 0.4s var(--ease); }
.text-link:hover .arrow { transform: translateX(5px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; color: var(--cream);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.5s var(--ease), height 0.5s var(--ease);
}
.nav.scrolled, body.subpage .nav {
  background: rgba(246, 241, 231, 0.94); color: var(--baize-deep); height: 70px;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { width: min(1320px, 94vw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.005em; white-space: nowrap; }
.nav-brand .pip { width: 12px; height: 12px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); flex: none; }
.nav-links { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.3rem); list-style: none; }
.nav-links a:not(.btn) { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; position: relative; padding-bottom: 5px; opacity: 0.92; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 0.75rem 1.4rem; min-height: 44px; font-size: 0.72rem; }
.nav:not(.scrolled):not(.sub) .nav-links .btn { background: var(--cream); color: var(--baize-deep); border-color: var(--cream); }
.nav:not(.scrolled):not(.sub) .nav-links .btn:hover { background: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; position: relative; z-index: 130; color: inherit; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px auto; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle.open { color: var(--baize-deep); }
.nav.menu-open { color: var(--baize-deep); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.9rem; color: var(--baize-deep); }
.mobile-menu a.btn { font-family: var(--font-body); font-size: 0.82rem; margin-top: 1rem; color: var(--cream); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 5rem; color: var(--cream); isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 60%; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92) 0%, rgba(18, 56, 42, 0.78) 42%, rgba(18, 56, 42, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 56, 42, 0.35) 0%, rgba(18, 56, 42, 0) 35%, rgba(18, 56, 42, 0.55) 100%);
}
.hero .wrap { position: relative; }
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero .lede { color: rgba(246, 241, 231, 0.88); margin-top: 1.6rem; max-width: 30em; }
.hero-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { margin-top: 3.2rem; display: flex; gap: 2.4rem; flex-wrap: wrap; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(246, 241, 231, 0.75); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.7rem; }
.hero-meta i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); width: 1px; height: 54px; background: linear-gradient(180deg, rgba(246,241,231,0) 0%, rgba(246,241,231,0.8) 100%); }
.scroll-cue::after { content: ""; position: absolute; left: -3px; bottom: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-40px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(0); opacity: 0; } }

.hero-enter { opacity: 0; transform: translateY(22px); animation: heroIn 1.1s var(--ease) forwards; }
.he-1 { animation-delay: 0.15s; } .he-2 { animation-delay: 0.35s; } .he-3 { animation-delay: 0.55s; } .he-4 { animation-delay: 0.75s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; } .reveal-d2 { transition-delay: 0.24s; } .reveal-d3 { transition-delay: 0.36s; }

/* ---------- "for everyone": two photos + statement ---------- */
.everyone-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.everyone-copy .display-lg { max-width: 13ch; }
.everyone-copy .lede { margin-top: 1.6rem; }
.everyone-copy .text-link { margin-top: 2rem; }
.duo { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: end; }
.duo figure { margin: 0; overflow: hidden; border-radius: 6px; background: var(--baize-deep); }
.duo figure picture, .band-grid figure picture { display: block; width: 100%; height: 100%; }
.duo figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.duo figure:hover img { transform: scale(1.03); }
.duo .tall { aspect-ratio: 3 / 4; }
.duo .short { aspect-ratio: 4 / 5; margin-bottom: 2.6rem; }
.duo figcaption { position: absolute; left: 0; bottom: 0; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--baize); }

/* ---------- four stars ---------- */
.stars-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.stars-head .lede { justify-self: end; }
.star-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.star-grid li { border-top: 1px solid var(--line-strong); padding-top: 1.6rem; }
.star-grid .num { display: flex; align-items: center; gap: 0.8rem; font-size: 0.78rem; letter-spacing: 0.26em; font-weight: 700; color: var(--baize); margin-bottom: 1.1rem; }
.star-grid .star { width: 22px; height: 22px; background: var(--baize); flex: none;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.6l3.1 6.6 7.2.9-5.3 5 1.4 7.2L12 17.8l-6.4 3.5 1.4-7.2-5.3-5 7.2-.9z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.6l3.1 6.6 7.2.9-5.3 5 1.4 7.2L12 17.8l-6.4 3.5 1.4-7.2-5.3-5 7.2-.9z'/></svg>") center/contain no-repeat; }
.star-grid h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.star-grid p { font-size: 1.02rem; }
.stars .fine { margin-top: 2.4rem; }

/* ---------- how we teach ---------- */
.method { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.method-grid .display-lg { max-width: 12ch; }
.quote { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.35; color: var(--baize-deep); margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--gold); max-width: 24em; }
.quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--baize); margin-top: 0.9rem; }
.steps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 2.6rem; counter-reset: step; }
.steps li { border-top: 1px solid var(--line-strong); padding-top: 1.3rem; }
.steps .n { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--baize); }
.steps h3 { font-size: 1.45rem; margin: 0.8rem 0 0.5rem; }
.steps p { font-size: 1.02rem; }

/* ---------- course band ---------- */
.band { background: var(--baize-deep); color: var(--cream); position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(31, 90, 60, 0.9) 0%, rgba(18, 56, 42, 0) 55%); }
.band .wrap { position: relative; }
.band-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.band-grid figure { margin: 0; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.band-grid figure img { width: 100%; height: 100%; object-fit: cover; }
.band h2 { color: var(--cream); }
.band .lede { margin-top: 1.4rem; }
.facts { list-style: none; margin-top: 2.2rem; border-top: 1px solid rgba(246,241,231,0.18); }
.facts li { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid rgba(246,241,231,0.18); font-size: 1.05rem; }
.facts dt, .facts .k { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--gold); padding-top: 0.25rem; }
.facts .v { color: var(--cream); }
.facts .soon { color: rgba(246,241,231,0.7); font-style: italic; }
.band .btn { margin-top: 2.2rem; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.portrait { aspect-ratio: 4 / 5; border-radius: 6px; background: linear-gradient(160deg, var(--baize) 0%, var(--baize-deep) 100%); display: grid; place-items: center; color: var(--cream); text-align: center; padding: 2rem; position: relative; overflow: hidden; }
.portrait::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(246,241,231,0.25); border-radius: 4px; }
.portrait .initial { font-family: var(--font-display); font-size: clamp(5rem, 12vw, 9rem); line-height: 1; color: var(--cream); }
.portrait .cap { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-top: 0.8rem; }
.about-copy .display-lg { max-width: 20ch; }
.about-copy .lede { margin-top: 1.5rem; }

/* ---------- open morning cta ---------- */
.cta { text-align: center; }
.cta .display-xl { max-width: 14ch; margin-inline: auto; font-size: clamp(2.4rem, 5vw, 4.2rem); }
.cta .lede { margin: 1.5rem auto 0; }
.cta .btn { margin-top: 2.4rem; }
.cta-date { margin-top: 2.6rem; display: inline-flex; align-items: center; gap: 1.2rem; font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--baize); }
.cta-date::before, .cta-date::after { content: ""; width: 46px; height: 1px; background: var(--line-strong); }

/* ---------- footer ---------- */
.footer { background: var(--baize-deep); color: rgba(246,241,231,0.7); padding: 4.5rem 0 calc(2.4rem + env(safe-area-inset-bottom)); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-name { font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); display: flex; align-items: center; gap: 0.7rem; }
.footer-name .pip { width: 11px; height: 11px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); }
.footer-tag { margin-top: 0.8rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.footer h4 { font-size: 0.76rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.footer p, .footer li { color: rgba(246,241,231,0.72); font-size: 1rem; }
.footer ul { list-style: none; }
.footer li + li { margin-top: 0.5rem; }
.footer a:hover { color: var(--cream); }
.footer-fine { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(246,241,231,0.12); font-size: 0.8rem; letter-spacing: 0.04em; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- contact page ---------- */
.page-main { padding-top: 70px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-info .display-lg { max-width: none; font-size: clamp(2rem, 3.6vw, 3rem); }
.contact-info .lede { margin-top: 1.4rem; }
.contact-rows { margin-top: 2.6rem; border-top: 1px solid var(--line-strong); }
.contact-row { display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.contact-row .k { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--baize); padding-top: 0.3rem; }
.contact-row .v { color: var(--ink-soft); }
.contact-row a { color: var(--baize-deep); text-decoration: underline; text-underline-offset: 0.18em; text-decoration-color: var(--line-strong); }

.form { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.6rem, 3vw, 2.6rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; border: 0; padding: 0; min-width: 0; }
label, legend { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.45rem; color: var(--baize-deep); }
.opt { font-weight: 400; color: #6a675f; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; font: inherit; font-size: 1.05rem; padding: 0.85rem 0.95rem; min-height: 52px;
  border: 1.5px solid #c9c2b1; border-radius: 6px; background: #fff; color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--baize); box-shadow: 0 0 0 3px rgba(31, 90, 60, 0.15); outline: none; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
.choice { display: flex; align-items: center; gap: 0.65rem; font-weight: 400; font-size: 1rem; color: var(--ink-soft); padding: 0.55rem 0.8rem; border: 1.5px solid #ddd6c5; border-radius: 6px; background: #fff; cursor: pointer; margin: 0; }
.choice:has(input:checked) { border-color: var(--baize); background: rgba(31, 90, 60, 0.06); color: var(--baize-deep); }
.choice input, .consent input { width: 20px; height: 20px; accent-color: var(--baize); flex: none; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 400; font-size: 0.98rem; color: var(--ink-soft); margin: 0.4rem 0 1.4rem; }
.consent input { margin-top: 0.25rem; }
.form .btn { width: 100%; }
.form-status { margin-top: 1rem; font-size: 0.98rem; color: var(--baize-deep); min-height: 1.5em; }
.form-status.error { color: var(--suit-red); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .star-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .everyone-grid, .method-grid, .band-grid, .about-grid, .contact-grid, .stars-head { grid-template-columns: 1fr; }
  .stars-head .lede { justify-self: start; }
  .everyone-copy .display-lg, .method-grid .display-lg, .about-copy .display-lg, .contact-info .display-lg { max-width: none; }
  .band-grid figure { order: -1; }
  .about-grid .portrait { max-width: 360px; }
  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero-bg img { object-position: 70% 65%; }
}
@media (max-width: 600px) {
  .wrap { width: min(1180px, 88vw); }
  .star-grid, .steps, .form-row, .choices, .footer-grid { grid-template-columns: 1fr; }
  .duo .short { margin-bottom: 1.6rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { gap: 1rem 1.6rem; }
  .facts li, .contact-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .scroll-cue { display: none; }
  .cta-date::before, .cta-date::after { display: none; }
  .footer-fine { flex-direction: column; }
  .eyebrow { font-size: 0.74rem; letter-spacing: 0.22em; }
  .cta-date { font-size: 0.76rem; letter-spacing: 0.18em; }
  .footer-tag { font-size: 0.7rem; letter-spacing: 0.16em; }
}

/* ---------- motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .scroll-cue::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
