/* ==========================================================================
   Cheroots Cigar Lounge — design system
   Dark luxe. Warm gold. Slow reveals.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Ground */
  --ink:            #0a0908;
  --ink-2:          #12100e;
  --ink-3:          #1a1714;
  --ink-4:          #241f1a;
  --hairline:       rgba(199, 162, 90, 0.16);
  --hairline-soft:  rgba(255, 255, 255, 0.07);

  /* Gold */
  --gold:           #c7a25a;
  --gold-bright:    #e2c584;
  --gold-deep:      #8f6f33;
  --gold-wash:      rgba(199, 162, 90, 0.09);
  --cmp-line:        rgba(199, 162, 90, 0.30);
  --cmp-line-strong: rgba(199, 162, 90, 0.55);

  /* Type */
  --cream:          #f2ece1;
  --cream-dim:      #b8afa2;
  --muted:          #9a9086;
  --muted-2:        #6f6760;

  /* Accent for status */
  --ember:          #d4703a;
  --ok:             #6f9c6a;
  --err:            #c9584f;

  /* Fonts */
  --display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:    "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;

  /* Rhythm */
  --maxw:      1240px;
  --maxw-tight: 780px;
  --gut:       clamp(20px, 5vw, 64px);
  --section:   clamp(72px, 11vw, 168px);

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

/* Ambient grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h1, .h1 { font-family: var(--display); font-weight: 300; font-size: clamp(2.9rem, 8vw, 6.5rem); line-height: 0.98; letter-spacing: -0.025em; }
h2, .h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.1rem, 5.2vw, 4rem);  line-height: 1.06; letter-spacing: -0.02em; }
h3, .h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.45rem, 2.6vw, 2.1rem); line-height: 1.2; }
h4, .h4 { font-family: var(--body); font-weight: 600; font-size: 1rem; letter-spacing: 0.01em; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 2.4em; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: "";
  width: 2.4em; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: none;
}

.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.68; color: var(--cream); opacity: 0.86; }
.prose p { color: var(--muted); margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.gold { color: var(--gold); }
.serif { font-family: var(--display); }

/* Gold rule */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
  border: 0;
  margin: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-tight { width: 100%; max-width: var(--maxw-tight); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.center { text-align: center; }

.grid { display: grid; gap: clamp(24px, 3.5vw, 56px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: var(--gap, 1.5rem); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1.05em 2.2em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), border-color .5s var(--ease), transform .3s var(--ease);
  text-align: center;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s var(--ease-out);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--ink); border-color: var(--gold); }
.btn:active { transform: translateY(1px); }

