:root {
  --paper: oklch(0.965 0.012 80);
  --paper-2: oklch(0.94 0.014 78);
  --paper-3: oklch(0.90 0.018 75);
  --ink: oklch(0.18 0.012 80);
  --ink-soft: oklch(0.32 0.014 80);
  --ink-muted: oklch(0.48 0.012 80);
  --line: oklch(0.86 0.014 80);
  --line-strong: oklch(0.74 0.016 80);
  --moss: oklch(0.32 0.05 145);
  --moss-deep: oklch(0.22 0.045 150);
  --moss-soft: oklch(0.78 0.04 145);
  --ember: oklch(0.66 0.16 45);
  --ember-deep: oklch(0.52 0.15 40);
  --sky: oklch(0.55 0.10 235);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Typography */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.eyebrow .dot { display:inline-block; width:6px; height:6px; border-radius:50%; background: var(--ember); margin-right: 10px; transform: translateY(-1px); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.98;
  font-size: clamp(56px, 9.5vw, 148px);
}
.display em { font-style: italic; color: var(--moss); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.0;
  font-size: clamp(40px, 5.5vw, 76px);
}
.h2 em { font-style: italic; color: var(--moss); }

.h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1.2;
}
.lede {
  font-size: 19px; line-height: 1.5; color: var(--ink-soft); max-width: 56ch;
}
.small { font-size: 13px; color: var(--ink-muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-ember { background: var(--ember); color: #fff; }
.btn-ember:hover { background: var(--ember-deep); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--paper-2); border-color: var(--ink); }
.btn-solid-paper { background: var(--paper); color: var(--ink); }
.btn-sm { padding: 9px 14px; font-size: 13px; }

.arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .arrow { transform: translate(3px, -2px); }

/* Header */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.brand-logo-light {
  height: 56px;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.brand-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px;
  font-style: italic;
}
.brand sup { font-family: var(--mono); font-size: 10px; color: var(--ember); margin-left: -4px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.hdr-cta { display: flex; align-items: center; gap: 10px; }
.hdr-phone {
  font-family: var(--mono); font-size: 13px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.hdr-phone .pulse { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.65 0.18 145); box-shadow: 0 0 0 0 oklch(0.65 0.18 145 / .6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.65 0.18 145 / .55); }
  70% { box-shadow: 0 0 0 10px oklch(0.65 0.18 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.65 0.18 145 / 0); }
}
@media (max-width: 960px) { .nav { display: none; } .hdr-phone { display: none; } }

/* Hero */
.hero { padding: 56px 0 32px; position: relative; }
.hero-tag { display:flex; gap: 12px; align-items: center; margin-bottom: 32px; }
.hero-tag .badge {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.65 0.18 145); }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; padding-bottom: 40px; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 24px; } }
.hero-meta { display: grid; gap: 24px; }
.hero-meta-row { display: grid; grid-template-columns: 16px 1fr; gap: 14px; align-items: start; }
.hero-meta .num { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); padding-top: 4px; }
.hero-meta strong { display:block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.hero-meta p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.45; }

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

/* Booking widget */
.booking {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 4px;
  margin-top: 36px;
  align-items: stretch;
}
.booking-cell {
  padding: 16px 18px;
  display: grid; gap: 6px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .15s ease;
  position: relative;
}
.booking-cell:hover { background: oklch(0.24 0.012 80); }
.booking-cell label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.72 0.012 80); }
.booking-cell .val { font-size: 16px; font-weight: 600; }
.booking-cell .val .placeholder { color: oklch(0.65 0.012 80); font-weight: 500; }
.booking-cta { padding: 4px; display: flex; align-items: stretch; }
.booking-cta .btn { width: 100%; padding: 0 22px; border-radius: var(--r-md); }
@media (max-width: 820px) {
  .booking { grid-template-columns: 1fr 1fr; }
  .booking-cta { grid-column: 1 / -1; }
  .booking-cta .btn { padding: 16px; }
}

