/* ============================================================
   EUGENE.LIVE — design system
   "Dusk under the firs" — Pacific NW night, amber marquee light
   ============================================================ */

:root {
  /* palette */
  --ink: #081210;
  --pine-950: #0b1a15;
  --pine-900: #0e211b;
  --pine-800: #133027;
  --pine-700: #1a4032;
  --pine-500: #2e6a50;
  --sage: #9db8a8;
  --mist: #c9d6cc;
  --cream: #f3efe2;
  --cream-dim: #d8d3c2;
  --amber: #f0a43b;
  --amber-bright: #ffc46a;
  --amber-deep: #c97a22;
  --dusk-1: #0a1626;
  --dusk-2: #14304a;
  --dusk-3: #2c5a5e;
  --danger: #e06c4f;

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  /* rhythm */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;

  --shadow-card: 0 10px 40px -12px rgba(0, 0, 0, 0.55);
  --border-soft: 1px solid rgba(157, 184, 168, 0.16);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 560; line-height: 1.08; margin: 0 0 var(--space-2); letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-2); }
::selection { background: var(--amber); color: var(--ink); }

/* grain overlay for filmic texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--amber-bright); }
.section-lede { color: var(--sage); max-width: 56ch; font-size: 1.05rem; }

/* verified timestamp — the brand signature */
.verified {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  white-space: nowrap;
}
.verified .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px 1px rgba(240, 164, 59, 0.8);
  animation: pulse 2.6s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.62); opacity: 0.5; }
}

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
}
.site-nav.scrolled {
  background: rgba(8, 18, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(157, 184, 168, 0.12);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 620;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}
.brand .tld { color: var(--amber); font-style: italic; }
.brand svg { align-self: center; margin-right: 0.45rem; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--cream-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink) !important;
  background: var(--amber);
  border-radius: 999px;
  padding: 0.55rem 1.15rem !important;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--amber-bright); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--cream);
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
#forest-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-inner {
  width: 100%;
  padding-bottom: clamp(5.5rem, 12vh, 9rem);
  position: relative;
}
.hero-logo {
  width: clamp(230px, 33vw, 420px);
  height: auto;
  margin-bottom: var(--space-3);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-bottom: var(--space-2);
  display: block;
}
.hero-title {
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  font-weight: 480;
  margin-bottom: var(--space-3);
  max-width: 13ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-bright);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--mist);
  max-width: 46ch;
  margin-bottom: var(--space-4);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.hero-meta {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: clamp(5.5rem, 12vh, 9rem);
  text-align: right;
  display: none;
}
@media (min-width: 900px) { .hero-meta { display: block; } }
.hero-meta .big {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber-bright);
  line-height: 1;
}
.hero-meta .small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  color: var(--sage);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 2.6rem;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 6px 24px -8px rgba(240, 164, 59, 0.55);
}
.btn-primary:hover { background: var(--amber-bright); box-shadow: 0 10px 32px -8px rgba(240, 164, 59, 0.7); }
.btn-ghost {
  border-color: rgba(157, 184, 168, 0.35);
  color: var(--cream);
  background: rgba(14, 33, 27, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-bright); }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- sections ---------- */
.section { padding: var(--space-6) 0; position: relative; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.section-head .more {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(240, 164, 59, 0.35);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.section-head .more:hover { color: var(--amber-bright); border-color: var(--amber-bright); }

/* alternating section backdrops */
.section-deep {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(44, 90, 94, 0.14), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--pine-950) 30%, var(--ink));
}