.btn--solid { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--solid::before { background: var(--gold-bright); }
.btn--solid:hover { color: var(--ink); }
.btn--ghost { --btn-bd: var(--hairline-soft); }
.btn--ghost:hover { border-color: var(--gold); }
.btn--sm { padding: 0.8em 1.5em; font-size: 0.66rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* Text link with sliding underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  position: relative;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink .arrow { transition: transform .4s var(--ease); }
.tlink:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Age gate
   ========================================================================== */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--ink);
  padding: var(--gut);
  text-align: center;
}
.agegate[hidden] { display: none; }
.agegate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(199,162,90,0.10), transparent 70%);
}
.agegate__inner { position: relative; max-width: 460px; }
.agegate__mark { font-family: var(--display); font-size: clamp(2.4rem,7vw,3.4rem); letter-spacing: 0.16em; color: var(--gold); font-weight: 300; }
.agegate__logo { width: auto; height: clamp(52px, 9vw, 74px); margin-inline: auto; display: block; }
.agegate__q { font-family: var(--display); font-size: clamp(1.5rem,3.4vw,2.1rem); font-weight: 300; margin-top: 2rem; line-height: 1.25; }
.agegate__note { color: var(--muted-2); font-size: 0.8rem; margin-top: 1.5rem; line-height: 1.6; }
.agegate__actions { display: flex; gap: 12px; justify-content: center; margin-top: 2.2rem; flex-wrap: wrap; }
.agegate__deny { color: var(--muted); font-size: 0.95rem; margin-top: 1.4rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--hairline);
}
.hdr.is-hidden { transform: translateY(-100%); }
.hdr__bar {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(14px, 2vw, 22px) var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hdr__logo {
  display: block;
  flex: none;
  transition: opacity .4s var(--ease);
}
.hdr__logo:hover { opacity: 0.82; }
.hdr__logo img {
  width: auto;
  height: clamp(30px, 3.4vw, 42px);
  display: block;
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.72;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity .35s var(--ease), color .35s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover { opacity: 1; color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { opacity: 1; color: var(--gold); }
.nav__link.is-active::after { transform: scaleX(1); }

/* Location dropdown */
.navdrop { position: relative; }
.navdrop__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  background: rgba(18, 16, 14, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.navdrop:hover .navdrop__panel,
.navdrop:focus-within .navdrop__panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.navdrop__item {
  display: block;
  padding: 13px 16px;
  border-radius: 2px;
  transition: background .3s var(--ease);
}
.navdrop__item:hover { background: var(--gold-wash); }
.navdrop__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.navdrop__item span { font-size: 0.7rem; color: var(--muted-2); letter-spacing: 0.08em; }
.navdrop__item .pill { margin-left: 6px; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1000;
}
.burger span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .45s var(--ease), opacity .3s var(--ease), width .45s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; width: 16px; }
.burger span:nth-child(3) { top: 29px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

@media (max-width: 1080px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--ink-2);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .6s var(--ease-out);
    padding: var(--gut);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link {
    font-family: var(--display);
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .nav.is-open .nav__link { opacity: 0.85; transform: translateY(0); }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: .12s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: .17s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: .22s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: .27s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: .32s; }
  .nav.is-open .nav__link:nth-child(6) { transition-delay: .37s; }
  .nav.is-open .nav__link:nth-child(7) { transition-delay: .42s; }
  .nav.is-open .nav__link:nth-child(8) { transition-delay: .47s; }
  .nav__link::after { display: none; }
  .navdrop__panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    margin-top: 8px;
  }
  .navdrop { text-align: center; }
  /* Three dropdowns x two stacked sub-items would add six rows and push Reserve off
     the bottom. On mobile each panel collapses to one compact row: "Cypress  Katy". */
  .navdrop__panel {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 2px;
  }
  .navdrop__item { padding: 2px 4px; }
  .navdrop__item strong {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .navdrop__item:hover strong { color: var(--gold); }
  .navdrop__item span { display: none; }

  /* Reserve is the whole point of the site — it belongs in the mobile menu, not
     hidden. It is the last child of .nav, so it animates in after the links. */
  .hdr__cta {
    margin-top: 26px;
    padding: 1.1em 2.8em;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    transition-delay: .52s;
    flex: none;
  }
  .nav.is-open .hdr__cta { opacity: 1; transform: translateY(0); }
}

/* Short phones: at 1.9rem the eight links plus the Reserve button overflow a
   ~650px viewport and push Reserve below the fold, where it reads as missing.
   Tighten the type so the whole menu — Reserve included — fits without scrolling. */
@media (max-width: 1080px) and (max-height: 800px) {
  .nav { gap: 0; }
  .nav__link { font-size: 1.5rem; padding: 2px 0; }
  .navdrop__panel { margin-top: 2px; }
  .navdrop__item { padding: 4px 8px; }
  .navdrop__item strong { font-size: 1.05rem; }
  .navdrop__item span { font-size: 0.62rem; }
  .hdr__cta { margin-top: 18px; padding: 0.95em 2.4em; }
}
@media (max-width: 1080px) and (max-height: 620px) {
  .nav__link { font-size: 1.2rem; }
  .navdrop__item span { display: none; }
  .hdr__cta { margin-top: 12px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* The source video has its own titles burned into the middle of the frame, so the
   overlay copy is pinned to the bottom behind a heavy scrim and the middle band is
   left clear. Changing this risks the two sets of text colliding again. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,9,8,0.80) 0%,
      rgba(10,9,8,0.32) 18%,
      rgba(10,9,8,0.34) 32%,
      rgba(10,9,8,0.72) 48%,
      rgba(10,9,8,0.92) 62%,
      rgba(10,9,8,0.985) 78%,
      var(--ink) 100%),
    radial-gradient(ellipse 90% 60% at 50% 28%, transparent 45%, rgba(10,9,8,0.45) 100%);
}
/* Video placeholder state */
.hero__media.is-placeholder {
  background:
    linear-gradient(140deg, var(--ink-3), var(--ink) 55%, var(--ink-4));
  display: grid;
  place-items: center;
}
.hero__media.is-placeholder .hero__phtext { display: block; }
.hero__phtext {
  display: none;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  padding: var(--gut);
  line-height: 2;
}

.hero__body {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gut) clamp(56px, 9vw, 120px);
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  text-wrap: balance;
}
/* Kept inline so "Slow burn. Two rooms." reads as a single line. */
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__title .wordwrap + em { margin-left: 0.32em; }
.hero__sub {
  max-width: 44ch;
  margin-top: 1.1rem;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  color: var(--cream);
  opacity: 0.86;
  line-height: 1.6;
  text-shadow: 0 1px 16px rgba(0,0,0,0.7);
}
.hero__actions { display: flex; gap: 14px; margin-top: 1.7rem; flex-wrap: wrap; }

/* Grand-opening strip, sits above the nav inside the fixed header */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  color: var(--ink);
  font-size: 0.82rem;
  text-align: center;
  transition: filter .4s var(--ease);
}
.announce:hover { filter: brightness(1.09); }
.announce[hidden] { display: none; }
.announce__tag {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(10,9,8,0.42);
  border-radius: 100px;
  padding: 0.35em 0.75em;
  white-space: nowrap;
  flex: none;
}
.announce__txt { line-height: 1.35; }
.announce__txt strong { font-weight: 700; }
.announce__cta {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announce .arrow { transition: transform .4s var(--ease); }
.announce:hover .arrow { transform: translateX(4px); }
@media (max-width: 900px) { .announce__more { display: none; } }
@media (max-width: 620px) {
  .announce { gap: 10px; padding: 8px 12px; font-size: 0.74rem; }
  .announce__tag { display: none; }
}

/* Scroll cue */
.scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  z-index: 3;
}
.scrollcue__line { width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow: hidden; }
.scrollcue__line::after {
  content: "";
  position: absolute;
  top: -46px; left: 0;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(0); } 60%, 100% { transform: translateY(92px); } }
