:root {
  --ink: #15182b;
  --muted-ink: #5d6074;
  --paper: #f7f5ef;
  --card: #fffdf9;
  --night: #11152e;
  --night-2: #191f42;
  --coral: #ff705d;
  --coral-dark: #dd4e43;
  --mint: #58d6b5;
  --line: rgba(21, 24, 43, .13);
  --shadow: 0 24px 70px rgba(17, 21, 46, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: 1160px;
}

* { box-sizing: border-box; }

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

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.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--coral-dark);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background: rgba(17, 21, 46, .92);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand img { border-radius: 14px; }
.brand strong { color: var(--mint); }

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 30px);
  margin-left: auto;
}

.site-header nav a {
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus { color: #fff; }

.adult-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 24%, rgba(88,214,181,.19), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(255,112,93,.2), transparent 31%),
    var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
}

.hero-grid {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding-block: 94px 104px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .98;
}

.hero .lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.73);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus { transform: translateY(-2px); }

.button.primary {
  color: var(--night);
  background: var(--mint);
}

.button.primary:hover,
.button.primary:focus { background: #75e5c7; }

.button.secondary {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.17);
}

.button.secondary:hover,
.button.secondary:focus { background: rgba(255,255,255,.11); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--mint);
}

.route-card {
  position: relative;
  padding: 28px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.route-card::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 52px;
  width: 24px;
  height: 90px;
  background: var(--coral);
  border-radius: 0 8px 8px 0;
}

.route-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.route-label { font-weight: 850; }

.route-status {
  color: rgba(255,255,255,.57);
  font-size: 12px;
}

.route-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(88,214,181,.11);
}

.route-steps {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.route-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
}

.route-steps li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.09); }

.route-steps li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--mint);
  background: rgba(88,214,181,.09);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 850;
}

.route-steps strong,
.route-steps small { display: block; }
.route-steps strong { font-size: 14px; }
.route-steps small { margin-top: 2px; color: rgba(255,255,255,.52); font-size: 12px; }

.route-note {
  margin: 8px 0 0;
  padding: 16px 17px;
  color: rgba(255,255,255,.7);
  background: rgba(255,112,93,.1);
  border-left: 3px solid var(--coral);
  border-radius: 0 12px 12px 0;
  font-size: 12px;
  line-height: 1.6;
}

.intro-strip {
  color: #fff;
  background: var(--coral-dark);
}

