/* ============================================================
   THE BRUNCH CLUB — by The Vig
   Stylesheet
   ------------------------------------------------------------
   This file is organized in clearly labeled sections so it is
   easy to find and change things. Read the comments above each
   section to know what it controls.
   ============================================================ */


/* ------------------------------------------------------------
   1. DESIGN TOKENS (colors, fonts, spacing)
   These are "variables" we reuse everywhere. Change a color
   here once and it updates across the whole site.
   ------------------------------------------------------------ */
:root {
  /* Brand colors pulled from The Vig's interior:
     warm cream, oxblood leather, espresso wood, brass/gold */
  --cream:        #f3e9d6;   /* light warm background */
  --cream-deep:   #e9dcc2;   /* slightly darker cream for panels */
  --espresso:     #1c1410;   /* near-black warm brown */
  --espresso-2:   #2a1d16;   /* a touch lighter than espresso */
  --oxblood:      #5a1a1c;   /* the signature burgundy leather */
  --oxblood-deep: #3a1012;   /* deep burgundy for shadows/blocks */
  --gold:         #b8893b;   /* brass / gold foil */
  --gold-bright:  #e6c77e;   /* lighter champagne gold for glows */
  --ink:          #2a1d17;   /* main dark text on light backgrounds */

  /* Fonts (loaded from Google Fonts in the HTML <head>) */
  --font-display: "Cormorant Garamond", Georgia, serif; /* big elegant headings */
  --font-script:  "Parisienne", cursive;                /* flowing script accents */
  --font-ui:      "Jost", "Helvetica Neue", sans-serif;  /* clean body + buttons */

  /* A reusable thin gold "foil" line */
  --foil: linear-gradient(90deg, transparent, var(--gold), transparent);
}


/* ------------------------------------------------------------
   2. GLOBAL RESETS
   A small reset so the site looks the same across browsers.
   ------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* widths include padding, easier math */
}

html {
  scroll-behavior: smooth; /* smooth scrolling when clicking nav links */
}

body {
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden; /* never scroll sideways */
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* A small uppercase label style we reuse for "eyebrow" text */
.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  font-weight: 500;
}


/* ============================================================
   PART A — THE GATE PAGE (index.html)
   Dark, blurred video hero. "Sexy and mysterious" invitation.
   ============================================================ */

/* Dark base behind the video (shows while the video loads) */
body.page-gate {
  background-color: var(--espresso);
  color: var(--cream);
  min-height: 100vh;
}

/* ---- Full-screen background video ----
   Explicit top/left/right/bottom (instead of the "inset" shorthand)
   so it reliably fills the screen in every browser, including Safari. */
.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the screen, crop as needed */
  /* Extra blur + darken on top of what's baked into the video file,
     and scale up slightly so the blurred edges never show. */
  filter: blur(4px) brightness(0.64) saturate(0.85);
  transform: scale(1.1);
}
/* Dark, moody overlay so text stays readable and it feels mysterious */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 35%, rgba(28, 20, 16, 0.35), rgba(28, 20, 16, 0.82) 90%),
    linear-gradient(180deg, rgba(28, 20, 16, 0.55), rgba(58, 16, 18, 0.45));
}

/* The centered column that holds everything on the gate page */
.gate-wrap {
  position: relative;
  z-index: 2; /* sit above the video + overlay */
  max-width: 760px;
  margin: 0 auto;
  min-height: 100vh; /* fill the screen so it's a true hero */
  padding: 6vh 24px 7vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Thin decorative gold rule with a diamond in the middle */
.foil-rule {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: var(--foil);
  position: relative;
  margin: 28px 0;
}
.foil-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg); /* tiny diamond */
}

/* The animated logo sits on a soft cream "invitation card" that
   floats over the dark blurred video. The card gives the
   white-on-white logo a light surface so it reads clearly. */
/* The logo PNG (white-on-transparent) sits directly on the dark
   video. A soft shadow lifts it off the moving footage so it stays
   crisp and readable. No background or card. */
.gate-logo {
  display: block;
  width: min(360px, 70vw);
  height: auto;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.7));
}

/* Tagline under the card */
.gate-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  line-height: 1.4;
  max-width: 32ch;
  margin: 30px auto 0;
  color: rgba(243, 233, 214, 0.9);
}

.gate-eyebrow {
  color: var(--gold-bright);
  margin-bottom: 20px;
}