/* Hero image collage */
.hero-img-wrap { position: relative; height: 540px; }
.hero-img {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -30px oklch(0.18 0.012 80 / 0.3);
}
.hero-img.main { z-index: 2; }
.hero-img.back {
  width: 56%; height: 44%;
  inset: auto -8% -14% auto;
  z-index: 3;
  border: 6px solid var(--paper);
  box-shadow: 0 24px 40px -16px oklch(0.18 0.012 80 / 0.35);
}
.hero-img.tag {
  position: absolute; z-index: 4;
  top: 28px; left: -12px;
  background: var(--ember); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-4deg);
  box-shadow: 0 10px 20px -8px oklch(0.18 0.012 80 / 0.35);
}
@media (max-width: 980px) { .hero-img-wrap { height: 440px; } }
@media (max-width: 640px) { .hero-img-wrap { height: 340px; } .hero-img.back { display: none; } }

/* Marquee strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  padding: 16px 0;
  margin-top: 24px;
}
.strip-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.strip-item {
  font-family: var(--serif); font-size: 22px;
  display: inline-flex; align-items: center; gap: 56px;
  color: var(--ink-soft); white-space: nowrap;
}
.strip-item em { font-style: italic; color: var(--ember); }
.strip-item .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-muted); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }
.section-hdr { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
.section-hdr .col { max-width: 56ch; }
@media (max-width: 820px) { .section-hdr { flex-direction: column; align-items: flex-start; } }

/* Single-camper showcase */
.camper-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .camper-hero { grid-template-columns: 1fr; gap: 28px; } }
.camper-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  background-size: cover; background-position: center;
  box-shadow: 0 24px 50px -24px oklch(0.18 0.012 80 / 0.3);
  position: relative;
  overflow: hidden;
}
.camper-img .badge-top {
  position: absolute; top: 18px; left: 18px;
  background: var(--paper); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
}
.camper-rooms { display: grid; gap: 0; }
.camper-room {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.camper-room:last-child { border-bottom: 1px solid var(--line); }
.camper-room .num { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); padding-top: 6px; }
.camper-room h4 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 6px; letter-spacing: -0.005em; }
.camper-room p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.45; }

/* Equipment grid */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 8px;
}
@media (max-width: 980px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equip-grid { grid-template-columns: 1fr; } }
.equip-cat h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); margin: 0 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.equip-cat ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.equip-cat li {
  display: grid; grid-template-columns: 14px 1fr; gap: 10px; align-items: start;
  font-size: 14.5px; line-height: 1.4; color: var(--ink-soft);
}
.equip-cat li .bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--moss); margin-top: 8px;
}

/* Pricing */
.pricing { background: var(--paper-2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid; gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px oklch(0.18 0.012 80 / 0.2); }
.price-card.highlight {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.price-card.highlight .label { color: oklch(0.78 0.014 80); }
.price-card.highlight .price-when { color: oklch(0.72 0.014 80); }
.price-card.highlight .price-tag { color: var(--ember); border-color: oklch(0.32 0.012 80); }
.price-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.price-head .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.price-head .hot {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember);
}
.price-num { display: flex; align-items: baseline; gap: 8px; }
.price-num .num {
  font-family: var(--serif); font-size: clamp(60px, 8vw, 92px); line-height: 0.95;
  font-weight: 400; letter-spacing: -0.02em;
}
.price-num .unit { font-family: var(--mono); font-size: 13px; color: var(--ink-muted); }
.price-card.highlight .price-num .unit { color: oklch(0.78 0.014 80); }
.price-when {
  font-size: 13px; color: var(--ink-soft);
  padding-top: 6px;
  line-height: 1.4;
}
.price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  width: max-content;
}
.price-tag svg { color: var(--moss); }
.price-card.highlight .price-tag svg { color: var(--ember); }

