:root {
  color-scheme: light;
  --ink: #14231c;
  --muted: #66736c;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #e7ebe7;
  --brand: #d72f35;
  --brand-dark: #aa1f25;
  --brand-soft: #fff0ee;
  --leaf: #173f2f;
  --accent: #ffc546;
  --shadow: 0 24px 70px rgba(31, 48, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 197, 70, 0.2), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0, var(--paper) 34rem, #f8faf8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(20, 35, 28, 0.08);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.nav,
.page-shell,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px 13px 13px 5px;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(215, 47, 53, 0.24);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 24px;
  right: max(2vw, calc((100vw - 1120px) / 2));
  width: 300px;
  height: 300px;
  border: 1px solid rgba(215, 47, 53, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(215, 47, 53, 0.035),
    0 0 0 90px rgba(215, 47, 53, 0.025);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 880;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  width: 18px;
  color: var(--brand);
}

.route-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: var(--leaf);
  box-shadow: var(--shadow);
  color: white;
}

.route-card::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 10px;
  height: 10px;
  border: 4px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.route-line {
  width: 2px;
  height: 64px;
  margin: 4px 0 4px 8px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.42) 0 7px, transparent 7px 13px);
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 750;
}

.route-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: white;
  background-clip: padding-box;
}

.route-stop:last-child .route-dot {
  background-color: var(--accent);
}

.page-content {
  padding: 16px 0 100px;
}

.section-heading {
  margin: 0 0 26px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.contact-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(30, 49, 39, 0.055);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand);
}

.contact-icon svg {
  width: 23px;
}

.contact-card h2 {
  margin: 0 0 7px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.contact-card p {
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link svg {
  width: 16px;
}

.faq-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 60px;
}

.aside-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: 20px;
  background: var(--brand-soft);
}

.aside-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.aside-card p {
  margin: 0;
  color: #765455;
  font-size: 14px;
}

.aside-links {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.aside-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #765455;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.aside-links a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--brand-dark);
}

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

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

summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 780;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 24px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  content: "+";
  font-size: 19px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}

details[open] summary::after {
  content: "−";
}

.answer {
  max-width: 720px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.answer p {
  margin: 0;
}

.notice {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding: 22px;
  border: 1px solid #f2dfaf;
  border-radius: 18px;
  background: #fff8e5;
}

.notice svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #9b6800;
}

.notice strong {
  display: block;
  margin-bottom: 3px;
}

.notice p {
  margin: 0;
  color: #725b28;
  font-size: 14px;
}

.legal-document {
  max-width: 760px;
}

.legal-section {
  scroll-margin-top: 105px;
  padding: 0 0 34px;
}

.legal-section + .legal-section {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: clamp(22px, 3vw, 27px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-section p,
.legal-section li {
  color: #4f5d56;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-callout {
  margin-bottom: 40px;
  padding: 22px 24px;
  border-left: 4px solid var(--brand);
  border-radius: 0 16px 16px 0;
  background: var(--brand-soft);
  color: #604d4e;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

@media (max-width: 800px) {
  .hero {
    padding: 64px 0 50px;
  }

  .hero-grid,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .route-card {
    max-width: 460px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-card p {
    min-height: auto;
  }

  .faq-layout,
  .legal-layout {
    gap: 34px;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .nav,
  .page-shell,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 43px;
  }

  .route-card,
  .contact-card {
    padding: 22px;
  }

  .page-content {
    padding-bottom: 72px;
  }

  .footer-inner {
    min-height: 140px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

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