/* ============================================================
   KISHKINTA — modern luxury, cream/bone, black serif, brass
   ============================================================ */

:root {
  /* Palette — defaults; can be overridden by Tweaks */
  --bone: #f3ecdf;
  --bone-2: #ebe2cf;
  --bone-3: #ddd0b6;
  --ink: #121110;
  --ink-2: #2a2724;
  --muted: #6d655a;
  --brass: #a8814a;
  --brass-2: #c89a5b;
  --line: rgba(18, 17, 16, 0.18);
  --line-soft: rgba(18, 17, 16, 0.09);

  /* Typography — defaults; can be overridden by Tweaks */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Sizing */
  --nav-h: 72px;
  --container: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bone); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--nav-h); /* room for bottom nav */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ---------- Typographic primitives ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.96;
  color: var(--ink);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brass);
  margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}
.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 56ch;
}
p { text-wrap: pretty; }

/* ---------- Containers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TOP TICKER (thin, monospace, scrolling)
   ============================================================ */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  overflow: hidden;
  position: relative;
}
.ticker-row {
  display: flex; align-items: center;
  height: 38px;
  white-space: nowrap;
}
.ticker-brand {
  flex: 0 0 auto;
  padding: 0 var(--gutter);
  border-right: 1px solid var(--line);
  height: 100%;
  display: flex; align-items: center;
  gap: 10px;
}
.ticker-brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
}
.ticker-track {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
}
.ticker-marquee {
  display: inline-flex; gap: 56px;
  padding-left: 24px;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
}
.ticker-marquee span { display: inline-flex; align-items: center; gap: 14px; }
.ticker-marquee span::before {
  content: "✦"; color: var(--brass); font-size: 9px;
}
.ticker-meta {
  flex: 0 0 auto;
  padding: 0 var(--gutter);
  border-left: 1px solid var(--line);
  height: 100%;
  display: flex; align-items: center; gap: 14px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BOTTOM NAV (edge-to-edge, thin top border)
   ============================================================ */
.bottomnav {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--nav-h);
  background: var(--bone);
  border-top: 1px solid var(--line);
  z-index: 100;
  display: flex; align-items: stretch;
}
.bottomnav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.bottomnav-brand {
  display: flex; align-items: center; gap: 14px;
  padding: 0 var(--gutter);
  border-right: 1px solid var(--line);
}
.bottomnav-brand .mark {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--ink);
  position: relative;
  display: inline-block;
}
.bottomnav-brand .mark::after {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%; background: var(--brass);
}
.bottomnav-brand .wm {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.02em;
}
.bottomnav-brand .wm small {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block; margin-top: -2px;
}

.bottomnav-links {
  display: flex; align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.bottomnav-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 0 26px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: background 220ms ease;
}
.bottomnav-links a + a { border-left: 1px solid var(--line-soft); }
.bottomnav-links a:hover { background: var(--bone-2); }
.bottomnav-links a .idx {
  font-size: 9px; color: var(--brass);
  letter-spacing: 0.1em;
}
.bottomnav-links a.active::before {
  content: ""; position: absolute; top: -1px; left: 12px; right: 12px;
  height: 2px; background: var(--brass);
}
.bottomnav-links a.active { color: var(--ink); }

.bottomnav-cta {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 var(--gutter);
  gap: 18px;
}
.bottomnav-cta .time {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.bottomnav-cta a.book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease;
}
.bottomnav-cta a.book:hover { background: var(--brass); color: var(--ink); }
.bottomnav-cta a.book .arrow { display: inline-block; transition: transform 220ms ease; }
.bottomnav-cta a.book:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO — full screen, no boxes
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 640px;
  overflow: hidden;
  background: #0a0908;
  color: #f3ecdf;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