@media (max-width: 680px) { .scrollcue { display: none; } }

/* Sound toggle for hero video */
.soundbtn {
  position: absolute;
  right: var(--gut);
  bottom: clamp(56px, 9vw, 120px);
  z-index: 4;
  width: 48px; height: 48px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: rgba(10,9,8,0.5);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.soundbtn:hover { border-color: var(--gold); background: rgba(199,162,90,0.14); }
.soundbtn svg { width: 17px; height: 17px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
@media (max-width: 680px) { .soundbtn { display: none; } }

/* ==========================================================================
   Location split — the two-location centrepiece
   ========================================================================== */
.locsplit { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(520px, 76vh, 760px); }
@media (max-width: 860px) { .locsplit { grid-template-columns: 1fr; } }

.locpanel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4.5vw, 68px);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
  border: 1px solid transparent;
  transition: border-color .6s var(--ease);
}
.locpanel + .locpanel { border-left: 1px solid var(--hairline); }
@media (max-width: 860px) { .locpanel + .locpanel { border-left: 0; border-top: 1px solid var(--hairline); } }

.locpanel__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
  filter: grayscale(0.55) brightness(0.5);
}
.locpanel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.72) 55%, rgba(10,9,8,0.94) 100%);
  transition: background .8s var(--ease);
}
.locpanel:hover .locpanel__bg { transform: scale(1); filter: grayscale(0) brightness(0.62); }
.locpanel:hover::after { background: linear-gradient(180deg, rgba(10,9,8,0.22) 0%, rgba(10,9,8,0.62) 55%, rgba(10,9,8,0.92) 100%); }

