:root {
  --ink: #18212a;
  --navy: #0d2936;
  --blue: #164b62;
  --sky: #dceef1;
  --paper: #f7f4ed;
  --white: #fffdf8;
  --coral: #e9664c;
  --coral-dark: #c94732;
  --gold: #e7b553;
  --line: rgba(24, 33, 42, 0.16);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 22px 65px rgba(6, 30, 41, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.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; top: -80px; left: 20px; z-index: 100; background: var(--white); padding: 12px 18px; border-radius: 6px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { position: fixed; background: rgba(247, 244, 237, .96); color: var(--ink); box-shadow: 0 8px 35px rgba(13, 41, 54, .1); backdrop-filter: blur(12px); }
.legal-header { position: relative; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: -.045em; white-space: nowrap; }
.brand > span:last-child > span { color: var(--coral); }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); }
.brand-mark svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { position: relative; text-decoration: none; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px; color: var(--white); background: var(--coral); box-shadow: 0 10px 25px rgba(201, 71, 50, .25); font-family: var(--display); font-size: 15px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-3px); background: var(--coral-dark); box-shadow: 0 16px 30px rgba(201, 71, 50, .32); }
.button:active { transform: translateY(0); }
.button svg { width: 18px; fill: currentColor; }
.button-small { min-height: 44px; padding-inline: 20px; font-size: 14px; }
.button-large { min-height: 58px; padding-inline: 28px; }