/* Striped placeholder variant */
.hero-media.placeholder {
  background:
    repeating-linear-gradient(135deg,
      #1a1815 0 22px,
      #16140f 22px 44px);
}
.hero-media.placeholder::after {
  content: "FOOTAGE — DRONE SWEEP / KISHKINTA AERIAL / 4K 24FPS";
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(243, 236, 223, 0.35);
  white-space: nowrap;
}
/* Animated gradient variant — golden-hour pan */
.hero-media.gradient {
  background:
    radial-gradient(120% 80% at 20% 20%, #4a3a22 0%, transparent 55%),
    radial-gradient(80% 60% at 80% 70%, #a8814a 0%, transparent 60%),
    linear-gradient(180deg, #1a160f 0%, #2a2118 100%);
  animation: heroPan 28s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0%   { background-position: 0% 0%, 100% 100%, 0% 0%; filter: hue-rotate(0deg); }
  100% { background-position: 30% 20%, 60% 70%, 0% 0%; filter: hue-rotate(-8deg); }
}
/* Topo line variant */
.hero-media.topo {
  background:
    radial-gradient(80% 60% at 50% 60%, #1f1c17 0%, #0a0908 70%);
}
.hero-media.topo svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Grain overlay */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}
/* Vignette */
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%),
    radial-gradient(70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.45) 100%);
}

/* Hero content (no box) */
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 48px) var(--gutter);
  z-index: 2;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  color: rgba(243, 236, 223, 0.78);
}
.hero-top .crosshair {
  display: inline-block; width: 18px; height: 18px;
  border: 1px solid currentColor; border-radius: 50%;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
}
.hero-top .crosshair::before, .hero-top .crosshair::after {
  content: ""; position: absolute; background: currentColor;
}
.hero-top .crosshair::before { left: 50%; top: -3px; bottom: -3px; width: 1px; transform: translateX(-50%); }
.hero-top .crosshair::after  { top: 50%; left: -3px; right: -3px; height: 1px; transform: translateY(-50%); }

.hero-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #f3ecdf;
  margin: 0;
  text-wrap: balance;
}
.hero-headline em { font-style: italic; color: var(--brass-2); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 32px;
  color: rgba(243, 236, 223, 0.85);
}
.hero-bottom .col-mid { text-align: center; }
.hero-bottom .col-end { text-align: right; }
.hero-bottom .scroll {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-bottom .scroll .line {
  display: inline-block; width: 56px; height: 1px; background: currentColor; opacity: 0.6;
}
.hero-bottom .badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(243, 236, 223, 0.45);
  padding: 10px 18px;
  border-radius: 999px;
  color: #f3ecdf;
}
.hero-bottom .badge .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass-2);
  box-shadow: 0 0 0 0 rgba(200, 154, 91, 0.7);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 154, 91, 0.7); }
  100% { box-shadow: 0 0 0 12px rgba(200, 154, 91, 0); }
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-head h2 em { font-style: italic; color: var(--brass); }
.section-head .meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   VENUES GRID
   ============================================================ */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.venue-card {
  position: relative;
  background: var(--bone-2);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  display: block;
  color: inherit;
}
.venue-card:hover { transform: translateY(-3px); }
.venue-card .media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--bone-3);
}
.venue-card .media svg { width: 100%; height: 100%; display: block; }
.venue-card .body {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}
.venue-card .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--brass);
}
.venue-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
}
.venue-card h3 em { font-style: italic; color: var(--brass); }
.venue-card .meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.venue-card .arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 220ms ease, color 220ms ease, transform 360ms cubic-bezier(.2,.7,.2,1);
}
.venue-card:hover .arrow { background: var(--ink); color: var(--bone); transform: rotate(-45deg); }