/* ---------- event cards ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}
.event-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 30vw, 360px);
  gap: var(--space-3);
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pine-700) transparent;
}
.event-rail > * { scroll-snap-align: start; }

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(19, 48, 39, 0.55), rgba(11, 26, 21, 0.85));
  border: var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.45s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 164, 59, 0.45);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(240, 164, 59, 0.12);
}
.event-card .card-art {
  aspect-ratio: 16 / 9.5;
  position: relative;
  overflow: hidden;
  background: var(--pine-900);
}
.event-card .card-art svg, .event-card .card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.event-card:hover .card-art svg, .event-card:hover .card-art img { transform: scale(1.055); }
.card-date-chip {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: rgba(8, 18, 16, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243, 239, 226, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  text-align: center;
  line-height: 1.05;
}
.card-date-chip .mon { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); display: block; }
.card-date-chip .day { font-family: var(--font-display); font-size: 1.45rem; color: var(--cream); }
.card-status {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(8, 18, 16, 0.8);
  border: 1px solid currentColor;
}
.card-status.sold-out { color: var(--danger); }
.card-status.selling-fast { color: var(--amber-bright); }
.card-status.canceled { color: var(--danger); }
.card-status.free { color: #8fd6a8; }
.event-card .card-body { padding: var(--space-2) var(--space-2) 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.event-card .card-cat {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.event-card h3 {
  font-size: 1.28rem;
  margin: 0;
  color: var(--cream);
  font-weight: 540;
}
.event-card .card-meta {
  color: var(--sage);
  font-size: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 1em;
}
.event-card .card-foot {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(157, 184, 168, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.event-card .price { font-weight: 600; font-size: 0.9rem; color: var(--cream-dim); }

.save-btn {
  background: none;
  border: 1px solid rgba(157, 184, 168, 0.3);
  border-radius: 999px;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  flex: none;
}
.save-btn:hover { color: var(--amber-bright); border-color: var(--amber); transform: scale(1.08); }
.save-btn.saved { color: var(--ink); background: var(--amber); border-color: var(--amber); }
.save-btn svg { width: 15px; height: 15px; }

/* canceled overlay treatment */
.event-card.is-canceled .card-art { filter: grayscale(0.85) brightness(0.7); }
.event-card.is-canceled h3 { text-decoration: line-through; text-decoration-color: rgba(224, 108, 79, 0.7); text-decoration-thickness: 2px; }

/* ---------- category ribbon ---------- */
.cat-ribbon {
  overflow: hidden;
  padding: var(--space-3) 0;
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
  background: var(--pine-950);
  position: relative;
}
.cat-track {
  display: flex;
  gap: var(--space-2);
  width: max-content;
  animation: marquee 42s linear infinite;
}
.cat-ribbon:hover .cat-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(157, 184, 168, 0.25);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.cat-pill:hover { border-color: var(--amber); color: var(--amber-bright); background: rgba(240, 164, 59, 0.06); }
.cat-pill .cat-glyph { font-size: 1.1em; font-style: normal; }

