:root {
  --pine: #0d1612;
  --pine-2: #121c17;
  --moss: #1c3329;
  --copper: #e07a3d;
  --apricot: #f0b27a;
  --glacier: #8fd4c1;
  --cream: #f3eee4;
  --mist: #b9b3a6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--pine);
  color: var(--cream);
  font-family: Outfit, system-ui, sans-serif;
  overflow-x: hidden;
}

.font-display { font-family: Syne, sans-serif; }

.topo-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}
.topo-bg path {
  fill: none;
  stroke: #8fd4c1;
  stroke-width: 0.6;
  stroke-dasharray: 8 14;
  animation: topo-drift 28s linear infinite;
}
.topo-bg path:nth-child(2) { animation-duration: 36s; stroke: #e07a3d; opacity: 0.45; }
.topo-bg path:nth-child(3) { animation-duration: 22s; }

@keyframes topo-drift {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -420; }
}

.spine {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68px;
  z-index: 40;
  border-right: 1px solid rgba(143, 212, 193, 0.18);
  background: rgba(13, 22, 18, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.spine-word {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.42em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--glacier);
}
.spine-dot {
  width: 10px;
  height: 10px;
  background: var(--copper);
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(224, 122, 61, 0.55); }
  100% { box-shadow: 0 0 0 16px rgba(224, 122, 61, 0); }
}

body { padding-left: 68px; }
.site-wrap { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(13, 22, 18, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(243, 238, 228, 0.08);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-switch {
  width: 36px;
  height: 36px;
}
.nav-desk {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-desk a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--mist);
  transition: color .2s, background .2s, transform .2s;
}
.nav-desk a:hover,
.nav-desk a.active {
  color: var(--pine);
  background: var(--glacier);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(143, 212, 193, 0.35);
  background: transparent;
  color: var(--cream);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 68px;
  background: rgba(13, 22, 18, 0.96);
  z-index: 45;
  padding: 28px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: Syne, sans-serif;
  font-size: 22px;
  border-bottom: 1px solid rgba(243, 238, 228, 0.08);
  padding: 10px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 76px);
}
.hero-copy {
  padding: 64px 48px 48px;
  position: relative;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--glacier);
}
.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--copper);
  animation: grow-line 1.4s ease both;
}
@keyframes grow-line {
  from { width: 0; }
  to { width: 36px; }
}

.display-xl {
  font-family: Syne, sans-serif;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 9vw, 128px);
}
.display-xl span.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--apricot);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 88%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: ken 22s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.16) translateY(-3%); }
}
.hero-stamp {
  position: absolute;
  right: 28px;
  bottom: 48px;
  width: 148px;
  height: 148px;
  border: 2px dashed var(--glacier);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(13, 22, 18, 0.55);
  animation: spin-slow 28s linear infinite;
}
.hero-stamp inner { animation: spin-slow 28s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.clock-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(143, 212, 193, 0.4);
  position: relative;
  background: radial-gradient(circle at 30% 30%, #1c3329, #0d1612);
}
.clock-orb .hand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: bottom center;
  background: var(--copper);
  border-radius: 2px;
}
.clock-orb .h { width: 4px; height: 28px; margin-left: -2px; margin-top: -28px; animation: spin-hour 43200s linear infinite; }
.clock-orb .m { width: 3px; height: 38px; margin-left: -1.5px; margin-top: -38px; background: var(--glacier); animation: spin-min 3600s linear infinite; }
@keyframes spin-hour { to { transform: rotate(360deg); } }
@keyframes spin-min { to { transform: rotate(360deg); } }

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(224, 122, 61, 0.35);
  background: #101a15;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--apricot);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tilt-card {
  background: linear-gradient(160deg, #17241d, #101a15);
  border: 1px solid rgba(143, 212, 193, 0.16);
  transform: rotate(-1.5deg);
  transition: transform .35s ease, border-color .35s;
  position: relative;
  overflow: hidden;
}
.tilt-card:nth-child(even) { transform: rotate(1.4deg); }
.tilt-card:hover {
  transform: rotate(0deg) translateY(-8px);
  border-color: var(--copper);
}
.tilt-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(224,122,61,.25), transparent 70%);
  animation: blob 6s ease-in-out infinite;
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, -12px) scale(1.2); }
}

.ticket {
  background: var(--cream);
  color: var(--pine);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 96% 90%, 100% 94%, 100% 100%, 0 100%, 0 94%, 4% 90%, 0 86%);
  position: relative;
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  border-top: 2px dashed #c9b9a4;
}

.meter {
  width: 100%;
  height: 14px;
  background: #1a2820;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.meter > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--glacier), var(--copper));
  width: 0;
  animation: fill-bar 1.6s ease forwards;
}
@keyframes fill-bar { to { width: var(--w, 60%); } }