.locpanel__num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  margin-bottom: auto;
}
.locpanel__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.locpanel__meta {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}
.locpanel__blurb { color: var(--muted); margin-top: 16px; max-width: 40ch; font-size: 0.95rem; }
.locpanel__foot { display: flex; align-items: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

/* Status pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.85em;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  vertical-align: middle;
}
.pill--open { color: var(--ok); border-color: rgba(111,156,106,0.34); }
.pill--soon { color: var(--ember); border-color: rgba(212,112,58,0.34); }
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex: none; }
.pill--open .pill__dot { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(111,156,106,0.5); } 50% { opacity: .55; box-shadow: 0 0 0 5px rgba(111,156,106,0); } }

/* ==========================================================================
   Cards / feature blocks
   ========================================================================== */
.card {
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(160deg, rgba(255,255,255,0.022), transparent 65%);
  transition: border-color .55s var(--ease), transform .55s var(--ease), background .55s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card:hover {
  border-color: var(--hairline);
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(199,162,90,0.05), transparent 65%);
}
.card__num {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.card__title { font-family: var(--display); font-size: 1.5rem; font-weight: 400; line-height: 1.2; }
.card__body { color: var(--muted); font-size: 0.94rem; margin-top: 12px; }

/* Editorial two-column feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
.feature--flip .feature__media { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}
.feature__media { position: relative; overflow: hidden; border-radius: 3px; }
.feature__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.6s var(--ease-out); }
/* For landscape photography — 4:5 would crop nearly half the width away. */
.feature__media--wide img { aspect-ratio: 4/3; }
.feature__media:hover img { transform: scale(1.045); }
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  pointer-events: none;
}

/* Stat / hours strip */
.hours { border-top: 1px solid var(--hairline-soft); }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.92rem;
}
.hours__row.is-today { color: var(--gold); }
.hours__day { letter-spacing: 0.06em; }
.hours__time { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours__row.is-today .hours__time { color: var(--gold); }

/* ==========================================================================
   Events
   ========================================================================== */
.evt {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--hairline-soft);
  transition: padding-left .5s var(--ease), border-color .5s var(--ease);
}
.evt:hover { padding-left: 12px; border-bottom-color: var(--hairline); }
.evt__day {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
}
.evt__title { font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300; line-height: 1.15; }
.evt__desc { color: var(--muted); font-size: 0.93rem; margin-top: 8px; max-width: 58ch; }
.evt__time { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
@media (max-width: 780px) {
  .evt { grid-template-columns: 1fr; gap: 6px; }
  .evt__time { margin-top: 6px; }
}

.evt-empty {
  border: 1px dashed var(--hairline);
  border-radius: 3px;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  color: var(--muted);
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menutabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--hairline-soft);
  padding-bottom: 20px;
  margin-bottom: 8px;
}
.menutab {
  padding: 0.7em 1.4em;
  background: none;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.menutab:hover { color: var(--cream); }
.menutab.is-active { color: var(--gold); border-color: var(--hairline); background: var(--gold-wash); }

.menusec { padding-block: clamp(34px, 5vw, 60px); border-bottom: 1px solid var(--hairline-soft); }
.menusec:last-child { border-bottom: 0; }
.menusec__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.menusec__name { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 300; letter-spacing: -0.01em; }
.menusec__note { color: var(--gold-deep); font-size: 0.8rem; font-style: italic; max-width: 46ch; }

.mitems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px clamp(30px, 5vw, 72px); margin-top: 24px; }
@media (max-width: 780px) { .mitems { grid-template-columns: 1fr; } }

.mitem {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.045);
  transition: opacity .4s var(--ease);
}
.mitem__name { font-size: 1rem; font-weight: 500; letter-spacing: 0.01em; }
.mitem__price {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.mitem__desc { grid-column: 1 / -1; color: var(--muted-2); font-size: 0.84rem; line-height: 1.55; margin-top: -6px; }
.mitem__unit { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); display: block; text-align: right; }
.mitem.is-soldout { opacity: 0.42; }
.mitem.is-soldout .mitem__name { text-decoration: line-through; text-decoration-color: var(--muted-2); }
.soldout-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 0.2em 0.6em;
  border: 1px solid rgba(201,88,79,0.4);
  border-radius: 100px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--err);
  vertical-align: middle;
}

.menunotice {
  border-left: 2px solid var(--gold-deep);
  padding: 4px 0 4px 20px;
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 78ch;
}

/* ==========================================================================
   Menu — embedded FineDine
   ========================================================================== */
/* The menu is the reason a lot of people open the site — give it the whole screen. */
.menuwrap {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(12px, 2.5vw, 40px);
}
.menuembed {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
/* Fills the screen below the header, but never exceeds the viewport: an iframe
   taller than the window traps the scroll wheel — you reach it and the page stops. */
.menuembed iframe {
  display: block;
  width: 100%;
  height: min(1500px, calc(100svh - 92px));
  min-height: 560px;
  border: 0;
}
@media (max-width: 780px) {
  .menuembed iframe { height: min(1100px, calc(100svh - 76px)); min-height: 480px; }
  .menuwrap { padding-inline: 10px; }
}
.menuembed__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--hairline);
}
.menuembed__dots { display: flex; gap: 6px; }
.menuembed__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); }
.menuembed__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ==========================================================================
   Booking — SeatOn embeds
   ========================================================================== */
