/* Wyld Paths — matches the app: charcoal panels, copper accent, mono labels, bold white headlines */
:root {
  --bg: #121412;
  --panel: #1C1F1C;
  --card: #242824;
  --line: #2F342F;
  --copper: #C9946A;
  --copper-soft: #D9B48F;
  --text: #ECEAE4;
  --text-2: #A8ADA6;
  --text-3: #7C837B;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:focus-visible, .route-strip:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }
p { margin: 0 0 1.1em; max-width: 60ch; color: var(--text-2); }

/* Labels — the small tracked mono captions from the app */
.label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 .9rem;
}

h1, h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: #fff;
  margin: 0 0 1.1rem;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.08; max-width: 24ch; }

/* Header */
.site-header {
  position: absolute; inset: 0 0 auto 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem var(--gutter);
}
.wordmark { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.tree { width: 20px; height: 20px; fill: var(--copper); }
.wordmark b { display: block; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .95rem; line-height: 1; }
.wordmark small { display: block; font-family: var(--mono); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-3); margin-top: .3rem; }
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a { font-size: .85rem; font-weight: 600; text-decoration: none; color: var(--text-2); }
.site-nav a:hover { color: #fff; }

/* Hero */
.hero { position: relative; min-height: 96vh; display: grid; align-content: end; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 35%; filter: saturate(.88) brightness(.92); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #121412 0%, rgba(18,20,18,.85) 22%, rgba(18,20,18,.35) 55%, rgba(18,20,18,.15) 100%);
}
.hero-text { position: relative; z-index: 1; padding: 8rem var(--gutter) 2.5rem; max-width: 46rem; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 34ch; color: var(--text); }

.button {
  display: inline-block; margin-top: .5rem;
  padding: .9rem 1.6rem;
  background: var(--copper); color: #1A1410;
  text-decoration: none;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
}
.button:hover { background: var(--copper-soft); }

/* Countdown card */
.countdown { display: inline-block; margin-top: 1.75rem; padding: 1rem 1.25rem; background: rgba(28,31,28,.85); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(6px); }
.countdown .label { margin-bottom: .5rem; color: var(--text-3); }
.countdown-main { margin: 0; color: var(--text); font-size: 1rem; }
.countdown-main b { font-weight: 800; font-size: 2.2rem; color: #fff; line-height: 1; margin-right: .3rem; }
.countdown-sub { margin: .35rem 0 0; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--copper); }

/* Stat strip — the "12 days · 8 guests" bar */
.stats {
  position: relative; z-index: 1; margin: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  transform: translateY(50%);
}
.stats div { padding: 1.1rem 1rem; text-align: center; border-left: 1px solid var(--line); }
.stats div:first-child { border-left: 0; }
.stats dd { margin: 0; font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: #fff; line-height: 1; }
.stats dt { font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-top: .4rem; }

/* Panels */
.panel { padding: clamp(6rem, 11vw, 9rem) var(--gutter); display: grid; gap: clamp(2rem, 6vw, 5rem); }
.journey { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
.journey-copy a { color: var(--copper); text-decoration-color: rgba(201,148,106,.5); text-underline-offset: 3px; }
.why { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; background: var(--panel); border-top: 1px solid var(--line); }
.why-copy p { font-size: 1.1rem; }
.why-photo { width: 100%; max-height: 36rem; object-fit: cover; border-radius: var(--radius); filter: saturate(.9) brightness(.9); }
.journey-copy p { font-size: 1.1rem; }
.journey-side { align-self: start; }

.highlights { list-style: none; padding: 0; margin: 0 0 2.5rem; }
.highlights li { position: relative; padding: .65rem 0 .65rem 1.6rem; border-top: 1px solid var(--line); color: var(--text); font-weight: 500; font-size: .95rem; }
.highlights li::before { content: "△"; position: absolute; left: 0; top: .7rem; color: var(--copper); font-size: .8rem; }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.timeline .day { font-family: var(--mono); font-size: .7rem; color: var(--copper); letter-spacing: .08em; padding-top: .35rem; }
.timeline b { display: block; color: #fff; font-weight: 700; font-size: .95rem; }
.timeline div { font-size: .88rem; color: var(--text-2); }

/* Route strip */
.route { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(4rem, 9vw, 6rem) 0; }
.route-intro { padding: 0 var(--gutter) 2rem; }
.route-strip {
  display: flex; gap: 1rem; overflow-x: auto;
  padding: 0 var(--gutter) 1.25rem;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter);
  scrollbar-color: var(--copper) transparent;
}
.stop { flex: 0 0 auto; width: min(70vw, 19rem); margin: 0; scroll-snap-align: start; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--card); }
.stop.wide { width: min(86vw, 27rem); }
.stop img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: saturate(.9) brightness(.9); }
.stop.wide img { aspect-ratio: 4 / 3; }
.stop figcaption { padding: .9rem 1rem 1.1rem; font-size: .85rem; color: var(--text-2); line-height: 1.45; }
.stop figcaption small { display: block; font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); margin-bottom: .35rem; }
.stop figcaption b { display: block; color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .15rem; }

/* Partners */
.support { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.needs { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.needs li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .95rem 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.needs b { color: #fff; font-weight: 700; font-size: .95rem; }
.needs span { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); text-align: right; }

/* Trips */
.travel { background: var(--panel); border-top: 1px solid var(--line); grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: center; }
.trip-cards { display: grid; gap: .8rem; }
.trip { display: flex; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem; text-decoration: none; }
.trip:hover { border-color: var(--copper); }
.trip img { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; flex: 0 0 auto; filter: saturate(.9); }
.trip b { display: block; color: #fff; font-weight: 700; }
.trip small { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-top: .3rem; }

/* About */
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
.about-photo { width: 100%; max-height: 38rem; object-fit: cover; border-radius: var(--radius); filter: saturate(.9) brightness(.92); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 3rem var(--gutter) 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.site-footer p { margin: 0; }
.footer-wordmark { font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: .5rem !important; }
.footer-links a { display: block; text-decoration: none; color: var(--text-2); margin-bottom: .3rem; font-size: .95rem; }
.footer-links a:hover { color: var(--copper); }
.footer-note { grid-column: 1 / -1; font-size: .8rem; color: var(--text-3); margin-top: 1rem !important; max-width: 70ch; }
.footer-note a { color: var(--text-2); }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .site-nav { display: none; }
  .hero { min-height: 100svh; }
  .hero-photo { object-position: 60% 30%; }
  .stats { grid-template-columns: repeat(2, 1fr); transform: translateY(35%); }
  .stats div:nth-child(3) { border-left: 0; }
  .stats div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .journey, .why, .support, .travel, .about, .site-footer { grid-template-columns: 1fr; }
  .panel { padding-top: 6rem; }
  .needs span { display: none; }
}