.hero { position: relative; min-height: 780px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy) url("/assets/images/hero-beach.jpg") center 45% / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: auto -6vw -20vw auto; width: 46vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 150px rgba(255,255,255,.035); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 29, 40, .85) 0%, rgba(5, 29, 40, .57) 46%, rgba(5, 29, 40, .12) 78%), linear-gradient(0deg, rgba(4, 24, 34, .38), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 96px; }
.eyebrow { margin: 0 0 20px; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 38px; height: 2px; margin: 0 12px 4px 0; background: var(--coral); }
.eyebrow.dark { color: var(--blue); }
.hero h1, .intro h2, .reviews h2, .callout h2, .legal-hero h1 { margin: 0; font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: -.065em; }
.hero h1 { max-width: 780px; font-size: clamp(58px, 7.2vw, 104px); text-wrap: balance; }
h1 em, h2 em { color: var(--coral); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.05em; }
.hero-copy { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.84); font-size: clamp(17px, 1.6vw, 21px); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.text-link { color: var(--white); font-weight: 700; text-underline-offset: 5px; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.hero-note { position: absolute; right: 5vw; bottom: 42px; z-index: 2; display: flex; align-items: center; gap: 13px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.hero-note-line { width: 55px; height: 1px; background: rgba(255,255,255,.55); }

.intro { padding: 130px 0 90px; }
.section-kicker { display: flex; align-items: center; gap: 22px; color: var(--blue); font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.intro-heading { display: grid; grid-template-columns: 1.4fr .8fr; align-items: end; gap: 90px; margin-top: 50px; }
.intro h2, .reviews h2, .callout h2 { font-size: clamp(48px, 5.7vw, 78px); }
.intro-heading > p { margin: 0 0 5px; color: #58646d; font-size: 18px; }

.benefit-list { padding-bottom: 130px; }
.benefit-row { position: relative; display: grid; grid-template-columns: 80px .8fr 1.25fr; align-items: center; gap: 55px; min-height: 390px; padding: 36px 0; border-top: 1px solid var(--line); }
.benefit-row:last-child { border-bottom: 1px solid var(--line); }
.benefit-row.reverse { grid-template-columns: 80px 1.25fr .8fr; }
.benefit-row.reverse .benefit-image { grid-column: 2; grid-row: 1; }
.benefit-row.reverse .benefit-copy { grid-column: 3; }
.benefit-number { align-self: start; padding-top: 12px; color: var(--coral); font-family: var(--display); font-size: 13px; font-weight: 800; }
.benefit-copy h3 { margin: 0 0 20px; font-family: var(--display); font-size: clamp(32px, 3.4vw, 49px); line-height: 1.05; letter-spacing: -.05em; }
.benefit-copy > p:last-child { margin: 0; color: #5c666c; }
.benefit-image { height: 315px; overflow: hidden; border-radius: 3px 42px 3px 3px; box-shadow: var(--shadow); }
.benefit-row.reverse .benefit-image { border-radius: 42px 3px 3px 3px; }
.benefit-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.benefit-row:hover .benefit-image img { transform: scale(1.045); }

.reviews { position: relative; overflow: hidden; padding: 130px 0; color: var(--white); background: var(--navy); }
.reviews::before { content: ""; position: absolute; left: -11vw; bottom: -22vw; width: 45vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.reviews-grid { position: relative; display: grid; grid-template-columns: .85fr 1.25fr; gap: 90px; }
.reviews h2 { color: var(--white); }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review-card { margin: 0; padding: 36px; color: var(--ink); background: var(--white); border-radius: 3px 34px 3px 3px; box-shadow: 0 25px 50px rgba(0,0,0,.16); }
.review-card.offset { transform: translateY(58px); background: var(--sky); }
.stars { color: var(--gold); letter-spacing: 5px; }
.review-card > p { margin: 24px 0 32px; font-family: Georgia, serif; font-size: 19px; line-height: 1.6; }
.review-card footer { display: flex; align-items: center; gap: 13px; }
.avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 12px; font-weight: 700; }
.review-card footer span:last-child { display: grid; }
.review-card strong { font-family: var(--display); font-size: 14px; }
.review-card small { color: #758087; }

.callout { position: relative; min-height: 610px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: #153a49; }
.callout-bg { position: absolute; inset: 0; opacity: .52; background: linear-gradient(90deg, rgba(8,35,47,.9), rgba(8,35,47,.35)), url("/assets/images/airplane-wing.jpg") center / cover no-repeat; }
.callout-content { position: relative; z-index: 1; text-align: center; }
.callout h2 { max-width: 900px; margin-inline: auto; }
.callout p:not(.eyebrow) { margin: 26px auto 32px; font-size: 18px; }

.site-footer { padding: 75px 0 28px; color: rgba(255,255,255,.75); background: #091d27; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 60px; padding-bottom: 55px; }
.brand-light { color: var(--white); }
.footer-main p { max-width: 390px; margin: 0; }
.footer-phone { color: var(--white); font-family: var(--display); font-size: clamp(21px, 2.5vw, 31px); font-weight: 700; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a { text-underline-offset: 4px; }
.disclaimer { margin-top: 22px; font-size: 11px; color: rgba(255,255,255,.45); }

.legal-main { background: var(--white); }
.legal-hero { padding: 90px 0 80px; color: var(--white); background: var(--blue); }
.legal-hero.terms-hero { background: var(--navy); }
.legal-hero h1 { font-size: clamp(48px, 6vw, 78px); }
.legal-hero > .shell > p:last-child { margin: 22px 0 0; color: rgba(255,255,255,.72); }
.legal-content { width: min(800px, calc(100% - 48px)); padding: 85px 0 110px; }
.legal-lead { margin: 0 0 55px; padding-left: 24px; border-left: 3px solid var(--coral); color: #45545e; font-size: 20px; }
.legal-content h2 { margin: 47px 0 10px; font-family: var(--display); font-size: 28px; letter-spacing: -.035em; }
.legal-content p { color: #4f5c64; }
.legal-content a { color: var(--coral-dark); font-weight: 700; }
.legal-footer { padding-top: 0; }
.legal-footer .footer-bottom { padding-block: 28px 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: none; }
.hero-content .reveal:nth-child(2) { transition-delay: .08s; }
.hero-content .reveal:nth-child(3) { transition-delay: .16s; }
.hero-content .reveal:nth-child(4) { transition-delay: .24s; }

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

@media (max-width: 960px) {
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { 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); }
  .site-nav { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 28px; padding: 90px 28px; color: var(--white); background: rgba(9,29,39,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a:not(.button) { font-family: var(--display); font-size: 27px; }
  .site-header.scrolled .menu-toggle[aria-expanded="true"] { color: var(--white); }
  .intro-heading { grid-template-columns: 1fr; gap: 30px; }
  .benefit-row, .benefit-row.reverse { grid-template-columns: 55px 1fr; gap: 25px; padding-block: 60px; }
  .benefit-copy, .benefit-row.reverse .benefit-copy { grid-column: 2; }
  .benefit-image, .benefit-row.reverse .benefit-image { grid-column: 2; grid-row: auto; width: 100%; margin-top: 15px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-phone { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 31px; height: 31px; }
  .legal-header .button { min-height: 38px; padding-inline: 14px; font-size: 12px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 76px; }
  .hero h1 { font-size: clamp(49px, 16vw, 70px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-note { display: none; }
  .intro { padding: 90px 0 65px; }
  .intro h2, .reviews h2, .callout h2 { font-size: clamp(43px, 13vw, 62px); }
  .benefit-list { padding-bottom: 90px; }
  .benefit-row, .benefit-row.reverse { grid-template-columns: 1fr; gap: 16px; }
  .benefit-number, .benefit-copy, .benefit-row.reverse .benefit-copy, .benefit-image, .benefit-row.reverse .benefit-image { grid-column: 1; }
  .benefit-image { height: 245px; }
  .reviews { padding: 90px 0 130px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card.offset { transform: none; }
  .callout { min-height: 570px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-phone { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 70px 0 60px; }
  .legal-content { width: min(100% - 30px, 800px); padding: 65px 0 85px; }
  .legal-lead { font-size: 18px; }
}
