/* =========================================================================
   Josh Miller Blues — main.css (v2 redesign, 2026)
   Mobile-first, no framework. Token-based design system.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* -- Brand palette ----------------------------------------------------- */
  --c-bg:           #1a1612;   /* espresso, body background */
  --c-bg-elev:     #221c17;   /* card / elevated surface */
  --c-bg-deep:     #110d0a;   /* hero overlay base */
  --c-parchment:    #f4ead5;   /* warm cream surface */
  --c-parchment-dim:#d9cfb8;
  --c-ink:          #1a1612;   /* dark text on parchment */
  --c-ink-soft:    #4a3e32;
  --c-line:         rgba(244, 234, 213, 0.12);  /* hairline on dark */

  --c-amber:        #d99933;   /* primary accent */
  --c-amber-hot:    #c4892f;   /* hover */
  --c-amber-warm:   #f0bd6a;   /* highlight */
  --c-brick:        #b53a2a;   /* secondary accent */

  --c-on-amber:     #1a1612;   /* text color when on amber background */
  --c-text:         #ece1c8;   /* default text on dark */
  --c-text-mute:    #b8a98f;
  --c-text-dim:     rgba(236, 225, 200, 0.6);

  /* -- Typography -------------------------------------------------------- */
  --f-display: 'Big Shoulders Display', 'Bebas Neue', 'Oswald', 'Arial Narrow', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-xs:   0.8125rem;   /* 13px */
  --fs-sm:   0.9375rem;   /* 15px */
  --fs-base: 1.0625rem;   /* 17px */
  --fs-md:   1.1875rem;   /* 19px */
  --fs-lg:   1.5rem;      /* 24px */
  --fs-xl:   2rem;        /* 32px */
  --fs-2xl:  clamp(2.25rem, 5vw, 3.25rem);   /* hero h2 */
  --fs-3xl:  clamp(2.75rem, 7vw, 4.75rem);   /* hero h1 */

  /* -- Spacing scale (8pt base) ----------------------------------------- */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.5rem;
  --s-6:  2rem;
  --s-7:  3rem;
  --s-8:  4rem;
  --s-9:  6rem;
  --s-10: 8rem;

  /* -- Layout ------------------------------------------------------------ */
  --content-max:   1200px;
  --content-narrow: 720px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --header-h-mobile: 96px;   /* drives mobile drawer top padding (grown for larger logo) */
  --header-h:        128px;  /* desktop */

  /* -- Motion ------------------------------------------------------------ */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:   180ms var(--ease);
  --t-base:   260ms var(--ease);
  --t-slow:   500ms var(--ease);

  /* -- Elevation --------------------------------------------------------- */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow:    0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

/* -------------------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* offset for sticky header on anchor jumps */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(217,153,51,0.05), transparent 60%),
    url("../img/texture-paper.jpg");
  background-blend-mode: overlay, normal;
  background-size: 100% auto, 600px auto;
  background-position: top center, center;
  background-repeat: no-repeat, repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 var(--s-4);
  color: var(--c-parchment);
  text-transform: uppercase;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); font-weight: 800; }
h3 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: 0.05em; }
h4 { font-size: var(--fs-lg); font-weight: 700; letter-spacing: 0.08em; }
p  { margin: 0 0 1em; }
a  { color: var(--c-amber); text-decoration: none; transition: color var(--t-fast); }
a:hover, a:focus-visible { color: var(--c-amber-warm); }

::selection { background: var(--c-amber); color: var(--c-on-amber); }

.eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: var(--c-amber);
  margin: 0 0 var(--s-3);
  display: inline-block;
}
.lead { font-size: var(--fs-md); color: var(--c-text); max-width: var(--content-narrow); }
.muted { color: var(--c-text-mute); }
blockquote {
  border-left: 3px solid var(--c-amber);
  padding: var(--s-3) var(--s-5);
  margin: var(--s-6) 0;
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-parchment);
}
blockquote cite {
  display: block;
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--c-text-mute);
  font-style: normal;
}
hr { border: 0; border-top: 1px solid var(--c-line); margin: var(--s-7) 0; }

/* Focus styles, visible only for keyboard users */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------
   4. Accessibility helpers
   ------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--c-amber); color: var(--c-on-amber);
  padding: var(--s-3) var(--s-4); font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* -------------------------------------------------------------------------
   5. Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--s-4);
}
@media (min-width: 720px) { .container { padding-inline: var(--s-6); } }
@media (min-width: 1024px) { .container { padding-inline: var(--s-7); } }