.bookpanel[hidden] { display: none; }

/* The SeatOn booking page is light-themed and has no dark option, so it is framed
   as a panel — the same treatment as the FineDine menu. */
.bookpanel .menuembed iframe {
  height: min(1150px, calc(100svh - 150px));
  min-height: 700px;
}
@media (max-width: 780px) {
  .bookpanel .menuembed iframe { height: min(1000px, calc(100svh - 120px)); min-height: 620px; }
}

/* Compact widget used on location pages. bkg=DARK renders white-on-transparent,
   so it sits directly on the page with no panel behind it. */
.bookcard {
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(165deg, rgba(199,162,90,0.07), transparent 62%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bookcard__widget {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
}
.bookcard__widget iframe {
  border: 0;
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Cigar brand wall
   ========================================================================== */
/* Featured houses — the brands whose logos we could source at usable quality.
   All are pre-toned to one cream in the asset itself, so mixed sources read as a set. */
.brandstrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  justify-items: center;
  padding-block: clamp(28px, 4vw, 48px);
  border-block: 1px solid var(--hairline-soft);
}
.brandlogo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 62px;
}
.brandlogo img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.68;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.brandlogo:hover img { opacity: 1; transform: scale(1.04); }
@media (max-width: 560px) { .brandlogo img { max-height: 44px; } }

.brandwall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  overflow: hidden;
}
.brand {
  background: var(--ink);
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  text-align: center;
  transition: background .5s var(--ease);
}
.brand:hover { background: var(--ink-3); }
.brand__name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.82;
  transition: color .5s var(--ease), opacity .5s var(--ease);
}
.brand:hover .brand__name { color: var(--gold); opacity: 1; }
.brand img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: 0.72;
  transition: filter .5s var(--ease), opacity .5s var(--ease);
}
.brand:hover img { filter: none; opacity: 1; }

/* ==========================================================================
   Event poster
   ========================================================================== */
.poster {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
}
.poster img { width: 100%; height: auto; display: block; transition: transform 1.4s var(--ease-out); }
.poster:hover img { transform: scale(1.02); }

.evt--featured {
  grid-template-columns: 1fr;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: clamp(24px, 3.4vw, 44px);
  background: linear-gradient(165deg, rgba(199,162,90,0.10), transparent 60%);
  margin-bottom: 26px;
}
.evt--featured:hover { padding-left: clamp(24px, 3.4vw, 44px); }
.evt--featured .evt__title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.evt__flag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45em 0.9em;
  border-radius: 100px;
  margin-bottom: 14px;
}
.evt__notes {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-style: italic;
}

/* ==========================================================================
   Membership tiers
   ========================================================================== */