/* Hero venue card (large) */
.venue-card.hero {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.venue-card.hero .media { aspect-ratio: auto; min-height: 520px; }
.venue-card.hero .body {
  align-self: center;
  padding: 56px;
  grid-template-columns: 1fr;
}
.venue-card.hero h3 { font-size: clamp(40px, 4vw, 72px); }
.venue-card.hero .desc {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 18px 0 28px;
  max-width: 44ch;
}
.venue-card.hero .specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.venue-card.hero .specs .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.venue-card.hero .specs .v { font-family: var(--font-display); font-size: 22px; margin-top: 4px; }

.venue-card.span-6 { grid-column: span 6; }
.venue-card.span-4 { grid-column: span 4; }
.venue-card.span-8 { grid-column: span 8; }

/* ============================================================
   PLACEHOLDER MEDIA (striped + mono caption)
   ============================================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--bone-2) 0 14px,
      var(--bone-3) 14px 28px);
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(18, 17, 16, 0.55);
  background: var(--bone);
  padding: 6px 12px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg,
      #1a1815 0 14px,
      #14120e 14px 28px);
}
.ph.dark::after {
  color: rgba(243, 236, 223, 0.6);
  background: #0a0908;
  border-color: rgba(243, 236, 223, 0.2);
}

/* ============================================================
   THE MANDALA SECTION — circular motif
   ============================================================ */
.mandala-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mandala-visual {
  position: relative;
  aspect-ratio: 1/1;
}
.mandala-visual svg { width: 100%; height: 100%; }
.mandala-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
}
.mandala-copy h2 em { font-style: italic; color: var(--brass); }