.container--narrow { max-width: var(--content-narrow); }

.section {
  padding-block: var(--s-8);
}
@media (min-width: 720px) {
  .section { padding-block: var(--s-9); }
}
.section + .section { border-top: 1px solid var(--c-line); }
.section--dark    { background: var(--c-bg-deep); }
.section--surface { background: var(--c-bg-elev); }
.section--parch   { background: var(--c-parchment); color: var(--c-ink); }
.section--parch h1, .section--parch h2, .section--parch h3 { color: var(--c-ink); }
.section--parch a:hover { color: var(--c-brick); }

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* -------------------------------------------------------------------------
   6. Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 13, 10, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--content-max); margin: 0 auto;
  padding: var(--s-3) var(--s-4);
}
@media (min-width: 720px) {
  .site-header__inner { padding: var(--s-4) var(--s-6); }
}
/* Logo lockup — JMBR mark on top, "Josh Miller Blues Revue" subtitle below.
   Used in both header and footer with size variants tuned to context. */
.logo-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--c-parchment);
  line-height: 1;
}
.logo-lockup__mark {
  display: block;
  height: 64px;          /* mobile default */
  width: auto;
}
.logo-lockup__text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.logo-lockup:hover .logo-lockup__text { color: var(--c-amber); }

@media (min-width: 720px) {
  .site-header__logo .logo-lockup__mark { height: 90px; }
  .site-header__logo .logo-lockup__text { font-size: 13px; letter-spacing: 0.28em; }
}

/* Footer variant — larger, more visual weight at the bottom of the page */
.logo-lockup--footer {
  margin-bottom: var(--s-3);
  align-items: flex-start;
}
.logo-lockup--footer .logo-lockup__mark { height: 120px; }
.logo-lockup--footer .logo-lockup__text {
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--c-parchment);
}

.site-nav { display: none; }
.site-nav.is-open { display: block; }
.site-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.site-nav__list a {
  display: block; padding: var(--s-4) var(--s-5);
  color: var(--c-parchment); text-decoration: none;
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--c-line);
}
.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list a[aria-current="page"] {
  color: var(--c-amber);
}
@media (min-width: 960px) {
  .site-nav { display: block; }
  .site-nav__list { flex-direction: row; align-items: center; gap: var(--s-2); }
  .site-nav__list a { padding: var(--s-3) var(--s-4); border-bottom: 0; }
  .nav-toggle { display: none !important; }
}

/* Mobile drawer
   - Full-viewport overlay (inset:0)
   - Sits BELOW the sticky header (z-index 49 vs header 50) so the close-X stays visible
   - Content is centered vertically so it reads as a single composed unit
   - No per-item borders / no internal scrolling — content is tuned to fit every common phone
   - Falls back to overflow-y: auto only as a safety net on very tall content (which we don't have) */
@media (max-width: 959.98px) {
  .site-nav {
    position: fixed; inset: 0;
    background: rgba(17,13,10,0.98);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    z-index: 49;
    padding: var(--header-h-mobile) var(--s-5) max(var(--s-5), env(safe-area-inset-bottom));
    overflow-y: auto;
    display: none;
  }
  /* When open, become a centered flex column so nav + CTA sit in the middle */
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--s-5);
  }
  .site-nav__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: var(--s-1);
    text-align: center;
  }
  .site-nav__list a {
    display: block;
    padding: var(--s-3) var(--s-3);
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    letter-spacing: 0.1em;
    border-bottom: 0;
    transition: color var(--t-fast);
  }
  .site-nav__list a[aria-current="page"] {
    color: var(--c-amber);
  }
  .site-nav__list a[aria-current="page"]::after {
    content: "";
    display: block;
    width: 28px; height: 2px;
    background: var(--c-amber);
    margin: var(--s-1) auto 0;
  }
  /* Book CTA — pill, centered, with a comfy gap above the nav */
  .site-nav__cta {
    align-self: center;
    padding: var(--s-3) var(--s-7);
    background: var(--c-amber);
    color: var(--c-on-amber) !important;
    border-radius: 999px;
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: var(--fs-base);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(217,153,51,0.25);
  }
}
@media (min-width: 960px) {
  .site-nav__cta { display: none; }
}

/* Hide the FAB while the mobile drawer is open */
body.nav-open .fab { display: none; }
/* Lock page scroll when drawer open (belt + suspenders with the JS) */
body.nav-open { overflow: hidden; }