.intro-grid {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-grid p { margin: 0; }
.intro-grid a { flex: 0 0 auto; font-size: 14px; font-weight: 850; text-decoration: none; }
.intro-grid a span { margin-left: 4px; }

.section { padding-block: 112px; }
.section.muted { background: #ece9e1; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading.compact { margin-bottom: 40px; }

.section h2,
.closing-card h2,
.faq-intro h2,
.terms-layout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  letter-spacing: -.038em;
  line-height: 1.08;
}

.section-heading > p,
.faq-intro > p:last-child,
.terms-layout > div > p:last-child {
  margin: 0;
  color: var(--muted-ink);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.district-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(17,21,46,.05);
}

.district-card.featured {
  color: #fff;
  background: var(--night-2);
  border-color: var(--night-2);
}

.district-card.wide {
  min-height: 250px;
  grid-column: span 2;
}

.district-number {
  width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: rgba(255,112,93,.1);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
}

.featured .district-number { color: var(--mint); background: rgba(88,214,181,.1); }

.district-card h3 {
  margin: 24px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.district-card p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.65;
}

.district-card.featured p { color: rgba(255,255,255,.68); }

.district-card ul {
  display: grid;
  gap: 5px;
  margin: auto 0 0;
  padding: 24px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.district-card.featured ul { color: #fff; }
.district-card li::before { content: "—"; margin-right: 7px; color: var(--coral); }

.checklist-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(440px, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.checklist-copy {
  position: sticky;
  top: 116px;
}

.checklist-copy > p:not(.kicker) { color: var(--muted-ink); }

blockquote {
  margin: 34px 0 0;
  padding: 18px 20px;
  color: var(--night);
  background: rgba(88,214,181,.17);
  border-left: 4px solid #26a988;
  border-radius: 0 14px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.checklist {
  margin: 0;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 25px 28px;
}

.checklist li:not(:last-child) { border-bottom: 1px solid var(--line); }

.checklist li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral-dark);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.checklist h3 { margin: 0; font-size: 17px; }
.checklist p { margin: 5px 0 0; color: var(--muted-ink); font-size: 14px; line-height: 1.6; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.safety-grid article {
  padding: 27px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: rgba(255,112,93,.11);
  border-radius: 14px;
  font-size: 21px;
  font-weight: 900;
}

.safety-grid h3 { margin: 22px 0 8px; font-size: 17px; }
.safety-grid p { margin: 0; color: var(--muted-ink); font-size: 14px; line-height: 1.65; }

.warning-panel {
  display: grid;
  grid-template-columns: .62fr repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius-md);
}

.warning-panel > * { padding: 22px; }
.warning-panel > *:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.warning-panel strong { display: flex; align-items: center; color: var(--mint); }
.warning-panel div { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.warning-panel span { display: block; margin-bottom: 6px; color: var(--coral); font-weight: 850; }

.terms-section { color: #fff; background: var(--night-2); }

.terms-layout {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(460px, 1.38fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.terms-layout .kicker { color: var(--mint); }
.terms-layout > div > p:last-child { color: rgba(255,255,255,.61); }

.term-list { margin: 0; border-top: 1px solid rgba(255,255,255,.13); }
.term-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.term-list dt { color: var(--coral); font-weight: 850; }
.term-list dd { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }

.faq-section { background: #f2efe7; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, .55fr) minmax(480px, 1.45fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-intro { position: sticky; top: 116px; }
.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: rgba(255,112,93,.09);
  border-radius: 50%;
  font-size: 20px;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -5px 54px 24px 0; color: var(--muted-ink); font-size: 14px; }

.closing-section { padding: 24px 0 112px; background: #f2efe7; }

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background: var(--coral-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(136,46,40,.2);
}

.closing-card .kicker { color: #ffd1c8; }
.closing-card p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.75); }
.closing-card .button.primary { flex: 0 0 auto; }

footer { color: rgba(255,255,255,.65); background: #0b0e20; }

.footer-grid {
  min-height: 170px;
  display: grid;
  grid-template-columns: .75fr 1.25fr auto;
  gap: 50px;
  align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.footer-brand img { border-radius: 12px; }
.footer-brand strong,
.footer-brand small { display: block; }
.footer-brand small { margin-top: 2px; color: rgba(255,255,255,.45); font-size: 10px; }
.footer-grid > p { margin: 0; font-size: 11px; line-height: 1.6; }
.footer-grid nav { display: flex; gap: 18px; }
.footer-grid nav a { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 750; text-decoration: none; }

.copyright {
  padding-block: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.36);
  font-size: 10px;
}

:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .route-card { max-width: 650px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .district-card.wide { grid-column: span 2; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .warning-panel { grid-template-columns: repeat(3, 1fr); }
  .warning-panel strong { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .checklist-layout,
  .terms-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .checklist-copy,
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-block: 40px; }
  .footer-grid nav { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 14px; }
  .site-header nav { display: none; }
  .adult-badge { margin-left: auto; }
  .hero-grid { min-height: auto; padding-block: 72px 78px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero .lead { font-size: 17px; }
  .route-card { padding: 22px; }
  .route-card::after { display: none; }
  .intro-grid { min-height: 110px; display: grid; gap: 6px; padding-block: 20px; }
  .section { padding-block: 78px; }
  .district-grid,
  .safety-grid { grid-template-columns: 1fr; }
  .district-card,
  .district-card.wide { min-height: 0; grid-column: auto; }
  .district-card ul { margin-top: 20px; }
  .checklist li { grid-template-columns: 42px 1fr; padding: 22px 18px; }
  .warning-panel { grid-template-columns: 1fr; }
  .warning-panel strong { grid-column: auto; }
  .warning-panel > *:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .term-list > div { grid-template-columns: 1fr; gap: 5px; }
  .closing-card { align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid nav { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
