/* ==========================================================================
   Hopsology Taproom & Wine Bar — Design System
   Charcoal + hop-green + gold, big bold display type, full-bleed photography.
   ========================================================================== */

:root {
  --charcoal: #1b1817;
  --charcoal-soft: #231f20;
  --charcoal-elevated: #2b2725;
  --cream: #f2f4ef;
  --cream-dim: #d9dccf;
  --green-deep: #046938;
  --green: #3db54a;
  --green-bright: #8fc640;
  --gold: #f8c440;
  --gold-deep: #d99a1f;
  --line: rgba(242, 244, 239, 0.14);

  --font-display: "Bevan", "Rye", serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.55);
}

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ------------------------------ Utilities ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  color: var(--cream);
}
.section-head p { color: var(--cream-dim); font-size: 1.08rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(248, 196, 64, 0.55); }
.btn-outline { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--charcoal); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--charcoal); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(61, 181, 74, 0.55); }
.btn-block { width: 100%; justify-content: center; }

.chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.chip.gold { border-color: var(--gold); color: var(--gold); }
.chip.green { border-color: var(--green-bright); color: var(--green-bright); }

.divider-hops {
  height: 40px;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 40px 40px;
  opacity: 0.9;
}

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(20, 18, 17, 0.85), transparent);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(20, 18, 17, 0.96);
  backdrop-filter: blur(6px);
  padding: 10px 0;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.brand img { height: 48px; width: auto; transition: height 0.3s ease; }
.is-scrolled .brand img { height: 38px; }
.brand-text { line-height: 1.1; }
.brand-text .name { display: block; font-size: 1.25rem; letter-spacing: 0.03em; color: var(--cream); }
.brand-text .tag { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 800; }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--charcoal); background: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--cream-dim);
  transition: all 0.2s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    background: var(--charcoal-soft);
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav a { display: block; width: 100%; padding: 14px 16px; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-toggle .icon-open { display: none; }
  .nav-toggle .icon-close { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  .nav-backdrop {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 150;
  }
  body.nav-open .nav-backdrop { display: block; }
  .header-actions .social-row { display: none; }
}

/* -------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 90px;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(17,15,14,0.97) 5%, rgba(17,15,14,0.55) 45%, rgba(17,15,14,0.35) 100%),
    linear-gradient(to right, rgba(17,15,14,0.55), rgba(17,15,14,0.1) 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-content .eyebrow { color: var(--gold); }
.hero-content.with-video {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-text { max-width: 700px; }
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--green-bright);
}
.hero-content .lede {
  font-size: 1.2rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 18px;
  max-width: 480px;
  padding: 10px 18px 10px 10px;
  border-radius: 22px;
  background: rgba(242, 244, 239, 0.08);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--cream-dim);
}
.hero-note-text { flex: 1 1 auto; min-width: 200px; }
.hero-note strong { color: var(--cream); font-weight: 800; }
.hero-note a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-note a:hover { color: var(--gold-deep); }
.hero-note .tag {
  flex: none;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero-page {
  min-height: 62vh;
  padding-top: 150px;
  padding-bottom: 70px;
  align-items: center;
}
.hero-page h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }

.hero-video {
  position: relative;
  flex: none;
  width: 240px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 244, 239, 0.25);
  background: var(--charcoal-elevated);
}
.hero-video-el { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-caption {
  position: absolute;
  left: 14px; top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 15, 14, 0.55);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-video-sound {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242, 244, 239, 0.4);
  background: rgba(17, 15, 14, 0.55);
  backdrop-filter: blur(4px);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hero-video-sound svg { width: 18px; height: 18px; fill: currentColor; }
.hero-video-sound .icon-unmuted { display: none; }
.hero-video.is-unmuted .icon-muted { display: none; }
.hero-video.is-unmuted .icon-unmuted { display: block; }

@media (max-width: 900px) {
  .hero-content.with-video { justify-content: center; text-align: center; }
  .hero-text { text-align: left; }
  .hero-video { width: 170px; }
}
@media (max-width: 620px) {
  .hero-content.with-video { flex-direction: column; align-items: center; }
  .hero-video { margin-top: 10px; }
}

.hero-scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}
.hero-scroll-cue .stem { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }

/* --------------------------- Info strip / hours ------------------------- */
.info-strip {
  background: var(--charcoal-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.info-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-card { display: flex; gap: 14px; align-items: flex-start; }
.info-card .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal-elevated);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic svg { width: 20px; height: 20px; fill: currentColor; }
.info-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--cream); font-size: 0.95rem; }
.info-card a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .info-strip .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .info-strip .container { grid-template-columns: 1fr; }
}

