:root {
  --petrol: #0b4b52;
  --petrol-dark: #07363b;
  --coral: #e65d3e;
  --coral-dark: #b73c24;
  --ice: #ddece8;
  --chalk: #f7f2e9;
  --ink: #172425;
  --white: #fff;
  --muted: #536364;
  --line: #b8c8c5;
  --shadow: 0 18px 50px rgba(11, 75, 82, .12);
  --shell: min(1180px, calc(100vw - 40px));
  --display: "Arial Narrow", "Aptos Display", "Franklin Gothic Medium", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --reading: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--chalk);
  font: 1rem/1.65 var(--body);
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--petrol); text-underline-offset: .22em; }
a:hover { text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 44px; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
[hidden] { display: none !important; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 18px; top: 12px; z-index: 1000;
  transform: translateY(-160%); padding: 10px 16px;
  color: var(--white); background: var(--ink); border-radius: 4px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative; z-index: 20; background: rgba(247, 242, 233, .96);
  border-bottom: 1px solid rgba(11, 75, 82, .2);
}
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand-link { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; margin-right: auto; }
.brand-link img { width: 48px; height: 48px; }
.brand-link span { display: grid; line-height: 1; }
.brand-link strong { font: 800 1rem/1 var(--display); letter-spacing: .04em; }
.brand-link em { margin-top: 4px; font: italic 1rem/1 var(--reading); }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 10px 9px; color: var(--ink); font-size: .92rem; font-weight: 650; text-decoration: none; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--coral); }
.main-nav .nav-cta { margin-left: 8px; padding: 11px 17px; color: var(--white); background: var(--petrol); border: 0; border-radius: 3px; }
.main-nav .nav-cta:hover { background: var(--petrol-dark); }
.menu-toggle { display: none; border: 1px solid var(--petrol); background: transparent; color: var(--petrol); padding: 8px 12px; }

.plane-hero {
  display: grid; grid-template-columns: 1.46fr .72fr .94fr;
  min-height: 550px; margin: 34px 0 72px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
}
.plane { padding: clamp(30px, 4vw, 58px); display: flex; flex-direction: column; position: relative; }
.plane--today { background: var(--white); animation: settle-left .52s ease-out both; }
.plane--verify { background: var(--ice); animation: settle-up .52s .06s ease-out both; }
.plane--next { background: var(--coral); color: var(--ink); animation: settle-right .52s .11s ease-out both; }
.plane__label { display: flex; justify-content: space-between; gap: 12px; margin: 0 0 auto; padding-bottom: 20px; border-bottom: 2px solid currentColor; text-transform: uppercase; font: 800 .73rem/1 var(--display); letter-spacing: .12em; }
.plane__label b { font-variant-numeric: tabular-nums; }
.eyebrow { margin: clamp(55px, 10vh, 110px) 0 12px; color: var(--coral-dark); font: 800 .76rem/1.2 var(--display); letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--display); line-height: .98; text-wrap: balance; }
h1 { max-width: 14ch; margin: 0; font-size: clamp(3.15rem, 6.3vw, 6.4rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 4.1rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -.02em; }
.hero-lead { max-width: 55ch; margin: 24px 0 0; font: 1.2rem/1.55 var(--reading); }
.plane__statement { margin: auto 0; font: 700 clamp(1.2rem, 2.1vw, 1.72rem)/1.25 var(--display); }
.plane--next .plane__statement { font-size: clamp(1.35rem, 2.4vw, 2.05rem); }
.button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 12px 20px; border: 2px solid var(--petrol); border-radius: 3px; background: var(--petrol); color: var(--white); font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--petrol-dark); }
.button--light { margin-top: 28px; color: var(--ink); background: var(--chalk); border-color: var(--ink); }
.button--light:hover { color: var(--white); background: var(--ink); }
.button--coral { background: var(--coral); border-color: var(--coral); color: var(--ink); }