.pricing-extras {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 32px;
}
@media (max-width: 820px) { .pricing-extras { grid-template-columns: 1fr; } }
.extra-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid; gap: 10px;
}
.extra-num {
  font-family: var(--serif); font-size: 52px; line-height: 1; font-weight: 400; letter-spacing: -0.02em;
  color: var(--ember);
}
.extra-num small { font-family: var(--sans); font-size: 18px; font-weight: 500; color: var(--ink); }
.extra-card h4 { font-family: var(--sans); font-weight: 600; font-size: 18px; margin: 8px 0 0; }
.extra-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.fleet-tab {
  padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: var(--ink-soft); transition: background .15s, color .15s;
}
.fleet-tab:hover { color: var(--ink); }
.fleet-tab.on { background: var(--ink); color: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -24px oklch(0.18 0.012 80 / 0.25); border-color: var(--line-strong); }
.fleet-card .img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  position: relative;
}
.fleet-card .img .price-pill {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--paper); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 10px -2px oklch(0.18 0.012 80 / 0.25);
}
.fleet-card .img .price-pill small { font-weight: 400; color: var(--ink-muted); }
.fleet-card .img .badge-top {
  position: absolute; top: 14px; left: 14px;
  background: var(--ember); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.fleet-card .body { padding: 22px; display: grid; gap: 14px; flex-grow: 1; }
.fleet-card .body .meta { display:flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fleet-card .body h3 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -0.01em; }
.fleet-card .body .sub { font-size: 13px; color: var(--ink-muted); font-family: var(--mono); letter-spacing: 0.05em; }
.fleet-card .specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; padding-top: 8px; border-top: 1px solid var(--line); }
.fleet-card .specs .spec { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.fleet-card .specs .spec svg { flex-shrink: 0; color: var(--moss); }
.fleet-card .actions { display: flex; gap: 10px; margin-top: auto; padding-top: 4px; }
.fleet-card .actions .btn { flex: 1; justify-content: center; padding: 11px 14px; font-size: 13px; }

/* Service section */
.svc { background: var(--moss-deep); color: var(--paper); }
.svc .h2 em { color: var(--ember); }
.svc .lede { color: oklch(0.85 0.014 80); }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; gap: 32px; } }
.svc-list { display: grid; gap: 8px; margin-top: 36px; }
.svc-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 18px;
  padding: 22px 0;
  border-top: 1px solid oklch(0.45 0.04 145);
  align-items: start;
  transition: padding .2s ease;
  cursor: pointer;
}
.svc-item:last-child { border-bottom: 1px solid oklch(0.45 0.04 145); }
.svc-item:hover { padding-left: 8px; }
.svc-item .num { font-family: var(--mono); font-size: 11px; color: oklch(0.75 0.04 145); padding-top: 6px; }
.svc-item h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 6px; letter-spacing: -0.005em; }
.svc-item p { margin: 0; font-size: 14px; color: oklch(0.85 0.014 80); line-height: 1.45; max-width: 50ch; }
.svc-item .price { font-family: var(--mono); font-size: 13px; color: var(--ember); padding-top: 6px; text-align: right; white-space: nowrap; }

.svc-regions {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid oklch(0.45 0.04 145);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .svc-regions { grid-template-columns: 1fr; gap: 24px; } }
.svc-regions-list { display: flex; flex-wrap: wrap; gap: 10px; }
.region-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: oklch(0.28 0.045 150);
  border: 1px solid oklch(0.42 0.05 145);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.region-chip svg { color: var(--ember); }