/* When drawer is open, swap "Menu" label for "Close" via aria-expanded state */
.nav-toggle__label::before { content: "Menu"; }
.nav-toggle[aria-expanded="true"] .nav-toggle__label::before { content: "Close"; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: transparent; color: var(--c-parchment);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  padding: var(--s-2) var(--s-3); cursor: pointer;
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; font-size: var(--fs-xs);
}
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after {
  content: ""; display: block; width: 18px; height: 2px; background: currentColor;
  transition: transform var(--t-fast);
}
.nav-toggle__icon::before { transform: translateY(-5px); }
.nav-toggle__icon::after  { transform: translateY(3px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after  { transform: rotate(-45deg) translateY(-3px); }

/* -------------------------------------------------------------------------
   7. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 0.9rem 1.5rem;
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-size: var(--fs-sm);
  text-decoration: none;
  border: 1.5px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--c-amber); outline-offset: 3px; }
.btn--primary {
  background: var(--c-amber); color: var(--c-on-amber);
  border-color: var(--c-amber);
}
.btn--primary:hover { background: var(--c-amber-hot); border-color: var(--c-amber-hot); color: var(--c-on-amber); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--c-parchment);
  border-color: var(--c-parchment);
}
.btn--ghost:hover { background: var(--c-parchment); color: var(--c-on-amber); }
.btn--brick { background: var(--c-brick); color: var(--c-parchment); border-color: var(--c-brick); }
.btn--brick:hover { background: #9a3122; border-color: #9a3122; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-base); }

/* Header Book CTA */
.header-cta { display: none; }
@media (min-width: 720px) {
  .header-cta { display: inline-flex; margin-inline-start: var(--s-3); }
}

/* Mobile sticky "Book" FAB */
.fab {
  position: fixed; right: var(--s-4); bottom: var(--s-4); z-index: 40;
  background: var(--c-amber); color: var(--c-on-amber);
  padding: var(--s-3) var(--s-5); border-radius: 999px;
  font-family: var(--f-display); font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; font-size: var(--fs-sm);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--s-2);
}
@media (min-width: 720px) { .fab { display: none; } }

/* -------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 720px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(17,13,10,0.4) 0%, rgba(17,13,10,0.85) 75%, var(--c-bg) 100%),
    radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(17,13,10,0.6) 70%);
}
.hero__content {
  width: 100%; max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--s-8) var(--s-4) var(--s-9);
  position: relative; z-index: 1;
}
@media (min-width: 720px) {
  .hero__content { padding: var(--s-9) var(--s-7); }
}
.hero__title {
  font-size: var(--fs-3xl);
  margin: 0 0 var(--s-4);
  color: var(--c-parchment);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero__title em { font-style: normal; color: var(--c-amber); }
.hero__tagline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: var(--c-parchment);
  max-width: 30ch;
  margin: 0 0 var(--s-6);
  opacity: 0.92;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* -------------------------------------------------------------------------
   9. Upcoming shows ribbon (home + shows page)
   ------------------------------------------------------------------------- */
.shows-strip { display: grid; gap: var(--s-4); margin-top: var(--s-5); }
@media (min-width: 720px) { .shows-strip { grid-template-columns: repeat(3, 1fr); } }

.show-card {
  background: var(--c-bg-elev);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: var(--s-5);
  transition: transform var(--t-fast), border-color var(--t-fast);
  text-decoration: none; color: inherit;
  display: block;
}
.show-card:hover { transform: translateY(-2px); border-color: var(--c-amber); }
.show-card__date {
  font-family: var(--f-display);
  font-weight: 800; font-size: var(--fs-md);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-amber); margin-bottom: var(--s-2);
}
.show-card__venue { font-weight: 600; color: var(--c-parchment); margin-bottom: var(--s-1); }
.show-card__meta  { font-size: var(--fs-sm); color: var(--c-text-mute); }

/* -------------------------------------------------------------------------
   10. Music sampler / Album hero
   ------------------------------------------------------------------------- */
.album {
  display: grid; gap: var(--s-6); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .album { grid-template-columns: minmax(220px, 320px) 1fr; gap: var(--s-7); }
}
.album__cover {
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
}
.album__cover img { display: block; width: 100%; height: auto; }
.album__cover::after {
  content: ""; position: absolute; inset: -8px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(217,153,51,0.15), transparent 70%);
  z-index: -1;
}