.section { padding: clamp(70px, 10vw, 126px) 0; }
.section--white { background: var(--white); }
.section--ice { background: var(--ice); }
.section--petrol { color: var(--white); background: var(--petrol); }
.section--tight { padding-block: 58px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin: 0; max-width: 15ch; }
.section-heading p { margin: 0 0 8px; max-width: 50ch; font: 1.16rem/1.6 var(--reading); }
.kicker { margin: 0 0 13px; color: var(--coral-dark); font: 800 .75rem/1.2 var(--display); letter-spacing: .13em; text-transform: uppercase; }
.section--petrol .kicker { color: #ffb39f; }

.split { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, .72fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
.prose { max-width: 70ch; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { font-size: 1.06rem; }
.prose h2 { margin: 1.5em 0 .55em; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.prose h3 { margin: 1.7em 0 .5em; }
.prose a { overflow-wrap: anywhere; }
.reading-lead { font: 1.25rem/1.55 var(--reading); }

.check-rail { border-top: 6px solid var(--coral); }
.check-row { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.check-row b { color: var(--coral-dark); font: 800 .82rem/1.2 var(--display); letter-spacing: .07em; }
.check-row h3 { margin: 0 0 8px; }
.check-row p { margin: 0; color: var(--muted); }
.check-row--light { border-color: rgba(255,255,255,.25); }
.check-row--light p { color: #e7f2f0; }

.age-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--petrol); }
.age-band { min-height: 400px; padding: 34px; background: var(--white); border-right: 1px solid var(--petrol); }
.age-band:last-child { border-right: 0; }
.age-band:nth-child(2) { transform: translateY(28px); background: var(--ice); }
.age-band:nth-child(3) { transform: translateY(56px); color: var(--white); background: var(--petrol); }
.age-band__range { display: block; margin-bottom: 70px; color: var(--coral-dark); font: 800 clamp(2.6rem, 5vw, 4.8rem)/1 var(--display); letter-spacing: -.05em; }
.age-band:nth-child(3) .age-band__range { color: #ffb39f; }
.age-band h3 { margin: 0 0 15px; }

.scope-ledger { border-top: 1px solid var(--petrol); }
.scope-line { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.scope-line > b { color: var(--coral-dark); font: 800 .78rem/1.3 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.scope-line h3, .scope-line p { margin: 0; }
.scope-line p { color: var(--muted); }

.source-desk { position: relative; padding: 36px; background: var(--ice); border-left: 10px solid var(--petrol); }
.source-desk::before { content: "VERIFICA"; position: absolute; top: -15px; right: 20px; padding: 4px 9px; color: var(--white); background: var(--petrol); font: 800 .68rem/1 var(--display); letter-spacing: .12em; }
.source-desk h3 { margin-top: 0; }
.source-desk p:last-child { margin-bottom: 0; }

.quote-plane { margin: 0; padding: clamp(36px, 6vw, 74px); color: var(--white); background: var(--petrol); }
.quote-plane p { max-width: 25ch; margin: 0; font: italic clamp(1.8rem, 4vw, 3.7rem)/1.18 var(--reading); }

.faq-group { display: grid; grid-template-columns: 260px 1fr; gap: 50px; padding: 36px 0 54px; border-top: 2px solid var(--petrol); }
.faq-group > h2 { margin: 0; font-size: 2rem; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; min-height: 60px; padding: 18px 46px 18px 0; position: relative; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 13px; font: 400 1.7rem/1 var(--display); }
details[open] summary::after { content: "−"; }
details > div { max-width: 68ch; padding: 0 42px 24px 0; }

.contact-layout { display: grid; grid-template-columns: .62fr 1fr; gap: clamp(42px, 7vw, 94px); }
.contact-facts { position: sticky; top: 24px; }
.contact-facts h2 { margin-top: 0; }
.contact-facts address { font-style: normal; }
.contact-facts a { overflow-wrap: anywhere; }
.contact-note { margin-top: 36px; padding: 20px; background: var(--ice); border-left: 5px solid var(--coral); }
.lead-form { padding: clamp(25px, 5vw, 52px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 22px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 7px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 12px; color: var(--ink); background: var(--white); border: 1px solid #708283; border-radius: 2px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(11,75,82,.18); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a12424; }
.checkbox-label { display: grid !important; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; font-weight: 500 !important; }
.checkbox-label input { width: 20px; min-height: 20px; margin-top: 3px; }
.field-error { margin: 7px 0 0; color: #8c1717; font-weight: 700; }
.error-summary { margin-bottom: 24px; padding: 18px; border: 2px solid #8c1717; background: #fff3f3; }
.error-summary:focus { outline: 3px solid var(--coral); }
.error-summary p { margin-top: 0; font-weight: 800; }
.form-status { min-height: 28px; margin-top: 17px; font-weight: 750; }
.form-status.is-success { color: #135f36; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: clamp(35px, 6vw, 68px); color: var(--white); background: var(--petrol); }
.cta-band h2 { max-width: 16ch; margin: 0; }
.cta-band p { max-width: 55ch; }

.legal-content { max-width: 820px; margin-inline: auto; }
.legal-content h2 { margin: 2em 0 .6em; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.legal-content h3 { margin-top: 1.6em; }
.legal-meta { display: inline-flex; padding: 7px 10px; color: var(--white); background: var(--petrol); font-size: .85rem; font-weight: 750; }

.site-footer { padding: 72px 0 24px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .75fr; gap: 70px; }
.footer-grid h2 { margin: 0 0 17px; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a { display: block; width: fit-content; margin: 8px 0; color: var(--white); }
.footer-grid address { font-style: normal; color: #d7e2df; }
.footer-brand img { width: min(310px, 100%); }
.footer-brand p { max-width: 48ch; color: #d7e2df; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); color: #c5d1cf; font-size: .86rem; }

.cookie-notice { position: fixed; z-index: 100; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 22px; width: min(690px, calc(100vw - 36px)); padding: 18px 20px; color: var(--white); background: var(--ink); box-shadow: 0 18px 60px rgba(0,0,0,.32); border-top: 5px solid var(--coral); }
.cookie-notice p { margin: 0; }
.cookie-notice a { color: var(--white); }
.cookie-notice button { flex: 0 0 auto; padding: 9px 15px; color: var(--ink); background: var(--chalk); border: 0; border-radius: 2px; font-weight: 800; }

@keyframes settle-left { from { opacity: .3; transform: translateX(-28px); } }
@keyframes settle-up { from { opacity: .3; transform: translateY(24px); } }
@keyframes settle-right { from { opacity: .3; transform: translateX(28px); } }

@media (max-width: 980px) {
  .main-nav a { padding-inline: 6px; font-size: .86rem; }
  .plane-hero { grid-template-columns: 1.25fr .7fr .85fr; }
  .plane { padding: 30px; }
  .split, .contact-layout { gap: 44px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 10px; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 14px; background: var(--chalk); border-bottom: 2px solid var(--petrol); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a, .main-nav .nav-cta { margin: 0; padding: 13px 14px; }
  .plane-hero { display: block; min-height: 0; margin-top: 18px; }
  .plane { min-height: 290px; }
  .plane--verify { min-height: 220px; }
  .plane--next { min-height: 250px; }
  .eyebrow { margin-top: 48px; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .section-heading, .split, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .age-bands { display: block; }
  .age-band { min-height: 0; border-right: 0; border-bottom: 1px solid var(--petrol); transform: none !important; }
  .age-band__range { margin-bottom: 30px; }
  .scope-line { grid-template-columns: 76px 1fr; }
  .scope-line p { grid-column: 2; }
  .faq-group { grid-template-columns: 1fr; gap: 8px; }
  .contact-facts { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}

@media (max-width: 440px) {
  .brand-link span { display: none; }
  .brand-link img { width: 44px; height: 44px; }
  .section { padding-block: 65px; }
  .plane { padding: 24px; }
  .button { width: 100%; }
  .check-row { grid-template-columns: 42px 1fr; gap: 12px; }
  .scope-line { grid-template-columns: 1fr; gap: 9px; }
  .scope-line p { grid-column: auto; }
  .cookie-notice { align-items: stretch; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media print {
  .site-header, .site-footer, .cookie-notice, .button { display: none !important; }
  body { background: #fff; color: #000; }
  .plane-hero { display: block; min-height: 0; box-shadow: none; }
  .plane { min-height: 0; color: #000; background: #fff; border-bottom: 1px solid #000; }
}