/* Map */
.map-wrap {
  background: var(--moss);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.map-wrap::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, oklch(0.4 0.06 145) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, oklch(0.4 0.06 145) 0%, transparent 35%);
  opacity: 0.5;
}
.map-wrap > * { position: relative; z-index: 1; }
.map-hdr { display: flex; justify-content: space-between; align-items: start; margin-bottom: 20px; }
.map-hdr h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 0; }
.map-hdr .legend { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.75 0.04 145); }
.map-svg { width: 100%; height: auto; display: block; }
.map-region { fill: oklch(0.42 0.03 145); stroke: oklch(0.55 0.04 145); stroke-width: 0.6; cursor: pointer; transition: fill .2s ease; }
.map-region.active { fill: var(--ember); }
.map-region:hover { fill: oklch(0.7 0.15 45); }
.map-label { font-family: var(--mono); font-size: 9px; fill: var(--paper); letter-spacing: 0.05em; pointer-events: none; font-weight: 500; }
.map-legend-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.map-legend-list .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: oklch(0.28 0.045 150); color: var(--paper);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px;
}
.map-legend-list .chip .sw { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); }

/* Travel section */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.travel-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover; background-position: center;
  cursor: pointer;
  transition: transform .25s ease;
  isolation: isolate;
}
.travel-card:hover { transform: translateY(-3px); }
.travel-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.18 0.012 80 / 0.85) 0%, oklch(0.18 0.012 80 / 0) 55%);
}
.travel-card .body {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  color: var(--paper); z-index: 1;
}
.travel-card .country {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(0.85 0.014 80); margin-bottom: 6px;
}
.travel-card h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.1; margin: 0;
  letter-spacing: -0.005em;
}
.travel-card.span-3 { grid-column: span 3; grid-row: span 2; }
.travel-card.span-3 h4 { font-size: 38px; }
.travel-card.span-2 { grid-column: span 2; grid-row: span 2; }
.travel-card.span-2 h4 { font-size: 28px; }
.travel-card.span-w2 { grid-column: span 2; }
@media (max-width: 980px) {
  .travel-grid { grid-template-columns: repeat(4, 1fr); }
  .travel-card.span-3 { grid-column: span 4; grid-row: span 2; }
  .travel-card.span-2 { grid-column: span 2; }
  .travel-card.span-w2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .travel-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .travel-card.span-3, .travel-card.span-2, .travel-card.span-w2 { grid-column: span 2; grid-row: span 1; }
  .travel-card.span-3 h4 { font-size: 24px; }
}

/* Reviews */
.reviews { background: var(--paper-2); }
.reviews-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .reviews-row { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.review .stars { color: var(--ember); font-size: 16px; letter-spacing: 2px; }
.review .quote { font-family: var(--serif); font-size: 22px; line-height: 1.3; letter-spacing: -0.005em; font-weight: 400; margin: 0; }
.review .author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--moss); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px;
}
.review .author .meta { display: grid; gap: 2px; }
.review .author .name { font-weight: 600; font-size: 14px; }
.review .author .when { font-size: 12px; color: var(--ink-muted); font-family: var(--mono); }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric .n { font-family: var(--serif); font-size: clamp(48px, 6vw, 76px); font-weight: 400; line-height: 1; letter-spacing: -0.02em; }
.metric .n em { font-style: italic; color: var(--ember); }
/* Reviews empty state */
.reviews-empty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .reviews-empty-grid { grid-template-columns: 1fr; } }
.reviews-empty-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: grid; gap: 14px;
}
.reviews-empty-card svg { color: var(--ember); }
.reviews-empty-card h4 {
  font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 0;
  letter-spacing: -0.01em;
}
.reviews-empty-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 28px 0; cursor: pointer; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.005em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .2s ease, background .15s ease, color .15s ease, border-color .15s ease;
  font-size: 20px;
}
.faq-item[open] summary .icon { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq-item .answer { padding-top: 18px; padding-right: 60px; color: var(--ink-soft); font-size: 16px; line-height: 1.55; max-width: 68ch; }

/* Footer */
.ftr {
  background: var(--ink); color: var(--paper);
  padding: 96px 0 32px;
}
.ftr .display em { color: var(--ember); }
.ftr a { color: var(--paper); opacity: 0.7; transition: opacity .15s ease; }
.ftr a:hover { opacity: 1; }
.ftr-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-top: 64px; padding-bottom: 56px; border-bottom: 1px solid oklch(0.28 0.012 80); }
@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .ftr-grid { grid-template-columns: 1fr; } }
.ftr-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.65 0.012 80); margin: 0 0 16px; font-weight: 500; }
.ftr-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ftr-col li { font-size: 14.5px; }
.ftr-contact { font-family: var(--mono); font-size: 14px; line-height: 1.7; }
.ftr-contact a { display: block; }
.ftr-newsletter input {
  background: oklch(0.22 0.012 80); border: 1px solid oklch(0.32 0.012 80);
  color: var(--paper); padding: 12px 14px; border-radius: 8px; width: 100%;
  font: inherit; font-size: 14px; margin-bottom: 10px;
}
.ftr-newsletter input::placeholder { color: oklch(0.55 0.012 80); }
.ftr-newsletter input:focus { outline: 1px solid var(--ember); }
.ftr-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.ftr-bottom .small { color: oklch(0.55 0.012 80); }
.ftr-socials { display: flex; gap: 10px; }
.ftr-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid oklch(0.32 0.012 80);
  display: grid; place-items: center;
  opacity: 1;
}
.ftr-socials a:hover { background: var(--paper); color: var(--ink); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: oklch(0.18 0.012 80 / 0.5);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  border-radius: var(--r-xl);
  max-width: 760px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  background: var(--paper);
  z-index: 1;
}
.modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Stepper */
.steps { display: flex; gap: 4px; margin-bottom: 28px; }
.steps .step {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--line); transition: background .2s ease;
}
.steps .step.on { background: var(--ember); }
.steps .step.done { background: var(--moss); }