.route-line {
  stroke: var(--copper);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 8 10;
  animation: dash-move 1.2s linear infinite;
}
@keyframes dash-move { to { stroke-dashoffset: -36; } }

.ripple {
  position: relative;
}
.ripple::before,
.ripple::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(143, 212, 193, 0.35);
  border-radius: 50%;
  animation: rip 3.2s ease-out infinite;
}
.ripple::after { animation-delay: 1.1s; }
@keyframes rip {
  from { transform: scale(0.7); opacity: 0.7; }
  to { transform: scale(1.35); opacity: 0; }
}

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { animation: reveal-up .8s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes reveal-up {
  to { opacity: 1; transform: none; }
}

.diag {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.switchback {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--copper) 0 18px,
    transparent 18px 28px,
    var(--glacier) 28px 46px,
    transparent 46px 56px
  );
  animation: switch-slide 8s linear infinite;
}
@keyframes switch-slide { to { background-position: 200px 0; } }

.cost-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--copper) var(--p, 70%), #22332b 0);
  animation: ring-spin 12s linear infinite;
  position: relative;
}
.cost-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--pine);
  border-radius: 50%;
}
.cost-ring span { position: relative; z-index: 1; text-align: center; }
@keyframes ring-spin { to { filter: hue-rotate(18deg); } }

.photo-stack { position: relative; height: 420px; }
.photo-stack img {
  position: absolute;
  width: 68%;
  height: 78%;
  object-fit: cover;
  border: 6px solid #f3eee4;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.photo-stack img:nth-child(1) { left: 0; top: 40px; transform: rotate(-6deg); z-index: 1; }
.photo-stack img:nth-child(2) { right: 0; top: 0; transform: rotate(5deg); z-index: 2; }
.photo-stack img:nth-child(3) { left: 18%; bottom: 0; width: 58%; transform: rotate(1deg); z-index: 3; }

.season-wheel {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  animation: wheel-wobble 8s ease-in-out infinite;
  border: 8px solid #1c3329;
}
@keyframes wheel-wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.form-field {
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(143, 212, 193, 0.35);
  color: var(--cream);
  width: 100%;
  padding: 12px 0;
  outline: none;
}
.form-field:focus { border-bottom-color: var(--copper); }

.btn-copper {
  background: var(--copper);
  color: #1a1008;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .2s, background .2s;
}
.btn-copper:hover { transform: translate(3px, -3px); background: var(--apricot); }

.btn-ghost {
  border: 1px solid var(--glacier);
  color: var(--glacier);
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(143, 212, 193, 0.18);
  padding: 48px 40px 28px;
  background: #0a100d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.cookie-banner {
  position: fixed;
  left: 88px;
  right: 24px;
  bottom: 20px;
  z-index: 80;
  background: #f3eee4;
  color: #0d1612;
  padding: 20px 22px;
  display: none;
  gap: 16px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.cookie-banner.show { display: flex; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  border: 0;
  padding: 10px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-weight: 700;
}
.cookie-btn.accept { background: #0d1612; color: #8fd4c1; }
.cookie-btn.reject { background: transparent; border: 1px solid #0d1612; }
.cookie-btn.settings { background: #e07a3d; color: #1a1008; }

.cookie-panel {
  display: none;
  margin-top: 12px;
  font-size: 13px;
}
.cookie-panel.open { display: block; }

.legal-toc {
  position: sticky;
  top: 96px;
}

.faq details {
  border-bottom: 1px solid rgba(143, 212, 193, 0.18);
  padding: 18px 0;
}
.faq summary {
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--copper);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 10px; color: #c9c3b6; }

.slot-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.slot-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--glacier);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(143, 212, 193, 0.25);
}
.slot-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(243, 238, 228, 0.08);
  vertical-align: top;
}
.slot-table tr:hover td { background: rgba(143, 212, 193, 0.05); }

.related a {
  display: block;
  padding: 22px;
  border: 1px solid rgba(143, 212, 193, 0.16);
  transition: border-color .2s, transform .2s;
}
.related a:hover { border-color: var(--copper); transform: translateY(-4px); }

.prose-block p, .prose-block p { color: #c9c3b6; line-height: 1.75; margin-top: 1rem; font-size: 1.05rem; }
.prose-block strong, .prose-block strong { color: #f3eee4; }

@media (max-width: 980px) {
  .spine { display: none; }
  body { padding-left: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 320px; clip-path: none; }
  .nav-desk { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-mobile { inset: 72px 0 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner { left: 12px; right: 12px; flex-direction: column; align-items: stretch; }
  .site-header { padding: 12px 16px; }
  .hero-copy { padding: 36px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
