:root {
  color-scheme: light;
  --ink: #17332b;
  --muted: #68756f;
  --paper: #f7f5ee;
  --surface: #fffdf8;
  --line: #d9d8d0;
  --accent: #f26545;
  --water: #cbdfe2;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 6vw;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font: 700 22px Georgia, serif; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 9vw 8vw;
  overflow: hidden;
}

.hero-copy { max-width: 680px; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-size: 12px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; font: 500 clamp(54px, 7vw, 104px)/.95 Georgia, serif; letter-spacing: -.055em; }
.hero h1 em { color: var(--muted); font-weight: 400; }
.lead { max-width: 570px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.badge { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 84%, transparent); color: var(--muted); font-size: 13px; }

.route-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(31deg, transparent 48%, rgba(255,255,255,.88) 49%, rgba(255,255,255,.88) 51%, transparent 52%) 0 0 / 120px 110px,
    linear-gradient(124deg, transparent 48%, rgba(23,51,43,.06) 49%, rgba(23,51,43,.06) 51%, transparent 52%) 0 0 / 170px 150px,
    #ebe9e0;
  box-shadow: 0 28px 70px rgba(23, 51, 43, .11);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.route-card::before { content: ""; position: absolute; width: 34%; height: 120%; left: 44%; top: -10%; border-radius: 48%; background: color-mix(in srgb, var(--water) 88%, transparent); transform: rotate(-17deg); }
.route { position: absolute; inset: 12% 15%; width: 70%; height: 76%; overflow: visible; }
.route path { fill: none; stroke: var(--accent); stroke-width: 10; stroke-linecap: round; stroke-linejoin: round; }
.route circle { stroke: #fff; stroke-width: 3; }
.route text { fill: white; font: 700 11px ui-sans-serif, sans-serif; text-anchor: middle; dominant-baseline: central; }
.privacy-note { position: absolute; right: 24px; bottom: 24px; max-width: 220px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,253,248,.9); box-shadow: 0 12px 30px rgba(23,51,43,.1); backdrop-filter: blur(12px); font-size: 13px; line-height: 1.45; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature { min-height: 260px; padding: 48px 6vw; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature span { color: var(--accent); font: 500 30px Georgia, serif; }
.feature h2 { margin: 30px 0 12px; font: 500 25px Georgia, serif; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.page { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0 120px; }
.page h1 { font-size: clamp(48px, 8vw, 78px); }
.page-intro { margin: 24px 0 62px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.updated { display: inline-block; margin-top: 12px; color: var(--muted); font-size: 13px; }
.prose section { padding: 32px 0; border-top: 1px solid var(--line); }
.prose h2 { margin: 0 0 12px; font: 500 25px Georgia, serif; }
.prose p, .prose li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.prose ul { padding-left: 22px; }
.prose strong { color: var(--ink); }
.contact-card { margin-top: 40px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.contact-card a { color: var(--accent); font-weight: 700; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 34px 6vw; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 76px 24px 64px; }
  .route-card { min-height: 440px; }
  .features { grid-template-columns: 1fr; }
  .feature { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .site-header { padding: 0 20px; }
  .nav { gap: 14px; }
  .nav a:first-child { display: none; }
  .hero h1 { font-size: 54px; }
  .route-card { min-height: 370px; border-radius: 24px; }
  .privacy-note { right: 14px; bottom: 14px; }
  .page { padding-top: 64px; }
  .site-footer { flex-direction: column; }
}