.streaming-links {
  list-style: none; padding: 0; margin: var(--s-5) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.streaming-links a {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0.6rem 1rem;
  background: rgba(244,234,213,0.08); color: var(--c-parchment);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-fast);
}
.streaming-links a:hover {
  background: var(--c-amber); color: var(--c-on-amber); border-color: var(--c-amber);
}

/* Tracklist + Play All control bar */
.tracklist-controls {
  display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center;
  margin: var(--s-5) 0 var(--s-3);
}
.tracklist-controls__icon {
  font-size: 0.85em;
  margin-inline-end: 0.25em;
}
.tracklist { list-style: none; padding: 0; margin: var(--s-3) 0; }
.tracklist__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--t-fast);
}
.tracklist__item:hover { background: rgba(217,153,51,0.05); }
/* Currently-playing track gets a clear visual treatment */
.tracklist__item.is-playing {
  background: rgba(217,153,51,0.12);
  border-left: 3px solid var(--c-amber);
  padding-left: calc(var(--s-2) - 3px);
}
.tracklist__item.is-playing .tracklist__num { color: var(--c-amber-warm); }
.tracklist__item.is-playing .tracklist__title { color: var(--c-amber); }
.tracklist__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: var(--fs-lg); color: var(--c-amber);
  letter-spacing: 0.05em;
}
.tracklist__title {
  font-family: var(--f-body); font-weight: 600; color: var(--c-parchment);
}
.tracklist__player audio {
  width: 280px; max-width: 50vw; height: 32px;
}
@media (max-width: 719.98px) {
  .tracklist__item { grid-template-columns: 2rem 1fr; }
  .tracklist__player { grid-column: 1 / -1; padding-top: var(--s-2); }
  .tracklist__player audio { width: 100%; max-width: none; }
}

/* -------------------------------------------------------------------------
   11. Gallery / Lightbox
   ------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2);
  list-style: none; padding: 0; margin: var(--s-6) 0;
}
@media (min-width: 540px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(5, 1fr); gap: var(--s-3); } }

.gallery a {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--c-bg-elev); position: relative;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-base), filter var(--t-base);
  filter: saturate(0.85) contrast(1.05);
}
.gallery a:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.1); }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center; z-index: 100;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255,255,255,0.1); color: #fff; border: 0;
  width: 48px; height: 48px; cursor: pointer; font-size: 1.4rem;
  border-radius: 50%;
  transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--c-amber); color: var(--c-on-amber); }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev  { top: 50%; left: 16px;  transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 16px; transform: translateY(-50%); }

/* -------------------------------------------------------------------------
   12. Videos — lite-youtube pattern
   ------------------------------------------------------------------------- */
.videos { display: grid; gap: var(--s-4); margin: var(--s-6) 0; }
@media (min-width: 720px) { .videos { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

.lyt {
  display: block; position: relative; aspect-ratio: 16 / 9;
  background: #000; cursor: pointer; overflow: hidden;
  text-decoration: none;
  border-radius: var(--radius);
}
.lyt::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.lyt__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-base); }
.lyt:hover .lyt__thumb { transform: scale(1.04); }
.lyt__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 48px; background: rgba(0,0,0,0.7); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
  z-index: 2;
}
.lyt:hover .lyt__play { background: var(--c-brick); }
.lyt__play::after {
  content: ""; width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.lyt__title {
  position: absolute; bottom: var(--s-3); left: var(--s-4); right: var(--s-4);
  color: #fff; font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-sm); letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}
.lyt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------------------
   13. Calendar
   ------------------------------------------------------------------------- */
.calendar-embed {
  position: relative; overflow: hidden;
  margin: var(--s-6) 0;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
@media (min-width: 720px) {
  .calendar-embed { aspect-ratio: 5 / 3; }
}
.calendar-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------------------
   14. Press
   ------------------------------------------------------------------------- */
.press-grid {
  display: grid; gap: var(--s-6); grid-template-columns: 1fr;
  margin: var(--s-6) 0;
}
@media (min-width: 720px) { .press-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }

.press-card { text-align: center; }
.press-card img { margin: var(--s-4) auto; border: 1px solid var(--c-line); border-radius: var(--radius-sm); }
.press-card__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-lg); letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--c-parchment); margin-bottom: var(--s-1);
}

