:root {
  --navy: #123247;
  --blue: #176f8d;
  --sea: #2fa6b4;
  --sand: #f1c98b;
  --cream: #fffaf1;
  --mist: #eef7f7;
  --ink: #18313e;
  --muted: #58707a;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(18, 50, 71, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: .2em; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sand); outline-offset: 4px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; color: var(--navy); background: var(--white); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 5; padding: 26px 0; }
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-weight: 750; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; color: var(--navy); background: var(--sand); border-radius: 50% 50% 45% 55%; }
nav { display: flex; gap: 28px; }
nav a { color: var(--white); font-size: .94rem; font-weight: 650; text-decoration: none; }

.hero { position: relative; overflow: hidden; padding: 136px 0 88px; color: var(--white); background: linear-gradient(135deg, #123247 0%, #176f8d 60%, #2fa6b4 100%); }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; right: -230px; top: -220px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; box-shadow: 0 0 0 72px rgba(255,255,255,.035), 0 0 0 144px rgba(255,255,255,.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 64px; }
.hero-copy { padding-bottom: 20px; }
.eyebrow { margin: 0 0 12px; color: var(--sea); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow, .section-dark .eyebrow { color: var(--sand); }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.13; }
h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(2.65rem, 5.6vw, 5.1rem); letter-spacing: -.035em; }
h2 { margin-bottom: 22px; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.25rem); letter-spacing: -.025em; }
h3 { color: var(--navy); font-size: 1.42rem; }
.intro { margin: 0 0 32px; color: rgba(255,255,255,.88); font-size: 1.08rem; }
.button { display: inline-flex; padding: 13px 20px; color: var(--navy); background: var(--sand); border-radius: 999px; font-weight: 750; text-decoration: none; }
.hero-media { margin: 0; padding: 10px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.23); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(1deg); }
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 21px; }

.section { padding: 100px 0; }
.section p { color: var(--muted); }
.section-tint { background: var(--mist); }
.section-heading { max-width: 740px; margin-bottom: 42px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 30px; background: var(--white); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(18,50,71,.07); }
.card p { margin-bottom: 0; }
.card-number { display: inline-block; margin-bottom: 38px; color: var(--sea); font-weight: 800; }
.areas-list { border-top: 1px solid #cddde0; }
.area { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; padding: 38px 0; border-bottom: 1px solid #cddde0; }
.area > div { display: flex; align-items: baseline; gap: 20px; }
.area span { color: var(--sea); font-weight: 800; }
.area h3, .area p { margin: 0; }
.section-dark { color: var(--white); background: var(--navy); }
.section-dark h2, .section-dark p { color: var(--white); }
.prepare-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 0 0 24px 34px; color: rgba(255,255,255,.8); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--sand); font-weight: 900; }
.checklist strong { color: var(--white); }
.final-note { text-align: center; }
.final-note h2 { font-size: 2.2rem; }
.final-note a { font-weight: 750; }
footer { padding: 30px 0; color: rgba(255,255,255,.72); background: #0b2535; font-size: .9rem; }
footer p { margin: 0; }

@media (max-width: 850px) {
  .hero-grid, .prepare-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 700px; }
  .cards { grid-template-columns: 1fr; }
  .card-number { margin-bottom: 14px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { padding-top: 18px; }
  nav { display: none; }
  .hero { padding: 112px 0 64px; }
  .section { padding: 72px 0; }
  .area { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