/* Short description of the perks */
.gate-blurb {
  max-width: 46ch;
  font-size: 1rem;
  color: rgba(243, 233, 214, 0.75);
  margin-top: 16px;
}

/* Row of perk words under the blurb */
.perk-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--cream);
}
.perk-row span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}
.perk-row span::before {
  content: "·";
  margin-right: 22px;
  color: var(--gold);
}
.perk-row span:first-child::before { content: none; } /* no dot before first */

/* ---- The password form ---- */
.gate-form {
  margin-top: 40px;
  width: min(420px, 100%);
}

.gate-label {
  display: block;
  color: var(--gold-bright);
  margin-bottom: 14px;
}

/* The input wrapper draws the gold underline */
.field {
  position: relative;
  border-bottom: 1.5px solid rgba(230, 199, 126, 0.45);
  transition: border-color 0.3s ease;
}
.field:focus-within {
  border-color: var(--gold-bright); /* glow up when typing */
}

.gate-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  padding: 10px 6px 14px;
}
.gate-input::placeholder {
  color: rgba(243, 233, 214, 0.35);
  letter-spacing: 0.12em;
}

/* The "Enter" button */
.btn-enter {
  margin-top: 26px;
  display: inline-block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--oxblood);
  border: none;
  padding: 16px 42px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-enter:hover {
  background: var(--oxblood-deep);
  transform: translateY(-2px);
}
.btn-enter:active {
  transform: translateY(0);
}

/* Small hint + error message under the form */
.gate-hint {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(243, 233, 214, 0.55);
}
.gate-error {
  margin-top: 14px;
  min-height: 1.2em;
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gate-error.show { opacity: 1; }

/* Shake animation when the password is wrong */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-9px); }
  40%, 80% { transform: translateX(9px); }
}
.shake { animation: shake 0.4s ease; }

/* Locations line at the very bottom of the gate */
.gate-locations {
  margin-top: 44px;
  color: rgba(243, 233, 214, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gate-locations strong { color: var(--cream); font-weight: 600; }
.gate-locations .soon { color: var(--gold-bright); }


/* ============================================================
   PART A-2 — THE SIGN-UP FORM (index.html)
   The email-capture form that replaced the password gate.
   It reuses the gate's dark/gold look (the .field underline,
   the .btn-enter button) and adds a few field types of its own.
   ============================================================ */

/* The form is a touch wider than the old single password box */
.signup-form {
  width: min(440px, 100%);
  margin-top: 34px;
}

/* Space each field apart so they breathe */
.signup-field {
  margin-bottom: 18px;
}

/* Make typed text in the signup inputs a comfortable, readable size
   (the old gate input was huge because it was a single password). */
.signup-input,
.signup-select {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 10px 4px 12px;
}

/* Small label above the birthday row */
.signup-sublabel {
  text-align: left;
  margin: 6px 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(243, 233, 214, 0.6);
}

/* Birthday month + day sit side by side */
.signup-row {
  display: flex;
  gap: 16px;
}
.signup-row .signup-field {
  flex: 1;
}

/* ---- Custom-styled dropdowns (month / day) ----
   We strip the browser's default look and draw our own little
   gold arrow so the selects match the dark theme. */
.signup-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  /* a small gold chevron drawn with an SVG background image */
  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 fill='%23e6c77e' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 26px;
}
/* The dropdown list itself uses the OS styling, so force dark,
   readable option text on a light system menu. */
.signup-select option {
  color: #1c1410;
  background: #f3e9d6;
}
/* Until a real choice is made, the placeholder option reads as muted */
.signup-select:invalid {
  color: rgba(243, 233, 214, 0.4);
}

/* ---- The SMS-consent checkbox row ---- */
.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 4px 0 6px;
  cursor: pointer;
  user-select: none;
}
/* Hide the real checkbox but keep it accessible to screen readers */
.sms-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/* The box we actually draw */
.sms-box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid rgba(230, 199, 126, 0.55);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}
/* The gold checkmark, hidden until checked */
.sms-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--espresso);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
}
.sms-consent input[type="checkbox"]:checked + .sms-box {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.sms-consent input[type="checkbox"]:checked + .sms-box::after {
  transform: rotate(45deg) scale(1);
}
/* Gold focus ring for keyboard users */
.sms-consent input[type="checkbox"]:focus-visible + .sms-box {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.sms-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(243, 233, 214, 0.62);
}
/* The punchy first line of the SMS opt-in */
.sms-lead {
  display: block;
  color: rgba(243, 233, 214, 0.92);
  font-size: 0.86rem;
  margin-bottom: 5px;
}
/* The required legal "fine print" beneath it */
.sms-fine {
  display: block;
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(243, 233, 214, 0.5);
}
.sms-fine a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(230, 199, 126, 0.3);
}
.sms-fine a:hover { border-color: var(--gold-bright); }