/* ============================================================
   STORY / DUAL COLUMN
   ============================================================ */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.dual .col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.dual .col p { color: var(--ink-2); margin: 0 0 16px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.stats .stat:last-child { border-right: 0; }
.stats .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.stats .v {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  margin-top: 14px;
}
.stats .v em { font-style: italic; color: var(--brass); }
.stats .n { color: var(--ink-2); margin-top: 8px; font-size: 13px; }

/* ============================================================
   EVENTS LIST
   ============================================================ */
.events-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 200px 60px;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 280ms cubic-bezier(.2,.7,.2,1), background 280ms ease;
}
.event-row:hover { padding-left: 16px; background: var(--bone-2); }
.event-row .date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--brass); text-transform: uppercase; }
.event-row .title { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 38px); line-height: 1.05; }
.event-row .title em { font-style: italic; color: var(--brass); }
.event-row .where { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.event-row .cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); justify-self: end; }
.event-row .arrow {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease;
  justify-self: end;
}
.event-row:hover .arrow { background: var(--ink); color: var(--bone); transform: rotate(-45deg); }

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.blog-card { grid-column: span 4; display: block; color: inherit; }
.blog-card.feature { grid-column: span 8; }
.blog-card .media { aspect-ratio: 4/3; margin-bottom: 20px; }
.blog-card.feature .media { aspect-ratio: 16/10; }
.blog-card .cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--brass); text-transform: uppercase; }
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  margin: 12px 0 8px;
  letter-spacing: -0.005em;
}
.blog-card.feature h3 { font-size: clamp(32px, 3vw, 46px); }
.blog-card h3 em { font-style: italic; color: var(--brass); }
.blog-card .excerpt { color: var(--ink-2); font-size: 14px; }
.blog-card .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.field { display: block; margin-bottom: 24px; }
.field .label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  display: block; margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 0 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(18,17,16,0.28); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chip {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 220ms ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bone);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}
.btn-primary:hover { background: var(--brass); color: var(--ink); }
.btn-primary .arrow { display: inline-block; transition: transform 280ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 56px;
  background: var(--bone-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer li a { color: var(--ink); transition: color 220ms ease; }
.footer li a:hover { color: var(--brass); }
.footer .word {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 56px 0 0;
}
.footer .word em { font-style: italic; color: var(--brass); }
.footer .fine {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.pagehead {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.pagehead .crumbs {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex; gap: 18px; align-items: center;
}
.pagehead .crumbs a { color: var(--ink-2); }
.pagehead .crumbs .sep { color: var(--brass); }
.pagehead h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.pagehead h1 em { font-style: italic; color: var(--brass); }
.pagehead .sub {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.pagehead .sub p { margin: 0; color: var(--ink-2); }
.pagehead .sub .right { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   VENUE DETAIL
   ============================================================ */
.venue-hero {
  position: relative;
  height: 70vh; min-height: 520px;
  background: #14120e;
  color: var(--bone);
  overflow: hidden;
}
.venue-hero .ph { position: absolute; inset: 0; }
.venue-hero .overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.venue-hero .overlay .top {
  position: absolute; top: var(--gutter); left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(243,236,223,0.78);
}
.venue-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bone);
}
.venue-hero h1 em { font-style: italic; color: var(--brass-2); }

.venue-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.venue-detail .info dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px 24px;
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.venue-detail dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.venue-detail dd { margin: 0; font-family: var(--font-display); font-size: 20px; }
.venue-detail .desc {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--ink-2);
  text-wrap: pretty;
}
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 72px;
}
.venue-gallery .ph { aspect-ratio: 1/1; grid-column: span 2; }
.venue-gallery .ph.tall { grid-column: span 2; aspect-ratio: 1/1.4; }
.venue-gallery .ph.wide { grid-column: span 4; aspect-ratio: 16/9; }

/* ============================================================
   ALBUMS — stacked polaroid decks
   ============================================================ */
.albums-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(28px, 3vw, 48px);
  padding-top: 24px;
}
.album-deck {
  position: relative;
  height: 420px;
  cursor: pointer;
  perspective: 1200px;
  display: block;
  color: inherit;
}
.album-deck .card {
  position: absolute;
  inset: 0;
  background: var(--bone);
  border: 1px solid var(--line);
  box-shadow:
    0 12px 28px -16px rgba(18, 17, 16, 0.35),
    0 2px 6px -2px rgba(18, 17, 16, 0.18);
  padding: 14px 14px 56px;
  transition:
    transform 520ms cubic-bezier(.2,.7,.2,1),
    box-shadow 520ms cubic-bezier(.2,.7,.2,1);
  transform-origin: 50% 88%;
  will-change: transform;
}
.album-deck .card .img {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.album-deck .card .img::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(18,17,16,0.55);
  background: var(--bone);
  padding: 5px 10px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.album-deck .card .img.dark::after {
  color: rgba(243,236,223,0.6);
  background: #0a0908;
  border-color: rgba(243,236,223,0.2);
}
.album-deck .card .img.l1 { background: repeating-linear-gradient(135deg, var(--bone-2) 0 14px, var(--bone-3) 14px 28px); }
.album-deck .card .img.l2 { background: repeating-linear-gradient(45deg,  var(--bone-2) 0 14px, var(--bone-3) 14px 28px); }
.album-deck .card .img.l3 { background: repeating-linear-gradient(135deg, #1a1815 0 14px, #14120e 14px 28px); }
.album-deck .card .img.l4 { background: repeating-linear-gradient(45deg,  #1a1815 0 14px, #14120e 14px 28px); }

.album-deck .card .caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.album-deck .card .caption .num { color: var(--brass); }

/* Back two cards rotate/translate; top stays straight */
.album-deck .card.c-back2 { transform: rotate(-5deg) translate(-14px, 10px); z-index: 1; }
.album-deck .card.c-back1 { transform: rotate(3deg)  translate(10px, 6px);   z-index: 2; }
.album-deck .card.c-front { transform: rotate(-1deg);                          z-index: 3; }

.album-deck:hover .card.c-back2 { transform: rotate(-10deg) translate(-44px, 22px); }
.album-deck:hover .card.c-back1 { transform: rotate(7deg)   translate(38px, 14px); }
.album-deck:hover .card.c-front { transform: rotate(0)      translateY(-12px); box-shadow: 0 28px 60px -24px rgba(18,17,16,0.45), 0 6px 14px -4px rgba(18,17,16,0.2); }

.album-meta {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: end;
}
.album-meta .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
}
.album-meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  margin: 6px 0 0;
  letter-spacing: -0.005em;
}
.album-meta h3 em { font-style: italic; color: var(--brass); }
.album-meta .info {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.album-meta .open {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 220ms ease, color 220ms ease, transform 360ms cubic-bezier(.2,.7,.2,1);
  align-self: end;
}
.album-deck:hover ~ .album-meta .open,
.album-deck:hover + .album-meta .open { background: var(--ink); color: var(--bone); }

/* Compact list variant for albums.html sidebar */
.albums-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 32px;
  scroll-snap-type: x mandatory;
}
.albums-rail::-webkit-scrollbar { height: 4px; }
.albums-rail::-webkit-scrollbar-thumb { background: var(--line); }
.albums-rail .album-deck-wrap {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* ============================================================
   ALBUM CAROUSEL OVERLAY
   ============================================================ */
.album-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  color: var(--bone);
  opacity: 0;
  transition: opacity 280ms ease;
}
.album-overlay.open { display: block; opacity: 1; }

.album-overlay .ao-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(243, 236, 223, 0.78);
  border-bottom: 1px solid rgba(243, 236, 223, 0.12);
  background: rgba(10, 9, 8, 0.6);
}
.album-overlay .ao-top .center {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
}
.album-overlay .ao-top .center em { font-style: italic; color: var(--brass-2); }
.album-overlay .ao-top .right { text-align: right; }

.album-overlay .ao-close {
  background: transparent; border: 1px solid rgba(243,236,223,0.4);
  color: var(--bone);
  padding: 8px 14px; border-radius: 999px;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 220ms ease, color 220ms ease;
}
.album-overlay .ao-close:hover { background: var(--bone); color: var(--ink); }

.album-overlay .ao-stage {
  position: absolute; left: 0; right: 0;
  top: 64px; bottom: 168px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 80px;
}
.album-overlay .ao-photo {
  position: relative;
  width: 100%; max-width: 1100px; height: 100%;
  background: var(--bone);
  padding: 18px 18px 56px;
  box-shadow: 0 50px 140px -40px rgba(0,0,0,0.7);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), opacity 280ms ease;
}
.album-overlay .ao-photo.in { transform: translateY(0); opacity: 1; }
.album-overlay .ao-photo .img {
  position: relative;
  width: 100%; height: 100%;
}
.album-overlay .ao-photo .img::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(18,17,16,0.6);
  background: var(--bone);
  padding: 8px 16px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.album-overlay .ao-photo .img.l1 { background: repeating-linear-gradient(135deg, var(--bone-2) 0 18px, var(--bone-3) 18px 36px); }
.album-overlay .ao-photo .img.l2 { background: repeating-linear-gradient(45deg,  var(--bone-2) 0 18px, var(--bone-3) 18px 36px); }
.album-overlay .ao-photo .img.l3 { background: repeating-linear-gradient(135deg, #1a1815 0 18px, #14120e 18px 36px); }
.album-overlay .ao-photo .img.l3::after,
.album-overlay .ao-photo .img.l4::after { color: rgba(243,236,223,0.7); background: #0a0908; border-color: rgba(243,236,223,0.2); }
.album-overlay .ao-photo .img.l4 { background: repeating-linear-gradient(45deg,  #1a1815 0 18px, #14120e 18px 36px); }

.album-overlay .ao-photo .frame-caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.album-overlay .ao-photo .frame-caption .num { color: var(--brass); }

.album-overlay .ao-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 223, 0.4);
  background: rgba(10, 9, 8, 0.4);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  z-index: 2;
}
.album-overlay .ao-nav:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.album-overlay .ao-prev { left: 20px; }
.album-overlay .ao-next { right: 20px; }

.album-overlay .ao-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 168px;
  padding: 22px 32px;
  border-top: 1px solid rgba(243, 236, 223, 0.12);
  background: rgba(10, 9, 8, 0.8);
}
.album-overlay .ao-strip-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(243, 236, 223, 0.55);
  margin-bottom: 12px;
}
.album-overlay .ao-thumbs {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.album-overlay .ao-thumbs::-webkit-scrollbar { height: 3px; }
.album-overlay .ao-thumbs::-webkit-scrollbar-thumb { background: rgba(243,236,223,0.3); }
.album-overlay .ao-thumb {
  flex: 0 0 130px;
  height: 86px;
  border: 1px solid rgba(243, 236, 223, 0.2);
  position: relative;
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease;
}
.album-overlay .ao-thumb:hover { border-color: var(--brass-2); }
.album-overlay .ao-thumb.active { border-color: var(--brass-2); transform: translateY(-3px); }
.album-overlay .ao-thumb.active::before {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--brass-2);
  pointer-events: none;
}
.album-overlay .ao-thumb .img {
  position: absolute; inset: 6px;
}

@media (max-width: 1100px) {
  .albums-shelf { grid-template-columns: repeat(2, 1fr); }
  .album-overlay .ao-stage { padding: 16px 24px; bottom: 200px; }
  .album-overlay .ao-prev { left: 8px; }
  .album-overlay .ao-next { right: 8px; }
}
@media (max-width: 720px) {
  .albums-shelf { grid-template-columns: 1fr; }
  .album-deck { height: 360px; }
  .album-overlay .ao-stage { padding: 12px 16px; bottom: 220px; top: 60px; }
  .album-overlay .ao-nav { width: 44px; height: 44px; }
  .album-overlay .ao-top { padding: 14px 16px; grid-template-columns: 1fr auto; }
  .album-overlay .ao-top .right { display: none; }
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-toggle {
  position: fixed;
  bottom: calc(var(--nav-h) + 20px);
  right: 20px;
  z-index: 110;
  display: none; /* shown only when tweaks mode active */
}
#tweaks-panel {
  position: fixed;
  bottom: calc(var(--nav-h) + 20px);
  right: 20px;
  width: 320px;
  background: var(--bone);
  border: 1px solid var(--ink);
  z-index: 200;
  display: none;
  font-family: var(--font-body);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
#tweaks-panel.open { display: block; }
#tweaks-panel header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
#tweaks-panel header button {
  background: transparent; border: 0; cursor: pointer; font: inherit;
}
#tweaks-panel .body { padding: 16px; max-height: 70vh; overflow: auto; }
#tweaks-panel .group { margin-bottom: 22px; }
#tweaks-panel .group h5 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 500;
}
#tweaks-panel .options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
#tweaks-panel .opt {
  border: 1px solid var(--line);
  padding: 10px 8px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease;
}
#tweaks-panel .opt:hover { border-color: var(--ink); }
#tweaks-panel .opt.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
#tweaks-panel .swatches { display: flex; gap: 4px; margin-bottom: 6px; }
#tweaks-panel .sw { width: 100%; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .venues-grid { grid-template-columns: repeat(6, 1fr); }
  .venue-card.hero { grid-template-columns: 1fr; }
  .venue-card.span-6, .venue-card.span-4, .venue-card.span-8 { grid-column: span 6; }
  .mandala-block, .dual, .contact-grid, .venue-detail { grid-template-columns: 1fr; gap: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2) { border-right: 0; }
  .blog-card, .blog-card.feature { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero-bottom .col-mid, .hero-bottom .col-end { text-align: left; }
}
@media (max-width: 720px) {
  .ticker-meta { display: none; }
  .bottomnav-inner { grid-template-columns: auto 1fr; }
  .bottomnav-cta { display: none; }
  .bottomnav-brand { padding: 0 16px; }
  .bottomnav-links { overflow-x: auto; }
  .bottomnav-links a { padding: 0 14px; }
  .event-row { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
  .event-row .arrow, .event-row .cat { display: none; }
  .venue-gallery { grid-template-columns: 1fr; }
  .venue-gallery .ph, .venue-gallery .ph.tall, .venue-gallery .ph.wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