.tier {
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .55s var(--ease), transform .55s var(--ease);
  background: linear-gradient(170deg, rgba(255,255,255,0.02), transparent 60%);
  height: 100%;
}
.tier:hover { border-color: var(--hairline); transform: translateY(-4px); }
.tier--featured { border-color: var(--gold); background: linear-gradient(170deg, rgba(199,162,90,0.09), transparent 62%); }
.tier__flag {
  position: absolute;
  top: -1px; right: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45em 0.95em;
  border-radius: 100px;
}
.tier__name { font-family: var(--display); font-size: 2.1rem; font-weight: 300; }
.tier__tag { color: var(--gold); font-size: 0.8rem; font-style: italic; margin-top: 4px; font-family: var(--display); }
.tier__price { font-family: var(--display); font-size: 2.6rem; font-weight: 300; margin-top: 22px; line-height: 1; }
.tier__period { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 8px; }
.tier__list { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--hairline-soft); display: grid; gap: 12px; }
.tier__list li { display: flex; gap: 12px; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.tier__list li::before { content: "—"; color: var(--gold-deep); flex: none; }
.tier__cta { margin-top: auto; padding-top: 30px; }

.steps { counter-reset: s; display: grid; gap: 2px; }
.step {
  counter-increment: s;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.step::before {
  content: "0" counter(s);
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.step p { color: var(--cream); opacity: 0.85; font-size: 1rem; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field--half { grid-column: span 6; }
.field--third { grid-column: span 4; }
.field--full { grid-column: 1 / -1; }
.formgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
@media (max-width: 720px) {
  .formgrid { grid-template-columns: 1fr; }
  .field--half, .field--third, .field--full { grid-column: 1 / -1; }
}

.label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.label .req { color: var(--gold); }

.input, .select, .textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--hairline-soft);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.98rem;
  transition: border-color .35s var(--ease), background .35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(199,162,90,0.05);
}
.input:invalid:not(:placeholder-shown) { border-color: rgba(201,88,79,0.5); }
.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c7a25a' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.select option { background: var(--ink-3); color: var(--cream); }
input[type="date"], input[type="time"] { color-scheme: dark; }

/* Location toggle inside the reservation form */
.locpick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .locpick { grid-template-columns: 1fr; } }
.locpick__opt { position: relative; }
.locpick__opt input { position: absolute; opacity: 0; pointer-events: none; }
.locpick__box {
  display: block;
  padding: 20px;
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .4s var(--ease), background .4s var(--ease);
  height: 100%;
}
.locpick__box:hover { border-color: var(--hairline); }
.locpick__opt input:checked + .locpick__box {
  border-color: var(--gold);
  background: var(--gold-wash);
}
.locpick__opt input:focus-visible + .locpick__box { outline: 2px solid var(--gold); outline-offset: 2px; }
.locpick__name { font-family: var(--display); font-size: 1.6rem; font-weight: 400; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.locpick__addr { font-size: 0.8rem; color: var(--muted-2); margin-top: 6px; line-height: 1.5; }

/* Form feedback */
.formnote { font-size: 0.8rem; color: var(--muted-2); line-height: 1.6; }
.formmsg {
  padding: 16px 18px;
  border-radius: 2px;
  font-size: 0.92rem;
  border: 1px solid;
  line-height: 1.6;
}
.formmsg[hidden] { display: none; }
.formmsg--ok  { border-color: rgba(111,156,106,0.4); background: rgba(111,156,106,0.09); color: #a9c9a4; }
.formmsg--err { border-color: rgba(201,88,79,0.4);  background: rgba(201,88,79,0.09);  color: #e0a09a; }

.btn.is-busy { pointer-events: none; opacity: 0.65; }
.btn.is-busy .btn__label::after {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  margin-left: 10px;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gal { columns: 3; column-gap: 14px; }
@media (max-width: 900px) { .gal { columns: 2; } }
@media (max-width: 560px) { .gal { columns: 1; } }
.gal__item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: zoom-in;
}
.gal__item img { width: 100%; transition: transform 1.2s var(--ease-out), filter .8s var(--ease); filter: brightness(0.86); }
.gal__item:hover img { transform: scale(1.05); filter: brightness(1); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,5,5,0.96);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   Map
   ========================================================================== */
.mapframe {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  filter: grayscale(1) invert(0.9) contrast(0.86) brightness(0.92);
  transition: filter .8s var(--ease);
}
.mapframe:hover { filter: grayscale(0.5) invert(0.9) contrast(0.9) brightness(0.96); }
@media (max-width: 680px) { .mapframe { aspect-ratio: 4/3; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__item { border-bottom: 1px solid var(--hairline-soft); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 44px 26px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--cream);
  position: relative;
  transition: color .35s var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__q::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 13px; height: 1px;
  background: var(--gold);
  transition: transform .45s var(--ease);
}
.faq__q::before {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 1px; height: 13px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.faq__item.is-open .faq__q::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); padding-bottom: 26px; max-width: 70ch; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.band {
  position: relative;
  padding-block: clamp(72px, 11vw, 150px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(199,162,90,0.13), transparent 65%);
}
.band__title { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.ftr { border-top: 1px solid var(--hairline); padding-block: clamp(48px, 7vw, 88px) 32px; background: var(--ink-2); }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__top { grid-template-columns: 1fr; } }

.ftr__logo { width: auto; height: 46px; display: block; }
.ftr__tag { color: var(--muted-2); font-size: 0.88rem; margin-top: 18px; max-width: 34ch; line-height: 1.65; }
.ftr__h {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ftr__list { display: grid; gap: 11px; }
.ftr__list a, .ftr__list span { color: var(--muted); font-size: 0.9rem; transition: color .35s var(--ease); line-height: 1.5; }
.ftr__list a:hover { color: var(--gold); }
.ftr__bottom {
  margin-top: clamp(40px, 6vw, 68px);
  padding-top: 26px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--muted-2);
}
.ftr__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.ftr__legal a { transition: color .35s var(--ease); }
.ftr__legal a:hover { color: var(--gold); }

.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  border: 1px solid var(--hairline-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.social a:hover { border-color: var(--gold); background: var(--gold-wash); transform: translateY(-2px); }
.social svg { width: 15px; height: 15px; fill: var(--muted); transition: fill .4s var(--ease); }
.social a:hover svg { fill: var(--gold); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.phero {
  position: relative;
  padding-block: clamp(140px, 20vw, 230px) clamp(48px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.phero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.34) grayscale(0.4);
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,8,0.86), rgba(10,9,8,0.55) 45%, var(--ink) 100%);
}
.phero__title { margin-top: 1.2rem; }
.phero__sub { color: var(--muted); max-width: 56ch; margin-top: 1.2rem; font-size: 1.05rem; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .locpanel__bg, .feature__media img, .gal__item img { transition: none !important; }
  .scrollcue__line::after { animation: none; }
}

/* Split-word hero reveal */
.wordwrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--wd, 0ms);
}
.is-in .word, .hero.is-ready .word { transform: translateY(0); }

/* ==========================================================================
   Admin
   ========================================================================== */
.admin { max-width: 1100px; margin-inline: auto; padding: clamp(24px,4vw,56px) var(--gut) 100px; }
.admin__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 22px; margin-bottom: 34px;
  border-bottom: 1px solid var(--hairline);
}
.admin__sec { margin-bottom: 40px; }
.admin__sechead {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--hairline-soft); margin-bottom: 6px;
}
.arow {
  display: grid;
  grid-template-columns: 1fr 110px 108px 40px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (max-width: 700px) { .arow { grid-template-columns: 1fr 1fr; } }
.arow .input { padding: 9px 11px; font-size: 0.88rem; }
.arow.is-soldout .input:first-child { opacity: 0.45; text-decoration: line-through; }
.toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); cursor: pointer; user-select: none; white-space: nowrap;
}
.toggle input { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }
.toggle.is-on { color: var(--err); }
.iconbtn {
  width: 32px; height: 32px;
  border: 1px solid var(--hairline-soft); border-radius: 2px;
  background: none; color: var(--muted-2); cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  display: grid; place-items: center; font-size: 1rem; line-height: 1;
}
.iconbtn:hover { color: var(--err); border-color: rgba(201,88,79,0.4); }
.savebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: rgba(18,16,14,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hairline);
  padding: 14px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.savebar__status { font-size: 0.78rem; color: var(--muted-2); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.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 {
  position: absolute; top: -60px; left: 16px; z-index: 10001;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; border-radius: 2px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: top .3s var(--ease);
}
.skip:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.maxw-60 { max-width: 60ch; }
.maxw-50 { max-width: 50ch; }

/* ==========================================================================
   Wide arrival shot (Katy entrance)
   ========================================================================== */
.wideshot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--hairline);
}
.wideshot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease-out);
}
.wideshot:hover img { transform: scale(1.03); }
.wideshot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 3vw, 34px);
  font-size: 0.86rem;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(10,9,8,0.88));
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
@media (max-width: 680px) {
  .wideshot img { aspect-ratio: 4 / 3; }
  .wideshot figcaption { font-size: 0.78rem; }
}