/* The Join button: full-width version of the gate's button */
.signup-btn {
  width: 100%;
  margin-top: 22px;
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

/* The little "21+ / Terms / Privacy" line under the button */
.consent-line {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(243, 233, 214, 0.5);
  line-height: 1.6;
}
.consent-line a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(230, 199, 126, 0.35);
}
.consent-line a:hover { border-color: var(--gold-bright); }

/* ---- The "You're in" success state ---- */
.signup-success {
  width: min(440px, 100%);
  text-align: center;
}
.signup-success .foil-rule { margin: 8px auto 26px; }
.success-script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: clamp(2.6rem, 9vw, 4rem);
  line-height: 1;
}
.success-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: rgba(243, 233, 214, 0.85);
  max-width: 36ch;
  margin: 16px auto 0;
}

/* ---- Footer on the landing page ---- */
.gate-footer {
  margin-top: 54px;
  text-align: center;
}
.gate-footer .legal-links {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.gate-footer .legal-links a {
  color: rgba(243, 233, 214, 0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.gate-footer .legal-links a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.gate-footer .legal-owner {
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 233, 214, 0.4);
}


/* ============================================================
   PART C — LEGAL PAGES (privacy.html, terms.html)
   A calm, readable dark document page that still feels like
   it belongs to The Brunch Club.
   ============================================================ */
body.page-legal {
  background-color: var(--espresso);
  background-image:
    radial-gradient(circle at 12% 0%, rgba(90, 26, 28, 0.4), transparent 45%),
    radial-gradient(circle at 95% 100%, rgba(184, 137, 59, 0.1), transparent 40%);
  color: var(--cream);
  min-height: 100vh;
}

/* Top bar with the logo, links back to the landing page */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  border-bottom: 1px solid rgba(184, 137, 59, 0.25);
  background: rgba(28, 20, 16, 0.6);
}
.legal-header img { height: 40px; width: auto; }
.legal-header .back-link {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.legal-header .back-link:hover { border-color: var(--gold-bright); }

/* The readable text column */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 7vh 6vw 12vh;
}
.legal-wrap .eyebrow {
  color: var(--gold-bright);
  display: block;
  margin-bottom: 14px;
}
.legal-wrap h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.legal-wrap .updated {
  color: rgba(243, 233, 214, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-top: 12px;
}
.legal-wrap h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  margin: 42px 0 12px;
  color: var(--cream);
}
.legal-wrap p,
.legal-wrap li {
  color: rgba(243, 233, 214, 0.78);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-wrap ul { padding-left: 22px; margin-bottom: 12px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(230, 199, 126, 0.35);
}
.legal-wrap a:hover { border-color: var(--gold-bright); }
.legal-wrap strong { color: var(--cream); }
/* A gold-tinted callout box for the important SMS terms */
.legal-callout {
  border: 1px solid rgba(184, 137, 59, 0.35);
  background: rgba(184, 137, 59, 0.07);
  padding: 22px 24px;
  margin: 24px 0;
}
.legal-callout p:last-child { margin-bottom: 0; }
/* The little gold divider with a diamond, reused on legal pages */
.legal-wrap .foil-rule { margin: 40px auto; }
.legal-footer {
  text-align: center;
  padding: 5vh 6vw;
  border-top: 1px solid rgba(184, 137, 59, 0.2);
  color: rgba(243, 233, 214, 0.45);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.legal-footer a { color: var(--gold-bright); }


/* ============================================================
   PART B — THE MEMBERS PAGE (club.html)
   Dark, moody "inside the lounge". Stepping through the door.
   ============================================================ */

body.page-club {
  background-color: var(--espresso);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(90, 26, 28, 0.55), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(184, 137, 59, 0.12), transparent 40%);
  color: var(--cream);
}

/* Sticky top bar inside the members area */
.club-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(28, 20, 16, 0.82);
  backdrop-filter: blur(10px); /* frosted glass effect */
  border-bottom: 1px solid rgba(184, 137, 59, 0.28);
}
.club-header img { height: 46px; width: auto; }
.club-header .member-tag {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* tiny pulsing dot = "you're inside" indicator */
.member-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.btn-leave {
  background: none;
  border: 1px solid rgba(243, 233, 214, 0.3);
  color: var(--cream);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-leave:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Hero welcome inside the club */
.club-hero {
  text-align: center;
  padding: 9vh 6vw 6vh;
  position: relative;
}
.club-hero .welcome-script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1;
}
.club-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin-top: 6px;
}
.club-hero p {
  max-width: 52ch;
  margin: 22px auto 0;
  color: rgba(243, 233, 214, 0.72);
}

/* Section wrapper + headings */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5vh 5vw;
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 34px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.section-head .num {
  font-family: var(--font-ui);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
/* gold line that fills the remaining space next to a heading */
.section-head .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---- Event cards grid (DJ pop-ups, collabs) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.event-card {
  position: relative;
  border: 1px solid rgba(184, 137, 59, 0.25);
  background: var(--espresso-2);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.event-card .photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
/* dark gradient over photos so text is readable */
.event-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 20, 16, 0.85), transparent 70%);
}
/* date badge in the corner of a card */
.event-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--oxblood);
  color: var(--cream);
  text-align: center;
  padding: 8px 12px;
  line-height: 1;
}
.event-card .badge .day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
}
.event-card .badge .mon {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.event-card .body { padding: 22px 22px 26px; }
.event-card .loc {
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.event-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 8px 0 10px;
}
.event-card .desc {
  font-size: 0.92rem;
  color: rgba(243, 233, 214, 0.7);
  margin-bottom: 18px;
}
.event-card .rsvp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  cursor: pointer;
  transition: border-color 0.3s, gap 0.3s;
}
.event-card .rsvp:hover { border-color: var(--gold-bright); gap: 14px; }