.modal h3 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.01em; }
.modal .sub { color: var(--ink-soft); margin: 0 0 28px; font-size: 15px; }

.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ember); outline-offset: -1px; border-color: var(--ember); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.opt {
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 16px; cursor: pointer; display: grid; gap: 4px;
  transition: border-color .15s, background .15s;
}
.opt:hover { border-color: var(--ink); }
.opt.on { border-color: var(--ember); background: oklch(0.97 0.03 60); }
.opt .ttl { font-weight: 600; font-size: 15px; }
.opt .desc { font-size: 13px; color: var(--ink-muted); }

.summary-box { background: var(--paper-2); border-radius: 14px; padding: 20px; margin: 20px 0; display: grid; gap: 8px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.summary-row .l { color: var(--ink-muted); }
.summary-row .v { font-weight: 600; }
.summary-total { padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.summary-total .l { font-weight: 600; font-size: 16px; }
.summary-total .v { font-family: var(--mono); font-size: 22px; font-weight: 600; color: var(--ember); }

.modal-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }

.success {
  text-align: center; padding: 24px 0;
}
.success .check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--moss); color: var(--paper);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  animation: pop .4s ease;
}
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Calendar */
.cal {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px;
}
.cal-hdr { display: flex; justify-content: space-between; align-items: center; padding: 4px 6px 12px; }
.cal-hdr .ttl { font-weight: 600; }
.cal-hdr button { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); }
.cal-hdr button:hover { background: var(--paper-2); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-grid .dow { font-family: var(--mono); font-size: 10px; text-align: center; color: var(--ink-muted); padding: 6px 0; text-transform: uppercase; letter-spacing: 0.06em; }
.cal-day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 13px; border-radius: 8px;
  cursor: pointer; transition: background .1s ease;
}
.cal-day:hover { background: var(--paper-2); }
.cal-day.muted { color: var(--ink-muted); opacity: 0.4; cursor: default; }
.cal-day.muted:hover { background: transparent; }
.cal-day.start, .cal-day.end { background: var(--ink); color: var(--paper); font-weight: 600; }
.cal-day.in-range { background: oklch(0.92 0.014 80); }
.cal-day.today { outline: 1px solid var(--ember); outline-offset: -3px; }

/* Utility */
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; color: var(--ink-soft);
}