/* ==========================================================================
   Membership tier comparison
   ========================================================================== */
.cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cmp th, .cmp td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  /* Light gold gridlines on every cell — border-collapse merges neighbours
     into a single hairline rather than doubling them up. */
  border: 1px solid var(--cmp-line);
}
.cmp thead th {
  border-bottom-color: var(--cmp-line-strong);
  vertical-align: bottom;
  white-space: nowrap;
}
/* Top-left corner: labels what the axes are, and keeps its gridlines */
.cmp thead th:first-child { vertical-align: bottom; }
.cmp__corner {
  display: block;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.7;
}
.cmp__corner em {
  display: block;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.cmp tbody th {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  position: sticky;
  left: 0;
  background: var(--ink);
  z-index: 1;
}
.cmp tbody tr:hover td { background: rgba(255,255,255,0.022); }
.cmp__name {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}
.cmp__price { display: block; color: var(--gold); font-size: 1.05rem; margin-top: 4px; }
.cmp__per {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}
.cmp__no { color: var(--muted-2); }
/* Elite — the featured column. Gold edges drawn with inset shadows so they win
   over border-collapse, which would otherwise merge them with the neighbours. */
.cmp .is-featured {
  background: rgba(199,162,90,0.14);
  box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold);
}
.cmp thead th.is-featured {
  background: rgba(199,162,90,0.2);
  box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold), inset 0 3px 0 var(--gold);
}
.cmp tbody tr:last-child .is-featured {
  box-shadow: inset 1px 0 0 var(--gold), inset -1px 0 0 var(--gold), inset 0 -1px 0 var(--gold);
}
.cmp thead th.is-featured .cmp__name { color: var(--gold-bright); }
.cmp tbody tr:hover .is-featured { background: rgba(199,162,90,0.19); }