/* ---- Members deals (simple list rows) ---- */
.deal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(184, 137, 59, 0.18);
  flex-wrap: wrap;
}
.deal .left { display: flex; align-items: baseline; gap: 18px; flex: 1; min-width: 260px; }
.deal .left .icon {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
}
.deal h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
}
.deal p { color: rgba(243, 233, 214, 0.65); font-size: 0.9rem; }
.deal .tag {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--espresso);
  background: var(--gold-bright);
  padding: 7px 14px;
  white-space: nowrap;
}

/* ---- Reservations callout band ---- */
.reserve-band {
  position: relative;
  margin: 5vh 0;
  padding: 8vh 6vw;
  text-align: center;
  background-image: linear-gradient(rgba(28,20,16,0.78), rgba(58,16,18,0.85)), url("../assets/img/interior-2.jpg");
  background-size: cover;
  background-position: center;
}
.reserve-band .script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
}
.reserve-band h2 {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin: 8px 0 18px;
}
.reserve-band p { max-width: 50ch; margin: 0 auto 30px; color: rgba(243,233,214,0.8); }

.btn-gold {
  display: inline-block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--espresso);
  background: var(--gold-bright);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 199, 126, 0.25);
}

/* ---- Locations strip ---- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.loc-card {
  border: 1px solid rgba(184, 137, 59, 0.25);
  padding: 30px 26px;
  position: relative;
}
.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}
.loc-card .city {
  color: var(--gold-bright);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.loc-card .addr { color: rgba(243,233,214,0.65); font-size: 0.9rem; margin-top: 10px; }
.loc-card.soon { border-style: dashed; opacity: 0.85; }
.loc-card.soon .flag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  color: var(--gold);
}

/* ---- Footer ---- */
.club-footer {
  text-align: center;
  padding: 7vh 6vw 5vh;
  border-top: 1px solid rgba(184, 137, 59, 0.2);
  margin-top: 4vh;
}
.club-footer .script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 2rem;
}
.club-footer p {
  color: rgba(243,233,214,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
}


/* ------------------------------------------------------------
   3. SCROLL-IN ANIMATION
   Elements with .reveal start invisible and slide up when they
   enter the screen (JavaScript adds the .in class).
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer less motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ------------------------------------------------------------
   4. MOBILE TWEAKS
   Small-screen adjustments (mobile-first means most styles
   already work on phones; these just polish a few spots).
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .club-header { padding: 14px 5vw; }
  .club-header img { height: 38px; }
  .club-header .member-tag { display: none; } /* save space on phones */
  .section-head h2 { white-space: normal; }
  .deal { padding: 22px 4px; }
}
