:root {
  --navy: #071c36;
  --navy-2: #0b294d;
  --blue: #1464d2;
  --blue-bright: #2083ee;
  --blue-pale: #dcecff;
  --red: #d83a35;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --ink: #10233b;
  --muted: #647184;
  --line: #d9e0e7;
  --white: #fff;
  --shadow: 0 24px 70px rgb(7 28 54 / 14%);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3rem, 6.4vw, 5.75rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.25rem); }
h3 { font-size: 1.65rem; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(82px, 10vw, 140px) 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.notice-bar {
  color: #eef6ff;
  background: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.notice-inner a { text-decoration: none; }
.notice-inner a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 253 248 / 94%);
  border-bottom: 1px solid rgb(7 28 54 / 9%);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 1 380px; text-decoration: none; }
.brand img { width: min(380px, 100%); height: auto; }
nav { display: flex; align-items: center; gap: 28px; font-size: 0.93rem; font-weight: 700; }
nav a { text-decoration: none; }
nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(88px, 9vw, 126px);
  background:
    radial-gradient(circle at 10% 10%, rgb(32 131 238 / 10%), transparent 28%),
    linear-gradient(135deg, var(--paper) 0 61%, #edf5ff 61% 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  bottom: -330px;
  border: 90px solid rgb(20 100 210 / 8%);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(50px, 7vw, 96px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow-light { color: #8fc4ff; }
.l-chip {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgb(7 28 54 / 12%);
  font-size: 0.83rem;
  letter-spacing: 0;
  transform: rotate(-2deg);
}
.hero h1 { max-width: 720px; margin-bottom: 26px; }
.hero h1 em { color: var(--blue); font-weight: inherit; }
.hero-lede { max-width: 650px; color: #506075; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 57px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 26px rgb(20 100 210 / 24%); }
.button-primary span { font-size: 0.82rem; opacity: 0.82; }
.button-primary strong { font-size: 1rem; }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--navy); background: transparent; border: 1px solid #b9c7d8; }
.button-secondary:hover { background: var(--white); box-shadow: 0 10px 28px rgb(7 28 54 / 10%); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; padding: 0; list-style: none; color: #4d5d70; font-size: 0.92rem; font-weight: 700; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--blue); font-weight: 900; }

.hero-visual { position: relative; min-width: 0; }
.hero-photo { margin: 0; overflow: hidden; aspect-ratio: 0.92; background: var(--blue-pale); border: 10px solid var(--white); border-radius: 44% 44% 24px 24px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  min-width: 180px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--navy);
  border: 5px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 36px rgb(7 28 54 / 24%);
  transform: rotate(-2deg);
}
.hero-card span { display: block; color: #b5cee8; font-size: 0.76rem; font-weight: 750; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-card strong { display: block; margin: 2px 0; font-family: Georgia, serif; font-size: 2.3rem; line-height: 1; }
.blue-roundel {
  position: absolute;
  top: -28px;
  left: -28px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--white);
  background: var(--blue);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgb(7 28 54 / 18%);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.proof-strip { color: var(--white); background: var(--blue); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-right: 1px solid rgb(255 255 255 / 18%); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { font-family: Georgia, serif; font-size: 1.45rem; }
.proof-grid span { color: #cce2ff; font-size: 0.82rem; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.portrait-wrap { position: relative; padding: 0 0 58px 26px; }
.portrait-wrap::before { content: ""; position: absolute; inset: 34px 42px 34px 0; border: 2px solid var(--blue); border-radius: 190px 190px 24px 24px; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 0.76; background: #e5edf7; border-radius: 190px 190px 24px 24px; box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-note { position: absolute; right: -28px; bottom: 0; display: flex; align-items: center; gap: 18px; padding: 16px 20px; color: var(--white); background: var(--navy); border-radius: 14px; box-shadow: 0 18px 38px rgb(7 28 54 / 20%); font-size: 0.76rem; line-height: 1.35; }
.signature { color: #8dc6ff; font-family: "Brush Script MT", cursive; font-size: 2.1rem; line-height: 1; transform: rotate(-5deg); }
.section-copy h2 { max-width: 770px; margin-bottom: 28px; }
.section-copy > p:not(.eyebrow) { color: #59687a; }
.large-copy { color: var(--ink) !important; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.quote-card { margin-top: 34px; padding: 26px 30px; background: var(--paper); border-left: 4px solid var(--blue); border-radius: 0 16px 16px 0; box-shadow: 0 14px 36px rgb(7 28 54 / 7%); }
.quote-card p { margin-bottom: 8px; color: var(--navy); font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.45; }
.quote-card span { color: var(--blue); font-size: 0.82rem; font-weight: 800; }

.lessons { color: #e8f2ff; background: var(--navy); }
.heading-split { display: grid; grid-template-columns: 1fr 0.55fr; gap: 50px; align-items: end; margin-bottom: 52px; }
.heading-split h2 { margin-bottom: 0; color: var(--white); }
.heading-split > p { max-width: 470px; margin: 0 0 8px; color: #a9bfd7; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.price-card { position: relative; padding: clamp(32px, 4vw, 48px); color: var(--ink); background: var(--paper); border-radius: var(--radius); }
.price-card > p { margin-bottom: 20px; color: var(--blue); font-size: 0.82rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.price { color: var(--navy); font-family: Georgia, serif; font-size: clamp(3.6rem, 7vw, 5.4rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.06em; }
.price span { margin-right: 2px; font-size: 0.48em; vertical-align: top; }
.price-unit { display: block; margin: 10px 0 28px; color: var(--muted); }
.price-card ul { min-height: 115px; margin: 0 0 30px; padding: 0; list-style: none; }
.price-card li { margin: 8px 0; color: #4f5f72; }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--blue); font-weight: 900; }
.price-card a { color: var(--blue); font-weight: 850; text-decoration: none; }
.price-card a:hover { text-decoration: underline; }
.price-card-featured { background: #e7f2ff; }
.save-badge { position: absolute; top: 24px; right: 24px; padding: 6px 11px; color: var(--white); background: var(--red); border-radius: 99px; font-size: 0.74rem; font-weight: 850; }
.car-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1.12fr 0.88fr; overflow: hidden; color: var(--white); background: #0e345f; border-radius: var(--radius); }
.car-card img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; object-position: 55% center; }
.car-card > div { align-self: center; padding: clamp(34px, 5vw, 68px); }
.car-card h3 { margin-bottom: 16px; color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); }
.car-card p:last-child { color: #bed4ec; }

.journey { background: #eaf3fe; }
.centre-heading { max-width: 750px; margin: 0 auto 60px; text-align: center; }
.centre-heading p:last-child { color: #5e6d7f; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; background: #c8d7e8; border: 1px solid #c8d7e8; border-radius: var(--radius); overflow: hidden; list-style: none; }
.journey-grid li { min-height: 280px; padding: 34px 28px; background: var(--paper); }
.journey-grid li > span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 52px; color: var(--blue); background: var(--blue-pale); border-radius: 50%; font-weight: 900; font-size: 0.8rem; }
.journey-grid h3 { margin-bottom: 12px; font-size: 1.4rem; }
.journey-grid p { margin-bottom: 0; color: #657386; font-size: 0.92rem; }

.passes { background: var(--paper); }
.dark-text h2 { color: var(--navy); }
.dark-text > p { color: #627083; }
.pass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "a a b c"
    "d e b f"
    "h e g g";
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}
.pass-grid figure { margin: 0; overflow: hidden; background: #d9e5f3; border-radius: 14px; }
.pass-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.pass-grid figure:hover img { transform: scale(1.025); }
.pass-a { grid-area: a; }
.pass-b { grid-area: b; }
.pass-c { grid-area: c; }
.pass-d { grid-area: d; }
.pass-e { grid-area: e; }
.pass-f { grid-area: f; }
.pass-g { grid-area: g; }
.pass-h { grid-area: h; }
.pass-c img, .pass-f img, .pass-h img { object-position: center 24%; }
.pass-g img { object-position: center 18%; }
.facebook-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 30px; padding: 22px 26px; color: var(--white); background: var(--navy); border-radius: 16px; }
.facebook-row strong, .facebook-row span { display: block; }
.facebook-row span { color: #afc7e1; font-size: 0.86rem; }
.button-facebook { min-height: 49px; padding: 12px 20px; color: var(--navy); background: var(--white); font-size: 0.88rem; }

.faqs { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(50px, 8vw, 110px); }
.faq-intro { align-self: start; position: sticky; top: 130px; }
.faq-intro h2 { margin-bottom: 24px; }
.faq-intro > p:not(.eyebrow) { color: #677487; }
.faq-intro > a { color: var(--blue); font-family: Georgia, serif; font-size: 1.4rem; font-weight: 700; text-decoration: none; }
.accordion { border-top: 1px solid #cbd3dc; }
.accordion details { border-bottom: 1px solid #cbd3dc; }
.accordion summary { position: relative; padding: 24px 48px 24px 0; color: var(--navy); font-family: Georgia, serif; font-size: 1.28rem; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: absolute; right: 4px; top: 19px; display: grid; place-items: center; width: 34px; height: 34px; color: var(--blue); background: var(--white); border-radius: 50%; font-family: system-ui, sans-serif; transition: transform 180ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 54px 24px 0; color: #5c6a7c; }

.contact { padding: clamp(82px, 10vw, 140px) 0; color: var(--white); background: linear-gradient(135deg, #0a2a50, var(--navy)); }
.contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(48px, 8vw, 100px); align-items: start; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: #b4c9df; font-size: 1.05rem; }
.contact-phone { display: inline-block; margin: 28px 0; text-decoration: none; }
.contact-phone span, .contact-phone strong { display: block; }
.contact-phone span { color: #8fc4ff; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-phone strong { font-family: Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.contact-copy ul { margin: 8px 0 0; padding: 0; list-style: none; color: #b7cbe0; }
.contact-copy li { margin: 8px 0; }
.contact-copy li::before { content: "✓"; margin-right: 9px; color: #7dbafa; }
.form-card { padding: clamp(26px, 4vw, 42px); color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 30px 80px rgb(0 0 0 / 20%); }
.form-card [hidden] { display: none !important; }
.form-paused { display: flex; min-height: 440px; align-items: flex-start; justify-content: center; flex-direction: column; }
.form-paused h3 { max-width: 420px; margin: 8px 0 16px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 0.98; letter-spacing: -0.04em; }
.form-paused p { max-width: 500px; margin: 0 0 26px; color: var(--muted); }
.form-paused .button { width: auto; }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.form-heading span { color: var(--navy); font-family: Georgia, serif; font-size: 1.85rem; font-weight: 700; }
.form-heading p { margin: 0; color: var(--muted); font-size: 0.76rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 0.82rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8d2dd;
  border-radius: 9px;
  outline: none;
  transition: border 150ms ease, box-shadow 150ms ease;
}
.field input, .field select { min-height: 50px; padding: 10px 13px; }
.field textarea { padding: 12px 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(20 100 210 / 14%); }
.bot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-wrap { min-height: 65px; margin: 4px 0 16px; }
.button-submit { width: 100%; color: var(--white); background: var(--blue); }
.button-submit:hover { background: var(--navy); }
.button-submit:disabled { cursor: wait; opacity: 0.65; transform: none; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 0.74rem; text-align: center; }
.form-privacy a { color: var(--blue); }
.form-status { display: none; margin-top: 15px; padding: 12px 14px; border-radius: 9px; font-size: 0.86rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #125727; background: #e1f5e6; }
.form-status.is-error { color: #7e221e; background: #fde9e7; }

footer { color: #97adc4; background: #041428; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 0.7fr 0.7fr; gap: 60px; padding: 64px 0 52px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { margin-bottom: 8px; color: var(--white); }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-brand img {
  width: min(400px, 100%);
  height: auto;
  padding: 5px 8px;
  background: var(--paper);
  border-radius: 10px;
}
.footer-brand p { max-width: 440px; margin: 18px 0 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px 30px; padding: 22px 0 30px; border-top: 1px solid rgb(255 255 255 / 10%); font-size: 0.78rem; }
.footer-bottom a { text-decoration: none; }

.legal-page { background: var(--cream); }
.legal-main { padding: 90px 0 120px; }
.legal-shell { max-width: 820px; }
.legal-shell h1 { margin-bottom: 16px; font-size: clamp(2.7rem, 6vw, 4.8rem); }
.legal-date { margin-bottom: 56px; color: var(--muted); }
.legal-shell h2 { margin: 42px 0 12px; font-size: 1.65rem; letter-spacing: -0.02em; }
.legal-shell p { color: #526174; }
.legal-shell a { color: var(--blue); }
.legal-note { margin-top: 54px; padding: 24px 28px; background: var(--white); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; }
.legal-note strong { color: var(--navy); }
.legal-note p { margin: 6px 0 0; }

:focus-visible { outline: 3px solid #f5ad2f; outline-offset: 3px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n + 2) { border-bottom: 1px solid rgb(255 255 255 / 18%); }
  .about-grid { max-width: 720px; }
  .portrait-wrap { max-width: 480px; margin: 0 auto; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .faq-intro { position: static; }
  .contact-copy { max-width: 620px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .notice-inner span { display: none; }
  .notice-inner { justify-content: center; }
  .header-inner { min-height: 74px; gap: 16px; }
  .brand { flex-basis: 250px; }
  .nav-cta { min-height: 42px; padding: 9px 13px; font-size: 0.78rem; }
  .hero { background: linear-gradient(165deg, var(--paper) 0 67%, #edf5ff 67%); }
  .hero-grid { gap: 56px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-card { right: -6px; bottom: 18px; min-width: 154px; padding: 16px 18px; }
  .hero-card strong { font-size: 1.9rem; }
  .blue-roundel { top: -22px; left: -8px; width: 68px; height: 68px; }
  .proof-grid > div { min-height: 96px; padding: 17px; }
  .proof-grid strong { font-size: 1.2rem; }
  .portrait-wrap { padding-left: 10px; }
  .portrait-note { right: -2px; }
  .heading-split { grid-template-columns: 1fr; gap: 18px; }
  .price-grid { grid-template-columns: 1fr; }
  .car-card { grid-template-columns: 1fr; }
  .car-card img { min-height: 270px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid li { min-height: 0; }
  .journey-grid li > span { margin-bottom: 28px; }
  .pass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }
  .pass-grid figure { grid-area: auto; aspect-ratio: 1 / 1; }
  .facebook-row { align-items: stretch; flex-direction: column; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  :root { --shell: calc(100% - 24px); }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  .brand { flex-basis: 190px; }
  .nav-cta { padding-inline: 11px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-photo { border-width: 7px; }
  .proof-grid span { font-size: 0.72rem; }
  .pass-grid { gap: 8px; }
  .form-card { padding: 22px 16px; }
}

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