/* ════════════════════════════════════════════════════════════════
   ALPINE, design tokens + base components
   Source of truth for the look. Built from:
     Art_Direction/Alpine_UI_Design_Direction.md   (Chrome Dark, materials, depth)
     Reference-Library_2026-09/Alpine_Style_Lock.md (Chrome Meadow, Moody + Dawn)

   TWO MOODS. Every component is written against SEMANTIC tokens
   (--bg, --fg, --surface ...). A wrapper element picks the mood:

     <section class="mood-dark">    gate, nav, lineup, footer
     <section class="mood-bright">  every flower section

   Never hard-code a hex below the token block.
   ════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. BRAND CONSTANTS  (locked palette, do not re-derive)
   ───────────────────────────────────────────────────────────── */
:root {
  /* Locked palette */
  --alpine-black:  #0B0B0F;
  --chrome:        #6E6E6E;
  --stone:         #A6A6AA;
  --iridescent:    #7F0BFF;
  --natural-green: #A8C18A;

  /* Working neutrals */
  --cream:      #ECE8E0;
  --off-white:  #F6F4EF;
  --hairline:   #D7D2C8;
  --body-light: #D8D8DC;
  --white:      #FFFFFF;

  /* Dark-surface steps (raised off the black by a hair) */
  --panel-1: #15151A;
  --panel-2: #1B1B22;

  /* Restrained error red, never alarming */
  --error: #C97B7B;

  /* ── Type ──
     DM Sans throughout, medium weights on purpose. */
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --fw-display: 500;   /* display */
  --fw-h1:      500;   /* H1 */
  --fw-h2:      400;   /* H2 / subhead */
  --fw-body:    400;   /* body */
  --fw-ui:      500;   /* buttons, eyebrows, nav */

  --fs-display: clamp(40px, 6vw, 84px);
  --fs-h1:      clamp(32px, 4.6vw, 60px);
  --fs-h2:      clamp(24px, 3vw, 38px);
  --fs-h3:      clamp(18px, 2vw, 24px);
  --fs-body:    clamp(16px, 1.3vw, 20px);
  --fs-small:   15px;
  --fs-caption: 12px;

  --lh-tight: 1.05;
  --lh-head:  1.15;
  --lh-body:  1.5;
  --lh-long:  1.7;

  --track-display: -0.015em;
  --track-caps:    0.18em;   /* tracked caps, captions, eyebrows, nav */

  /* ── Space + shape ── */
  --gutter:     clamp(20px, 5vw, 64px);
  --maxw:       1440px;
  --section-y:  clamp(64px, 9vw, 132px);
  --r-card:     4px;
  --r-input:    2px;
  --r-pill:     999px;

  /* ── Motion, quiet, weighted, expensive ── */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);   /* slow ease-out */
  --t-fast: 250ms;
  --t-slow: 400ms;

  /* ── Depth recipe (four-part stack from the UI direction doc) ──
     base material + top edge-highlight + bottom edge-shadow + ambient cast */
  --edge-top-dark:    inset 0 1px 0 rgba(255,255,255,0.12);
  --edge-bottom-dark: inset 0 -1px 0 rgba(0,0,0,0.30);
  --cast-dark:        0 18px 40px -20px rgba(0,0,0,0.85);
  --depth-dark:       var(--edge-top-dark), var(--edge-bottom-dark), var(--cast-dark);

  --edge-top-bright:    inset 0 1px 0 rgba(255,255,255,0.90);
  --edge-bottom-bright: inset 0 -1px 0 rgba(11,11,15,0.08);
  --cast-bright:        0 14px 34px -22px rgba(11,11,15,0.35);
  --depth-bright:       var(--edge-top-bright), var(--edge-bottom-bright), var(--cast-bright);

  /* Materials */
  --brushed-dark:   linear-gradient(180deg, #1D1D24 0%, #16161C 48%, #131318 100%);
  --brushed-bright: linear-gradient(180deg, #FFFFFF 0%, #FAF8F4 55%, #F2EFE8 100%);
  --polished-chrome: linear-gradient(105deg, #4A4A50 0%, #C9C9CE 22%, #FFFFFF 40%, #8E8E95 58%, #E8E8EC 76%, #55555B 100%);
  --iridescent-film: linear-gradient(105deg, var(--iridescent) 0%, #B98CFF 45%, var(--stone) 100%);
}

/* ─────────────────────────────────────────────────────────────
   2. MOODS  (semantic tokens, components only ever read these)
   ───────────────────────────────────────────────────────────── */

/* Chrome Dark, gate, nav, lineup, footer. Night, instrument panel. */
.mood-dark {
  --bg:          var(--alpine-black);
  --bg-vignette: radial-gradient(1100px 620px at 50% 18%, rgba(255,255,255,0.055), transparent 72%);
  --fg:          var(--off-white);
  --fg-soft:     var(--body-light);
  --fg-mute:     var(--stone);
  --surface:     var(--brushed-dark);
  --surface-flat:var(--panel-1);
  --line:        rgba(166,166,170,0.22);
  --line-strong: rgba(166,166,170,0.38);
  --depth:       var(--depth-dark);
  --field-bg:    rgba(255,255,255,0.05);
  --field-inset: inset 0 2px 4px rgba(0,0,0,0.45);
  --btn-fill:    var(--off-white);
  --btn-label:   var(--alpine-black);
  --glass:       rgba(11,11,15,0.68);
  color-scheme: dark;
}

/* Alpine Paper + Dawn, every flower section. Morning, cream, chrome metal flowers. */
.mood-bright {
  --bg:          var(--cream);
  --bg-vignette: radial-gradient(1100px 620px at 50% 12%, rgba(255,255,255,0.75), transparent 70%);
  --fg:          var(--alpine-black);
  --fg-soft:     #3A3A42;
  --fg-mute:     #5A5A60;   /* darker than Chrome #6E6E6E so captions clear 4.5:1 on cream */
  --surface:     var(--brushed-bright);
  --surface-flat:var(--white);
  --line:        var(--hairline);
  --line-strong: rgba(110,110,110,0.45);
  --depth:       var(--depth-bright);
  --field-bg:    var(--white);
  --field-inset: inset 0 2px 4px rgba(11,11,15,0.07);
  --btn-fill:    var(--alpine-black);
  --btn-label:   var(--cream);
  --glass:       rgba(236,232,224,0.72);
  color-scheme: light;
}

/* ─────────────────────────────────────────────────────────────
   3. BASE
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: var(--fw-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background: var(--alpine-black);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* A mood section paints its own canvas. */
.mood-dark, .mood-bright { background-color: var(--bg); color: var(--fg); position: relative; }
.mood-dark.has-vignette::before,
.mood-bright.has-vignette::before {
  content: ''; position: absolute; inset: 0; background: var(--bg-vignette); pointer-events: none;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

/* ─────────────────────────────────────────────────────────────
   4. TYPE SCALE
   ───────────────────────────────────────────────────────────── */
/* Headings balance their lines, paragraphs avoid orphans. Site-wide (Vanessa). */
h1, h2, h3, .display, .h1, .h2, .h3, .eyebrow, .caption, .flower-close { text-wrap: balance; }
p, li, .lede, .fine { text-wrap: pretty; }

.display { font-size: var(--fs-display); font-weight: var(--fw-display); line-height: var(--lh-tight); letter-spacing: var(--track-display); }
h1, .h1 { font-size: var(--fs-h1); font-weight: var(--fw-h1); line-height: var(--lh-head); letter-spacing: var(--track-display); }
h2, .h2 { font-size: var(--fs-h2); font-weight: var(--fw-h2); line-height: var(--lh-head); }
h3, .h3 { font-size: var(--fs-h3); font-weight: var(--fw-h2); line-height: var(--lh-head); }

.eyebrow, .caption {
  font-size: var(--fs-caption);
  font-weight: var(--fw-ui);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--fg-mute);
}
.lede { font-size: var(--fs-body); line-height: var(--lh-long); color: var(--fg-soft); max-width: 58ch; }
.fine { font-size: 12px; line-height: var(--lh-long); color: var(--fg-mute); }

/* Polished chrome text, headline jewelry, use once per view */
.chrome-type {
  background: var(--polished-chrome);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ─────────────────────────────────────────────────────────────
   5. MATERIALS + DEPTH
   ───────────────────────────────────────────────────────────── */
.material   { background: var(--surface); box-shadow: var(--depth); border-radius: var(--r-card); }
.hairline   { height: 1px; border: 0; background: var(--line); }
.chrome-rule{ height: 1px; border: 0; background: var(--polished-chrome); opacity: 0.55; }

.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--edge-top-dark);
}
.mood-bright .glass { box-shadow: var(--edge-top-bright); }

/* ─────────────────────────────────────────────────────────────
   6. BUTTONS   (violet is an edge, never a fill)
   ───────────────────────────────────────────────────────────── */
.btn {
  --btn-pad-y: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--btn-pad-y) 26px;
  border: 1px solid transparent;
  border-radius: var(--r-card);
  font-size: var(--fs-caption);
  font-weight: var(--fw-ui);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary { background: var(--btn-fill); color: var(--btn-label); box-shadow: var(--edge-top-bright); }
.btn-primary:hover { border-color: var(--iridescent); box-shadow: var(--edge-top-bright), 0 0 0 1px var(--iridescent); }

/* Polished chrome. A highlight sweeps across on hover; nothing moves under reduced motion. */
.btn-chrome {
  color: var(--alpine-black);
  background: linear-gradient(105deg, #B9B9BF 0%, #F4F4F6 28%, #C6C6CC 46%, #EDEDF0 62%, #A9A9AF 82%, #D9D9DD 100%);
  border-color: rgba(255,255,255,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -1px 0 rgba(0,0,0,0.25), 0 10px 24px -14px rgba(0,0,0,0.7);
  overflow: hidden;
}
.btn-chrome::after {
  content: ''; position: absolute; top: -40%; bottom: -40%; left: -35%; width: 30%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}
.btn-chrome:hover::after, .btn-chrome:focus-visible::after { transform: translateX(520%) skewX(-18deg); }
.btn-chrome:hover { border-color: rgba(255,255,255,0.85); }
@keyframes chrome-sweep { from { transform: translateX(-120%) skewX(-18deg); } to { transform: translateX(520%) skewX(-18deg); } }
html.js .btn-chrome::after { animation: chrome-sweep 1.1s var(--ease) 0.5s 1; }
@media (prefers-reduced-motion: reduce) { .btn-chrome::after { display: none; animation: none; } }

.btn-outline { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--iridescent); box-shadow: 0 0 0 1px rgba(127,11,255,0.35); }

.btn-text { padding-inline: 0; background: none; color: var(--fg); }
.btn-text::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px;
  background: var(--iridescent); transition: right var(--t-slow) var(--ease);
}
.btn-text:hover::after { right: 0; }

.btn:disabled { opacity: 0.55; cursor: default; }
.btn:focus-visible, a:focus-visible, input:focus-visible, button:focus-visible {
  outline: 1px solid var(--iridescent);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   7. CARDS + CHIPS
   ───────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--depth);
  padding: clamp(20px, 2.4vw, 32px);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.card:hover { border-color: rgba(127,11,255,0.55); box-shadow: var(--depth), 0 0 0 1px rgba(127,11,255,0.18); }

.chip {
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: var(--fw-ui);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--fg-soft);
}
.chip:hover { border-color: rgba(127,11,255,0.6); }
.chip-sativa { border-color: rgba(168,193,138,0.65); color: var(--natural-green); }
.chip-hybrid { border-color: rgba(166,166,170,0.65); color: var(--stone); }
.chip-indica { border-color: rgba(127,11,255,0.45); color: #B98CFF; }
.mood-bright .chip-indica { color: var(--iridescent); }

/* ─────────────────────────────────────────────────────────────
   8. FORMS   (inset fields, iridescent focus ring)
   ───────────────────────────────────────────────────────────── */
.field-label {
  display: block; margin-bottom: 8px;
  font-size: 11px; font-weight: var(--fw-ui);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--fg-mute);
}
.field {
  width: 100%;
  padding: 14px 16px;
  background: var(--field-bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  color: var(--fg);
  box-shadow: var(--field-inset);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field::placeholder { color: var(--fg-mute); opacity: 0.7; }
.field:focus {
  outline: none;
  border-color: var(--iridescent);
  box-shadow: var(--field-inset), 0 0 0 1px var(--iridescent), 0 0 14px -2px rgba(127,11,255,0.5);
}
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 220px; width: auto; }

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: var(--lh-long); color: var(--fg-soft); cursor: pointer;
}
.check input { margin-top: 4px; width: 15px; height: 15px; flex-shrink: 0; accent-color: var(--iridescent); cursor: pointer; }
.check.error span { color: var(--error); }

.link-btn { background: none; border: 0; padding: 0; font: inherit; color: inherit; text-decoration: underline; cursor: pointer; }
.form-status { font-size: 13px; line-height: var(--lh-long); margin-top: 14px; min-height: 20px; }
.form-status.is-error { color: var(--error); }
.form-status.is-ok { color: var(--fg); }

/* ─────────────────────────────────────────────────────────────
   9. NAV  (no bar colour, white marks, sits straight on the page)
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  color: var(--off-white);
}
.nav-logo { display: block; }
.nav-wordmark { height: 22px; width: auto; }
.nav-mark { display: none; height: 34px; width: 34px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-links a {
  position: relative;
  font-size: var(--fs-caption); font-weight: var(--fw-ui);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  text-decoration: none; color: rgba(246,244,239,0.82);
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a[aria-current="page"] { color: var(--off-white); }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--iridescent);
}
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--off-white); margin: 5px 0; transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease); }

/* Phone: white wordmark left, the chrome mark turning in the middle, menu right. */
@media (max-width: 860px) {
  .nav { padding-block: 12px; }
  .nav-links { display: none; }
  .nav-wordmark { height: 18px; }   /* white wordmark stays on the phone too (Vanessa) */
  .nav-toggle { display: block; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-slow) var(--ease), visibility 0s linear var(--t-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.mobile-menu a { opacity: 0; transform: translateY(10px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(2) { transition-delay: 50ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 100ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 150ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 220ms; }
.mobile-menu a { font-size: var(--fs-h3); font-weight: var(--fw-ui); letter-spacing: var(--track-caps); text-transform: uppercase; text-decoration: none; }
.mobile-menu .btn { align-self: flex-start; margin-top: 12px; }

/* ─────────────────────────────────────────────────────────────
   10. AGE GATE  (frosted glass over a Moody plate, first impression)
   ───────────────────────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: var(--alpine-black) center/cover no-repeat;
}
.age-gate[hidden] { display: none; }
.age-gate { transition: opacity var(--t-slow) var(--ease); }
.age-gate.is-leaving { opacity: 0; pointer-events: none; }
@keyframes gate-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
html.js .age-gate-panel { animation: gate-in 0.6s var(--ease) both; }
.age-gate::before { content: ''; position: absolute; inset: 0; background: rgba(11,11,15,0.55); }
.age-gate-panel {
  position: relative; z-index: 2;
  width: min(460px, 100%);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.age-gate-mark { position: relative; width: clamp(88px, 14vw, 128px); aspect-ratio: 1; margin: 0 auto 20px; }
.age-gate-mark-still,
.age-gate-mark-spin { position: absolute; inset: 0; width: 100%; height: 100%; }
.age-gate-mark-spin[hidden] { display: none; }
/* Once the turning mark is up, the still steps aside. */
.age-gate-mark.is-spinning .age-gate-mark-still { visibility: hidden; }
.age-gate-wordmark { width: clamp(150px, 22vw, 200px); margin: 0 auto 24px; }
.age-gate-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.age-gate-legal { margin-top: 26px; }
.age-gate-legal a { color: inherit; }

/* ─────────────────────────────────────────────────────────────
   11. FOOTER
   ───────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.footer h6, .footer .footer-h { font-size: 11px; font-weight: var(--fw-ui); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--fg-mute); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer a { font-size: var(--fs-small); text-decoration: none; color: var(--fg-soft); transition: color var(--t-fast) var(--ease); }
.footer a:hover { color: var(--fg); }
.footer-legal { margin-top: clamp(32px, 4vw, 56px); padding-top: 24px; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ─────────────────────────────────────────────────────────────
   12. MOTION  (Stage 6 turns these on; nothing starts hidden)
   ───────────────────────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal[data-d="1"] { transition-delay: 90ms; }
html.js .reveal[data-d="2"] { transition-delay: 180ms; }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .age-gate-panel { animation: none; }
  .mobile-menu, .mobile-menu a { transition: none; }
  .hero-mark img { animation: none; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   13. EVENTS  (card list + photo gallery, Swiitch pattern restyled)
   ───────────────────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 14px; }
.event-card {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 32px);
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--depth);
}
.event-card { transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.event-card:hover { border-color: rgba(127,11,255,0.55); box-shadow: var(--depth), 0 0 0 1px rgba(127,11,255,0.18); }
.event-card.is-past { opacity: 0.6; }
.event-date {
  flex-shrink: 0; width: 92px; padding: 14px 0; text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-card);
}
.event-mon { display: block; font-size: 11px; font-weight: var(--fw-ui); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--fg-mute); }
.event-day { display: block; font-size: 30px; font-weight: var(--fw-ui); line-height: 1.1; color: var(--fg); margin-top: 4px; }
.event-yr { display: block; font-size: 11px; letter-spacing: var(--track-caps); color: var(--fg-mute); margin-top: 4px; }
.event-body { flex: 1; min-width: 0; }
.event-label { display: inline-block; font-size: 11px; font-weight: var(--fw-ui); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--fg-mute); margin-bottom: 8px; }
.event-name { font-size: var(--fs-h3); font-weight: var(--fw-ui); line-height: var(--lh-head); }
.event-where { font-size: var(--fs-small); color: var(--fg-soft); margin-top: 6px; }
.event-when { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute); margin-top: 6px; }
.event-note { font-size: var(--fs-small); line-height: var(--lh-long); color: var(--fg-soft); margin-top: 10px; }
.event-link { flex-shrink: 0; }
.events-empty { padding: 40px 28px; border: 1px dashed var(--line-strong); border-radius: var(--r-card); text-align: center; }
.events-empty p { font-size: var(--fs-h3); }
.events-empty-sub { font-size: var(--fs-small) !important; color: var(--fg-soft); margin-top: 8px; }
@media (max-width: 720px) {
  .event-card { flex-wrap: wrap; }
  .event-link { width: 100%; justify-content: center; }
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 28px; }
.gallery-item { position: relative; margin: 0; border-radius: var(--r-card); overflow: hidden; background: var(--surface-flat); }
.gallery-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-dl, .gallery-share {
  position: absolute; bottom: 10px; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border: 1px solid rgba(255,255,255,0.35); border-radius: var(--r-pill);
  background: rgba(11,11,15,0.62); color: var(--off-white); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.gallery-dl { left: 10px; } .gallery-share { right: 10px; display: none; }
.gallery-dl svg, .gallery-share svg { width: 12px; height: 12px; }
html.can-share .gallery-share { display: inline-flex; }
html.can-share .gallery-dl { display: none; }

/* ─────────────────────────────────────────────────────────────
   SIGNUP BLOCK
   ───────────────────────────────────────────────────────────── */
.signup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.signup-copy h2 { margin-top: 14px; }
.signup-copy .lede { margin-top: 18px; }
.signup-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.signup-list li {
  position: relative; padding-left: 18px;
  font-size: var(--fs-small); line-height: var(--lh-long); color: var(--fg-soft);
}
.signup-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: var(--fg-mute);
}
@media (max-width: 860px) { .signup-inner { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   14. COMING SOON  (temporary lock in front of the whole site)
   ───────────────────────────────────────────────────────────── */
.soon { min-height: 100vh; min-height: 100svh; display: grid; place-items: center; padding: var(--gutter); background: var(--alpine-black) center/cover no-repeat; position: relative; }
.soon::before { content: ''; position: absolute; inset: 0; background: rgba(11,11,15,0.55); }
.soon-panel { position: relative; z-index: 2; width: min(520px, 100%); padding: clamp(28px, 4vw, 52px); text-align: center; border: 1px solid var(--line); border-radius: var(--r-card); }
.soon-mark { display: block; position: relative; width: 104px; aspect-ratio: 1; margin: 0 auto 18px; }
.soon-mark img, .soon-mark canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.soon-mark canvas[hidden] { display: none; }
.soon-mark.is-spinning img { visibility: hidden; }
.soon-wordmark { width: clamp(150px, 22vw, 200px); margin: 0 auto 26px; }
.soon .lede { margin: 14px auto 0; }
.soon-legal { margin-top: 22px; }
.soon-team { margin-top: 28px; text-align: left; }
.soon-team-toggle { color: var(--fg-mute); margin-top: 26px; display: inline-block; }