.pullquote {
  background: var(--c-bg-elev);
  border-left: 4px solid var(--c-amber);
  padding: var(--s-6) var(--s-6);
  font-size: var(--fs-md);
  line-height: 1.5;
  font-style: italic;
  color: var(--c-parchment);
  margin: var(--s-7) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote cite {
  display: block;
  margin-top: var(--s-4);
  font-family: var(--f-display); font-style: normal;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  font-size: var(--fs-xs);
  color: var(--c-amber);
}

/* -------------------------------------------------------------------------
   15. Booking form
   ------------------------------------------------------------------------- */
.booking-form {
  display: grid; gap: var(--s-4); margin-top: var(--s-6);
}
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label {
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-amber);
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--c-bg-elev); color: var(--c-parchment);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-3);
  font-family: var(--f-body); font-size: var(--fs-base);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-amber); background: var(--c-bg-deep);
}
.field textarea { min-height: 140px; resize: vertical; }
@media (min-width: 720px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form .field--full { grid-column: 1 / -1; }
}

/* -------------------------------------------------------------------------
   15.5 Shop / merch cards
   ------------------------------------------------------------------------- */
.merch-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
  margin: var(--s-6) 0;
}
@media (min-width: 540px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .merch-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }

.merch-card {
  background: var(--c-bg-elev);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.merch-card:hover { transform: translateY(-2px); border-color: var(--c-amber); }
.merch-card__art {
  background:
    /* Warm amber spotlight — lifts dark products off the dark surface */
    radial-gradient(ellipse 70% 60% at 50% 45%,
      rgba(217,153,51,0.32) 0%,
      rgba(217,153,51,0.12) 35%,
      transparent 70%),
    var(--c-bg);
  padding: var(--s-5) var(--s-4) var(--s-3);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
/* A second ambient glow ring around the product silhouette itself */
.merch-card__art::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(ellipse at center,
    rgba(244,234,213,0.10) 0%,
    transparent 60%);
  pointer-events: none;
}
.merch-card__art svg {
  width: 100%; height: 100%;
  position: relative;
  z-index: 1;
  /* Soft parchment halo around the product silhouette + slight depth shadow */
  filter:
    drop-shadow(0 0 28px rgba(244,234,213,0.22))
    drop-shadow(0 0 8px  rgba(244,234,213,0.18))
    drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}
.merch-card__body {
  padding: var(--s-4);
  display: flex; flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.merch-card__type {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
}
.merch-card__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  margin: 0;
  color: var(--c-parchment);
  letter-spacing: 0.02em;
  text-transform: none;
}
.merch-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-mute);
  margin: 0 0 var(--s-3);
  flex: 1;
}
.merch-card__cta { align-self: flex-start; }
.merch-card__feedback {
  display: inline-block; margin-top: var(--s-2);
  font-size: var(--fs-xs); color: var(--c-amber);
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* "Coming soon" badge in footer sitemap */
.badge-new {
  display: inline-block;
  margin-left: var(--s-2);
  padding: 2px 8px;
  background: var(--c-amber);
  color: var(--c-on-amber);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: 2px;
}

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-bg-deep); color: var(--c-parchment);
  padding: var(--s-8) var(--s-4) var(--s-6);
  margin-top: var(--s-8);
  border-top: 1px solid var(--c-line);
}
.site-footer__inner {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; gap: var(--s-7); }
}
/* (Footer logo now uses .logo-lockup--footer — see the lockup component above) */
.site-footer h4 {
  font-size: var(--fs-sm); letter-spacing: 0.2em; color: var(--c-amber);
  margin: 0 0 var(--s-3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--s-2); }
.site-footer a { color: var(--c-text); }
.site-footer a:hover { color: var(--c-amber); }
.site-footer__legal {
  max-width: var(--content-max); margin: var(--s-7) auto 0;
  padding-top: var(--s-5); border-top: 1px solid var(--c-line);
  font-size: var(--fs-xs); color: var(--c-text-dim);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
}

/* -------------------------------------------------------------------------
   17. Utilities
   ------------------------------------------------------------------------- */
.center        { text-align: center; }
.mt-0          { margin-top: 0; }
.mb-0          { margin-bottom: 0; }
.mb-5          { margin-bottom: var(--s-5); }
.flex          { display: flex; }
.flex-wrap     { flex-wrap: wrap; }
.gap-3         { gap: var(--s-3); }
.gap-4         { gap: var(--s-4); }
.justify-center{ justify-content: center; }
.align-center  { align-items: center; }
.text-amber    { color: var(--c-amber); }
.text-parch    { color: var(--c-parchment); }

@media (prefers-reduced-motion: reduce) {
  .show-card:hover { transform: none; }
  .lyt:hover .lyt__thumb { transform: none; }
  .gallery a:hover img { transform: none; }
}