/* Per-tier dropdowns */
.tdrops { display: grid; gap: 2px; }
.tdrop { border-bottom: 1px solid var(--hairline-soft); }
.tdrop summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  transition: color .35s var(--ease);
}
.tdrop summary::-webkit-details-marker { display: none; }
.tdrop summary:hover { color: var(--gold); }
.tdrop summary::after,
.tdrop summary::before {
  content: "";
  position: absolute;
  right: 6px;
  background: var(--gold);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.tdrop summary::after { top: 50%; width: 13px; height: 1px; }
.tdrop summary::before { top: 50%; right: 12px; width: 1px; height: 13px; transform: translateY(-50%); }
.tdrop[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.tdrop__name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tdrop__price { color: var(--gold); font-family: var(--display); font-size: 1.25rem; white-space: nowrap; }
.tdrop__price em {
  font-style: normal;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tdrop__body { padding-bottom: 26px; }
.tdrop__tag { color: var(--gold); font-family: var(--display); font-style: italic; margin-bottom: 14px; }
.tdrop__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px 24px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.045);
}
.tdrop__row span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tdrop__row strong { font-weight: 400; color: var(--cream); }
@media (max-width: 680px) {
  .tdrop__row { grid-template-columns: 1fr; gap: 2px; }
  .tdrop summary { padding-right: 36px; }
}

/* Member Login — sits beside Reserve in the header */
.hdr__login { white-space: nowrap; }
@media (max-width: 1080px) {
  .hdr__login {
    font-family: var(--body) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 14px;
    color: var(--gold);
    opacity: 1;
  }
}

/* Booking notice — e.g. an event that is fully booked */
.booknotice {
  border: 1px solid var(--gold);
  border-left-width: 3px;
  border-radius: 3px;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  background: linear-gradient(100deg, rgba(199,162,90,0.13), transparent 70%);
  margin-bottom: 20px;
}
.booknotice__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.booknotice__body { color: var(--cream); font-size: 0.95rem; margin-top: 8px; line-height: 1.6; }

/* Reserve button carries the same location dropdown as the split nav items */
.navdrop--cta .navdrop__panel { min-width: 210px; }
@media (max-width: 1080px) {
  .navdrop--cta { display: flex; flex-direction: column; align-items: center; }
  .navdrop--cta .navdrop__panel { margin-top: 10px; }
}

/* Featured event with its own poster */
.evt--featured { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: clamp(24px, 3.5vw, 48px); align-items: start; }
.evt--featured:has(> div:only-child) { grid-template-columns: 1fr; }
.evt__poster { margin: 0; }
@media (max-width: 780px) { .evt--featured { grid-template-columns: 1fr; } }

/* Three hero buttons wrap to three rows on a phone, which pushes the copy block
   up into the video's burned-in titles. Tighten them so it stays low. */
@media (max-width: 620px) {
  .hero__actions { gap: 8px; margin-top: 1.2rem; }
  .hero .btn { padding: 0.85em 1.4em; font-size: 0.64rem; letter-spacing: 0.14em; }
  .hero__sub { margin-top: 0.8rem; }
  .hero__title { margin-top: 0.7rem; }
}

/* Weekly events poster on a location's events page */
.weeklyposter { margin: 0; align-self: start; }
.weeklyposter img { width: 100%; height: auto; display: block; }