/* --------------------------------- Bands -------------------------------- */
.band { padding: 100px 0; }
.band-tight { padding: 70px 0; }
.band-charcoal { background: var(--charcoal); }
.band-soft { background: var(--charcoal-soft); }
.band-elevated { background: var(--charcoal-elevated); }
.band-cream { background: var(--cream); color: var(--charcoal-soft); }
.band-cream .section-head h2, .band-cream h1, .band-cream h3 { color: var(--charcoal-soft); }
.band-cream .section-head p { color: #57534f; }
.band-cream .eyebrow { color: var(--green-deep); }
.band-cream .eyebrow::before { background: var(--green-deep); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media.wide img { aspect-ratio: 16/11; }
.split-copy .eyebrow { }
.split-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.stat-row { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.stat-row[hidden] { display: none; }
.stat-row .stat strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); }
.stat-row .stat span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-dim); }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
}

/* --------------------------------- Cards --------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--charcoal-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card .card-body { padding: 26px; }
.card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 10px; }
.card p { color: var(--cream-dim); font-size: 0.96rem; margin-bottom: 0; }

@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.staff-card {
  background: var(--charcoal-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.staff-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; }
.staff-card .card-body { padding: 24px; }
.staff-card h3 { font-size: 1.25rem; color: var(--cream); margin-bottom: 2px; }
.staff-card .role { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.staff-card p { color: var(--cream-dim); font-size: 0.94rem; margin-bottom: 0; }
@media (max-width: 900px) { .staff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .staff-grid { grid-template-columns: 1fr; } }

/* -------------------------------- Gallery -------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; }
.photo-grid figure img { transition: transform 0.5s ease; }
.photo-grid figure:hover img { transform: scale(1.07); }
.photo-grid .tall { grid-row: span 2; }
.photo-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  color: var(--cream);
}

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .photo-grid .tall { grid-row: span 1; }
}

/* -------------------------------- Accordion ------------------------------ */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  text-align: left;
  cursor: pointer;
}
.accordion-trigger .num { color: var(--gold); font-family: var(--font-body); font-weight: 800; font-size: 0.85rem; margin-right: 14px; }
.accordion-trigger .plus {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.accordion-trigger .plus::before { width: 14px; height: 2px; }
.accordion-trigger .plus::after { width: 2px; height: 14px; transition: transform 0.3s ease; }
.accordion-item.is-open .accordion-trigger .plus { background: var(--gold); }
.accordion-item.is-open .accordion-trigger .plus::before,
.accordion-item.is-open .accordion-trigger .plus::after { background: var(--charcoal); }
.accordion-item.is-open .accordion-trigger .plus::after { transform: rotate(90deg) scaleX(0); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-panel-inner { padding: 0 4px 32px; color: var(--cream-dim); }
.accordion-panel-inner .price-line {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; margin-bottom: 14px;
}
.accordion-panel-inner .price-line span { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }
.accordion-panel-inner ul { margin: 14px 0; }
.accordion-panel-inner li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
}
.accordion-panel-inner li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 2px;
  transform: rotate(45deg);
}
.accordion-panel-inner .sub-list { margin-top: 8px; margin-bottom: 0; }
.accordion-panel-inner .sub-list li::before { background: var(--gold); width: 6px; height: 6px; }
.accordion-media { border-radius: var(--radius); margin-top: 18px; max-width: 320px; }

/* Nested ways-to-brew accordion look slightly different */
.accordion-nested { border-top: 1px solid var(--line); margin-top: 6px; }
.accordion-nested .accordion-trigger { font-size: 1.05rem; padding: 20px 4px; }

