/* ============================================================
   SINGLE-VENUE COMPONENTS
   Layered on top of styles.css — the shared design system.
   Everything here is specific to a lounge's own site: hours,
   menus, membership tiers, galleries, inquiry forms.

   To rebrand: change nothing here. The palette lives in the
   :root block at the top of styles.css — ten variables.
   ============================================================ */

/* ── NAV RESERVE BUTTON ── */
.nav-cta {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--amber-dim);
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--amber);
  color: var(--espresso);
}

/* The wordmark never breaks across two lines */
.nav-wordmark { white-space: nowrap; }
.nav-links a { white-space: nowrap; }

/* This nav carries five links plus a Reserve button — a page more than the
   directory's — so it needs to collapse earlier than the 768px in styles.css.
   These rules mirror that breakpoint, moved up to 1024px. */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(14, 8, 4, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(200,134,26,0.08);
  }

  /* Keep the reserve button reading as a button, not a list row */
  .nav-links .nav-cta {
    display: inline-block;
    width: auto;
    margin-top: 14px;
    border: 1px solid var(--amber-dim);
  }
}

/* ── ALTERNATING IMAGE / TEXT STRIP ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split + .split { margin-top: 96px; }

/* .split.reverse puts the image on the left at desktop width */
.split.reverse .split-media { order: -1; }

.split-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.split-title em { font-style: italic; color: var(--amber); }

.split-body p {
  font-size: 0.92rem;
  color: var(--smoke);
  line-height: 1.85;
  margin-bottom: 18px;
}

.split-body p:last-child { margin-bottom: 0; }

.split-media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media.wide { aspect-ratio: 4/3; }

/* ── PULL QUOTE ── */
.pull-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ash);
}

.pull-quote figcaption {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-top: 28px;
}

/* ── MENU / PRICE LIST ── */
/* 290px + 56px gaps lets three blocks sit across the 1084px content width;
   drops to two, then one, as the viewport narrows. */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 56px;
}

.menu-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.menu-item { padding: 18px 0; border-bottom: 1px solid rgba(200,134,26,0.07); }
.menu-item:last-child { border-bottom: none; }

/* Dot leaders between the name and the price */
.menu-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-name {
  font-size: 0.92rem;
  color: var(--cream);
  font-weight: 400;
}

.menu-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(200,134,26,0.28);
  transform: translateY(-4px);
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--amber);
  white-space: nowrap;
}

.menu-note {
  font-size: 0.78rem;
  color: var(--smoke);
  line-height: 1.65;
  margin-top: 6px;
  max-width: 46ch;
}

.menu-origin {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-top: 8px;
}

/* ── MEMBERSHIP TIERS ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.tier-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,134,26,0.08);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
}

/* The tier the room actually wants you in */
.tier-card.featured {
  background: rgba(14,8,4,0.72);
  border-color: rgba(200,134,26,0.32);
}

.tier-flag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  min-height: 0.9rem;
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-top: 18px;
}

.tier-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-top: 8px;
}

.tier-list {
  list-style: none;
  margin: 28px 0 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.tier-list li {
  font-size: 0.84rem;
  color: var(--smoke);
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 14px;
  position: relative;
}

.tier-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--amber);
  font-size: 1.2rem;
  line-height: 1.1;
}

/* Pins the button to the bottom so cards of unequal length still align */
.tier-card .btn-ghost,
.tier-card .btn-primary {
  margin-top: auto;
  text-align: center;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.gallery-cell {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-cell.tall { aspect-ratio: 3/4; }

/* ── HOURS ── */
.hours-list { max-width: 460px; }

.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(200,134,26,0.08);
}

.hours-row:last-child { border-bottom: none; }

/* Marks the night the room is at its best */
.hours-row.accent .hours-day,
.hours-row.accent .hours-time { color: var(--amber); }

.hours-day {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.hours-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

/* ── DETAIL ROWS (address, parking, dress) ── */
.detail-list { border-top: 1px solid var(--rule); }

.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(200,134,26,0.08);
}

.detail-key {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 3px;
}

.detail-val {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.7;
}

.detail-val a { color: var(--amber-dim); text-decoration: none; }
.detail-val a:hover { color: var(--amber); }

/* ── MAP SLOT ── */
.map-slot {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── INQUIRY FORM ── */
.inquiry-form {
  max-width: 680px;
  border: 1px solid var(--rule);
  background: rgba(14,8,4,0.6);
  padding: 44px 40px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  background: rgba(14,8,4,0.8);
  border: 1px solid rgba(200,134,26,0.2);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.field input::placeholder,
.field textarea::placeholder { color: var(--smoke); }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--amber-dim); }

/* Native select arrow, tinted to match */
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--amber-dim) 50%),
    linear-gradient(135deg, var(--amber-dim) 50%, transparent 50%);
  background-position: calc(100% - 19px) center, calc(100% - 14px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.form-note {
  font-size: 0.72rem;
  color: var(--amber-dim);
  line-height: 1.6;
  letter-spacing: 0.06em;
  flex: 1;
  min-width: 200px;
}

/* ── FOR-SALE NOTICE — remove entirely when handed to the buyer ──
   This is the last thing anyone sees, and the outreach links straight
   here, so it carries the offer rather than whispering a disclaimer. */
.demo-note {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 32px 72px;
  background: linear-gradient(180deg, rgba(10,6,3,0.92) 0%, #0E0804 100%);
  border-top: 1px solid rgba(200,134,26,0.35);
}

/* The ember rule, reused along the top edge */
.demo-note::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-bright), transparent);
}

.demo-note-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.demo-note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.demo-note-title em { font-style: italic; color: var(--amber); }

.demo-note-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--amber-bright);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.demo-note-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ash);
  max-width: 62ch;
  margin: 0 auto 32px;
}

.demo-note-body strong { color: var(--cream); font-weight: 400; }

.demo-note a { color: var(--amber); text-decoration: none; }
.demo-note a:hover { color: var(--amber-bright); }

@media (max-width: 768px) {
  .demo-note { padding: 48px 24px 56px; }
  .demo-note-body { font-size: 0.86rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split,
  .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split + .split { margin-top: 64px; }
  .split-media,
  .split-media.wide { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .menu-columns { gap: 44px; }
  .inquiry-form { padding: 32px 24px; }
  .field-grid { grid-template-columns: 1fr; gap: 18px; }
  .detail-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .tier-card { padding: 36px 28px 32px; }
}