/* ---------- how it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-3);
  counter-reset: step;
}
.how-step {
  position: relative;
  padding: var(--space-3);
  border: var(--border-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(19, 48, 39, 0.35), transparent);
  overflow: hidden;
}
.how-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  display: block;
  margin-bottom: var(--space-2);
}
.how-step h3 { font-size: 1.35rem; }
.how-step p { color: var(--sage); font-size: 0.94rem; margin: 0; }
.how-step .glyph {
  position: absolute;
  right: -0.6rem; bottom: -1rem;
  font-size: 5rem;
  opacity: 0.07;
  font-family: var(--font-display);
  pointer-events: none;
}

/* ---------- venues ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-3);
}
.venue-card {
  position: relative;
  border-radius: var(--radius);
  border: var(--border-soft);
  padding: var(--space-3);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(400px 180px at 20% 110%, rgba(240, 164, 59, 0.1), transparent 65%),
    linear-gradient(160deg, rgba(19, 48, 39, 0.5), rgba(11, 26, 21, 0.9));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}
.venue-card:hover { transform: translateY(-5px); border-color: rgba(240, 164, 59, 0.4); }
.venue-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.venue-card .v-meta { font-size: 0.84rem; color: var(--sage); }
.venue-card .v-count {
  position: absolute;
  top: var(--space-2); right: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber);
  border: 1px solid rgba(240, 164, 59, 0.35);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.venue-card .v-trees {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60%;
  opacity: 0.16;
  pointer-events: none;
}

/* ---------- filters (events page) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: var(--space-4);
}
.chip {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(157, 184, 168, 0.3);
  background: transparent;
  color: var(--cream-dim);
  font-size: 0.88rem;
  transition: all 0.22s ease;
}
.chip:hover { border-color: var(--amber); color: var(--amber-bright); }
.chip.active { background: var(--amber); border-color: var(--amber); color: var(--ink); font-weight: 600; }
.filter-select, .search-input {
  background: rgba(14, 33, 27, 0.6);
  border: 1px solid rgba(157, 184, 168, 0.3);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font: inherit;
  font-size: 0.88rem;
}
.filter-select:focus, .search-input:focus { outline: none; border-color: var(--amber); }
.filter-select option { background: var(--pine-900); }
.search-input { min-width: 210px; }
.search-input::placeholder { color: rgba(157, 184, 168, 0.6); }
.result-count { font-family: var(--font-mono); font-size: 0.75rem; color: var(--sage); letter-spacing: 0.08em; margin-bottom: var(--space-3); }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--space-6) + 3.5rem) 0 var(--space-5);
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 15% -20%, rgba(44, 90, 94, 0.22), transparent 60%),
    linear-gradient(180deg, #0a1626 0%, var(--pine-950) 55%, var(--ink) 100%);
}
.page-hero .treeline {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 500; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--amber-bright); }

/* ---------- event detail ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: var(--space-4);
  align-items: start;
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-art {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-soft);
  aspect-ratio: 16 / 9;
  background: var(--pine-900);
  margin-bottom: var(--space-3);
}
.detail-art svg, .detail-art img { width: 100%; height: 100%; object-fit: cover; }
.detail-panel {
  position: sticky;
  top: 5.5rem;
  border: var(--border-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(19, 48, 39, 0.5), rgba(11, 26, 21, 0.9));
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.detail-panel .row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(157, 184, 168, 0.1);
  font-size: 0.94rem;
}
.detail-panel .row:last-of-type { border-bottom: none; }
.detail-panel .row .icon { color: var(--amber); flex: none; width: 18px; margin-top: 3px; }
.detail-panel .row a { color: var(--amber-bright); }
.detail-panel .label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); display: block; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.detail-actions .btn { flex: 1; justify-content: center; min-width: 130px; }
.status-banner {
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-weight: 600;
  margin-bottom: var(--space-3);
  border: 1px solid;
  display: flex;
  gap: 0.7em;
  align-items: center;
}
.status-banner.canceled { color: var(--danger); border-color: rgba(224, 108, 79, 0.45); background: rgba(224, 108, 79, 0.08); }
.status-banner.postponed, .status-banner.selling-fast { color: var(--amber-bright); border-color: rgba(240, 164, 59, 0.4); background: rgba(240, 164, 59, 0.07); }
.status-banner.sold-out { color: var(--danger); border-color: rgba(224, 108, 79, 0.45); background: rgba(224, 108, 79, 0.08); }
.detail-body h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 520; }
.detail-desc { color: var(--mist); font-size: 1.06rem; max-width: 62ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: var(--space-3) 0; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(157, 184, 168, 0.28);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.report-link {
  background: none;
  border: none;
  color: var(--sage);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.report-link:hover { color: var(--amber-bright); }

/* ---------- forms & modals ---------- */
.field { margin-bottom: var(--space-2); }
.field label { display: block; font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 0.35rem; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(8, 18, 16, 0.65);
  border: 1px solid rgba(157, 184, 168, 0.28);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.75rem 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.field select option { background: var(--pine-900); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--amber); }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--sage); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 10, 8, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.modal {
  width: min(520px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--pine-950);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-4);
  position: relative;
  animation: modalUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalUp { from { transform: translateY(24px); opacity: 0; } }
.modal h3 { font-size: 1.5rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--sage);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.4rem;
}
.modal-close:hover { color: var(--cream); }

/* toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--pine-800);
  border: 1px solid rgba(240, 164, 59, 0.4);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  z-index: 300;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-card);
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- newsletter / CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: var(--border-soft);
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(240, 164, 59, 0.12), transparent 60%),
    var(--pine-950);
  text-align: center;
  padding: var(--space-6) 0;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 20ch; margin-inline: auto; }
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 440px;
  margin: var(--space-3) auto 0;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(8, 18, 16, 0.7);
  border: 1px solid rgba(157, 184, 168, 0.3);
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  color: var(--cream);
  font: inherit;
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--amber); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  background: #050c0a;
  padding-top: 0;
}
.footer-trees { display: block; width: 100%; margin-bottom: -1px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer a { color: var(--sage); text-decoration: none; font-size: 0.92rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--amber-bright); }
.footer-blurb { color: var(--sage); font-size: 0.92rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(157, 184, 168, 0.1);
  padding: var(--space-3) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(157, 184, 168, 0.65);
}

/* ---------- reveal (GSAP hooks; graceful without JS) ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.no-js .reveal, .reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .cat-track { animation: none; flex-wrap: wrap; width: auto; }
  .scroll-cue::after, .verified .dot { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- empty state ---------- */
.empty-state {
  text-align: center;
  padding: var(--space-5) var(--space-2);
  color: var(--sage);
  border: 1px dashed rgba(157, 184, 168, 0.25);
  border-radius: var(--radius);
}
.empty-state .glyph { font-size: 2.4rem; display: block; margin-bottom: var(--space-2); opacity: 0.7; }

/* ---------- responsive nav ---------- */
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 11, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-3);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 120;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); }
}

/* util */
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -48px; left: 1rem;
  z-index: 500;
  background: var(--amber);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; }