/* --------------------------------- Banner -------------------------------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(120deg, var(--green-deep), var(--green) 60%, var(--green-bright));
  color: var(--charcoal);
  overflow: hidden;
  text-align: center;
}
.cta-banner h2 { color: var(--charcoal); font-size: clamp(2rem, 5vw, 3rem); }
.cta-banner p { color: rgba(27,24,23,0.75); max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }
.cta-banner .btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.cta-banner .btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-mascot { position: absolute; opacity: 0.16; width: 220px; right: -20px; bottom: -30px; }

/* -------------------------------- Tap list -------------------------------- */
.tap-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.tap-embed-wrap iframe { width: 100%; border: 0; display: block; }
.tap-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; user-select: none;
}
.tap-toggle h3 { margin: 0; font-size: 1.2rem; }
.tap-toggle .chev { transition: transform 0.3s ease; color: var(--gold); }
.tap-embed-wrap.is-open .tap-toggle .chev { transform: rotate(180deg); }
.tap-embed-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.slideshow {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal-elevated);
}
.slideshow-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide { flex: 0 0 100%; height: 100%; margin: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 244, 239, 0.35);
  background: rgba(17, 15, 14, 0.5);
  backdrop-filter: blur(4px);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.slideshow-nav svg { width: 20px; height: 20px; fill: currentColor; }
.slideshow-nav.prev { left: 12px; }
.slideshow-nav.next { right: 12px; }
.slideshow-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: 8px;
}
.slideshow-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(242, 244, 239, 0.4);
  cursor: pointer;
}
.slideshow-dots button.active { background: var(--gold); width: 22px; border-radius: 999px; }

.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.mini-grid img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }
@media (max-width: 700px) { .mini-grid { grid-template-columns: 1fr 1fr; } .mini-grid > *:first-child { grid-column: 1 / -1; } }

/* -------------------------------- Pricing card ---------------------------- */
.membership-card {
  background: var(--charcoal-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(248,196,64,0.25), transparent 70%);
}
.membership-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.membership-price { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.membership-price span { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); margin-top: 6px; }
.membership-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 26px 0; }
.membership-benefits li { position: relative; padding-left: 26px; color: var(--cream); font-size: 0.95rem; }
.membership-benefits li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--charcoal);
  background: var(--green-bright);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 560px) { .membership-benefits { grid-template-columns: 1fr; } .membership-card { padding: 30px 22px; } }

/* -------------------------------- Contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-list { display: grid; gap: 20px; margin-top: 10px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--charcoal-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-item .ic { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.contact-item .ic svg { width: 20px; height: 20px; fill: currentColor; }
.contact-item h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); margin: 0 0 6px; }
.contact-item p { margin: 0; color: var(--cream); }
.contact-item a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-table td:first-child { font-weight: 800; letter-spacing: 0.04em; }
.hours-table td:last-child { text-align: right; color: var(--cream-dim); }
.hours-table tr.closed td:last-child { color: var(--gold-deep); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.35) contrast(1.05); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* -------------------------------- Rules list ------------------------------ */
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 50px; margin-top: 20px; }
.rules-block h4 { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; color: var(--gold); margin-bottom: 10px; }
.rules-block ul { display: grid; gap: 8px; }
.rules-block li { position: relative; padding-left: 20px; color: var(--cream-dim); font-size: 0.95rem; }
.rules-block li::before { content: "•"; position: absolute; left: 0; color: var(--green-bright); }
@media (max-width: 700px) { .rules-grid { grid-template-columns: 1fr; } }

/* --------------------------------- Footer -------------------------------- */
.site-footer { background: #100e0d; padding: 70px 0 26px; border-top: 4px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: var(--cream-dim); max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--cream-dim); font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom small { color: var(--cream-dim); font-size: 0.82rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--cream-dim); }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* -------------------------------- Age gate -------------------------------- */
.age-gate {
  position: fixed; inset: 0; z-index: 500;
  background: radial-gradient(circle at top, #2a2422, #100e0d 70%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-gate-card {
  max-width: 420px;
  text-align: center;
  background: var(--charcoal-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px 34px;
  box-shadow: var(--shadow);
}
.age-gate-card img { height: 170px; margin: 0 auto 24px; }
.age-gate-card h2 { font-size: 1.7rem; margin-bottom: 10px; }
.age-gate-card p { color: var(--cream-dim); }
.age-gate-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.age-gate-actions .btn { flex: 1 1 180px; justify-content: center; }

/* ------------------------------ Misc sections ----------------------------- */
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 800px) { .two-col-text { grid-template-columns: 1fr; } }

.page-crumb { padding-top: 8px; }
.page-crumb a { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; }

.form-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--charcoal-elevated); }
.form-embed-wrap iframe { width: 100%; min-height: 900px; border: 0; }
.calendar-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.calendar-frame iframe { width: 100%; border: 0; display: block; }

.tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--cream-dim); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}
.tab-btn.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

@media (max-width: 700px) {
  .band { padding: 70px 0; }
  .card-grid, .split { gap: 24px; }
}
