/* ================================================================
   THE ASLAN LOUNGE — v5.0
   Typography: Playfair Display SC (display) + DM Sans (body/UI)
   Refined from scratch. Single merged file. Zero duplicate blocks.
   ================================================================ */

/* ── 1. TOKENS ────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --gold:      #D4AF37;
  --gold-hi:   #E2C253;
  --gold-lo:   #BFA046;
  --gold-dim:  rgba(212,175,55,.18);
  --cream:     #F5F2EA;
  --paper:     #FAF8F3;
  --charcoal:  #1A1A1A;
  --black:     #0D0D0D;
  --ink:       #1A1714;
  --muted:     #C0B8AD;
  --soft:      #7A7068;
  --line:      rgba(212,175,55,.20);
  --line-dk:   rgba(13,13,13,.10);
  --shadow-lg: 0 32px 80px rgba(0,0,0,.32);
  --shadow-sm: 0 8px 28px rgba(0,0,0,.14);
  --focus:     0 0 0 3px rgba(212,175,55,.32);

  /* Typography — two families, clear roles */
  --f-display: 'Playfair Display SC', 'Cormorant Garamond', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, serif;
  --f-sans:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --nav-h:     74px;
  --pad:       90px;
  --pad-sm:    58px;
}

/* ── 2. RESET ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img     { display:block; max-width:100%; height:auto; }
a       { color:inherit; text-decoration:none; }
button,input,select,textarea { font:inherit; }
address { font-style:normal; }
ul,ol   { list-style:none; }
::selection { background:var(--gold); color:var(--black); }

/* ── 3. LAYOUT UTILITY ────────────────────────────────────────── */
.container { width:min(1180px,calc(100% - 36px)); margin-inline:auto; }

.skip-link {
  position:absolute; left:16px; top:-80px; z-index:9999;
  background:var(--gold); color:#000; padding:10px 16px;
  font-family:var(--f-sans); font-size:.72rem;
  font-weight:600; letter-spacing:.16em; text-transform:uppercase;
}
.skip-link:focus { top:14px; }
.seo-schema { display:none; }

/* ── 4. TYPE COMPONENTS ───────────────────────────────────────── */

/* Eyebrow — DM Sans, tight tracking, gold */
.eyebrow {
  display:block;
  font-family:var(--f-sans);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
  line-height:1.3;
}

/* Script / italic accent — Cormorant italic */
.script {
  display:block;
  font-family:var(--f-serif);
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.15rem,1.6vw,1.4rem);
  line-height:1.35;
  letter-spacing:.02em;
  color:var(--gold);
  margin-bottom:8px;
}

.gold { color:var(--gold); }
.soft { color:var(--soft); }

/* Gold rule ornament */
.divider {
  display:flex; align-items:center; gap:16px; margin:22px 0;
}
.divider::before,.divider::after {
  content:''; flex:0 0 52px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.divider span { color:var(--gold); font-size:.85rem; line-height:1; }

/* ── 5. FOCUS ─────────────────────────────────────────────────── */
input:focus,select:focus,textarea:focus,
button:focus-visible,a:focus-visible {
  outline:none; box-shadow:var(--focus);
}

/* ── 6. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; min-height:44px; padding:12px 22px;
  border:1px solid var(--line);
  font-family:var(--f-sans); font-size:.68rem;
  font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  line-height:1; white-space:nowrap; cursor:pointer;
  transition:background .2s,color .2s,border-color .2s,transform .18s;
}
.btn--gold   { background:var(--gold); color:var(--black); border-color:var(--gold); }
.btn--gold:hover { background:var(--gold-hi); border-color:var(--gold-hi); transform:translateY(-2px); }
.btn--ghost  { color:var(--cream); border-color:rgba(245,242,234,.28); }
.btn--ghost:hover { border-color:var(--gold); color:var(--gold); }
.btn--dark   { color:var(--ink); border-color:rgba(26,23,20,.18); }
.btn--dark:hover { border-color:var(--gold-lo); color:var(--gold-lo); }
.btn--cream  { background:var(--cream); color:var(--black); border-color:var(--cream); }
.btn--small  { min-height:36px; padding:8px 14px; font-size:.62rem; letter-spacing:.15em; }
.btn-row { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
button:disabled { opacity:.65; cursor:wait; }

/* ── 7. NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position:fixed; inset:0 0 auto; z-index:1000;
  height:var(--nav-h);
  background:linear-gradient(180deg,rgba(13,13,13,.95),rgba(13,13,13,.52));
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(212,175,55,.11);
  transition:background .25s ease;
}
.site-header.is-scrolled { background:rgba(13,13,13,.97); }

.nav-shell {
  height:var(--nav-h);
  display:flex; align-items:center; gap:20px;
}

/* Brand lockup */
.brand { display:flex; align-items:center; gap:11px; min-width:max-content; }
.brand img {
  width:48px; max-height:38px; object-fit:contain;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.brand span {
  display:grid; line-height:1.1;
  font-family:var(--f-display); font-weight:400;
  font-size:.72rem; letter-spacing:.24em;
  text-transform:uppercase; color:var(--gold);
}
.brand em {
  font-style:normal;
  font-family:var(--f-sans); font-size:.5rem;
  font-weight:500; letter-spacing:.4em;
  text-transform:uppercase; color:rgba(245,242,234,.65);
}

/* Nav links */
.site-nav {
  margin-left:auto; display:flex;
  align-items:center; gap:14px;
}
.site-nav a {
  font-family:var(--f-sans); font-size:.64rem;
  font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(245,242,234,.76); transition:color .18s ease;
}
.site-nav a:hover,.site-nav a.is-active { color:var(--gold); }

/* Book Now pill */
.nav-cta {
  font-family:var(--f-sans); font-size:.64rem;
  font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  border:1px solid var(--gold); color:var(--gold);
  padding:9px 15px; white-space:nowrap;
  transition:background .18s ease,color .18s ease;
}
.nav-cta:hover { background:var(--gold); color:var(--black); }

/* Hamburger */
.nav-toggle {
  display:none; margin-left:auto; background:transparent;
  border:0; width:42px; height:42px; padding:10px; cursor:pointer;
}
.nav-toggle span {
  display:block; height:1.5px; background:var(--cream);
  margin:5px 0; border-radius:1px;
  transition:transform .24s ease,opacity .24s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

@media (max-width:1020px) {
  .site-nav {
    display:none; position:fixed;
    left:16px; right:16px; top:calc(var(--nav-h) + 8px);
    background:rgba(13,13,13,.98); border:1px solid var(--line);
    padding:24px; flex-direction:column; align-items:flex-start;
    max-height:calc(100svh - var(--nav-h) - 30px); overflow:auto;
    gap:0;
  }
  .menu-open .site-nav { display:flex; }
  .site-nav a { font-size:.76rem; padding:11px 0; width:100%; border-bottom:1px solid rgba(212,175,55,.08); }
  .site-nav a:last-child { border-bottom:0; }
  .nav-toggle { display:block; }
  .nav-cta { margin-left:auto; }
}

/* ── 8. HERO ──────────────────────────────────────────────────── */
.hero,.page-hero {
  position:relative;
  background-image:var(--hero);
  background-size:cover; background-position:center;
  display:grid; align-items:center; overflow:hidden;
}
.hero      { min-height:760px; }
.page-hero { min-height:580px; }

.hero__veil,.page-hero__veil {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 48% 40%,rgba(212,175,55,.11),transparent 38%),
    linear-gradient(100deg, rgba(13,13,13,.88),rgba(13,13,13,.3) 55%,rgba(13,13,13,.78)),
    linear-gradient(180deg,rgba(13,13,13,.1),rgba(13,13,13,.97));
}
.hero::after,.page-hero::after {
  content:''; position:absolute; inset:auto 0 0;
  height:200px;
  background:linear-gradient(0deg,var(--black),transparent);
}

.hero__inner,.page-hero__inner {
  position:relative; z-index:2;
  padding-top:var(--nav-h);
}
.hero__inner {
  text-align:center; margin-inline:auto;
  max-width:940px; padding-bottom:100px;
}
.page-hero__inner { max-width:880px; padding-bottom:80px; }

.hero__logo {
  width:min(160px,40vw); margin:0 auto 24px;
  filter:drop-shadow(0 18px 44px rgba(0,0,0,.6));
}

/* Hero H1 — Playfair Display SC, generous leading */
.hero h1 {
  font-family:var(--f-display);
  font-weight:400;
  font-size:clamp(3rem,6.8vw,6.2rem);
  line-height:.96;
  letter-spacing:.04em;
  color:var(--cream);
  text-wrap:balance;
}

/* Page hero H1 — slightly smaller, same character */
.page-hero h1 {
  font-family:var(--f-display);
  font-weight:400;
  font-size:clamp(2.4rem,5.2vw,4.5rem);
  line-height:.98;
  letter-spacing:.035em;
  color:var(--cream);
  text-wrap:balance;
  max-width:800px;
}

/* Hero lead copy — DM Sans light */
.hero__lead,.page-hero p:not(.eyebrow) {
  font-family:var(--f-sans);
  font-size:clamp(1rem,1.4vw,1.18rem);
  font-weight:300;
  line-height:1.78;
  letter-spacing:.016em;
  color:rgba(245,242,234,.76);
  max-width:640px;
}
.hero__lead             { margin:26px auto 34px; }
.page-hero p:not(.eyebrow) { margin:20px 0 30px; }
.hero .btn-row          { justify-content:center; }

/* ── 9. SECTIONS ──────────────────────────────────────────────── */
.section { padding:var(--pad) 0; }
.section--paper  { background:var(--paper); color:var(--ink); }
.section--cream  { background:var(--cream); color:var(--ink); }
.section--dark   { background:var(--charcoal); }
.section--black  { background:var(--black); }
.section--featured-event {
  padding:38px 0 80px;
  background:linear-gradient(180deg,#0d0d0d,#141414);
  border-top:1px solid rgba(212,175,55,.16);
  border-bottom:1px solid rgba(212,175,55,.12);
}

/* Section headings — Playfair Display SC, light feel */
.section-head { max-width:680px; margin-bottom:40px; }
.section-head.center { text-align:center; margin-inline:auto; }

.section-head h2,.split h2,.panel-heading {
  font-family:var(--f-display);
  font-weight:400;
  font-size:clamp(1.95rem,3.5vw,3.35rem);
  line-height:1.08;
  letter-spacing:.03em;
  text-wrap:balance;
}
.section-head h2 { margin:.06em 0 .3em; }
.panel-heading   { font-size:clamp(1.9rem,3.4vw,3.1rem); margin:0 0 20px; }
.split h2        { font-size:clamp(1.9rem,3.4vw,3.2rem); margin-bottom:22px; }

.section-head p {
  font-size:clamp(.94rem,1.1vw,1.04rem);
  line-height:1.76; color:var(--soft); font-weight:400;
}
.section--dark .section-head p,
.section--black .section-head p { color:rgba(245,242,234,.64); }

/* ── 10. LAYOUT ───────────────────────────────────────────────── */
.intro-grid,.split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}
.split--reverse .split__media { order:2; }
.split__copy p {
  font-size:clamp(.94rem,1.1vw,1.02rem);
  line-height:1.76; color:var(--soft);
}
.section--dark .split__copy p,
.section--black .split__copy p { color:rgba(245,242,234,.7); }

/* Framed image */
.media-frame {
  position:relative; border:1px solid var(--line);
  padding:10px; background:rgba(212,175,55,.04); box-shadow:var(--shadow-lg);
}
.media-frame img { width:100%; aspect-ratio:4/5; object-fit:cover; }
.media-frame.wide img { aspect-ratio:16/10; }
.media-frame::after {
  content:''; position:absolute; inset:20px -14px -14px 20px;
  border:1px solid rgba(212,175,55,.22); z-index:-1;
}

/* Pillars */
.pillars {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(215px,1fr));
  border:1px solid var(--line); background:rgba(255,255,255,.02);
}
.pillar { padding:32px; border-right:1px solid var(--line); }
.pillar:last-child { border-right:0; }
.pillar h3 {
  font-family:var(--f-sans);
  font-size:.72rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.pillar p {
  font-size:.96rem; line-height:1.72;
  color:rgba(245,242,234,.68); font-weight:400;
}

/* Feature grid */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.feature {
  border:1px solid var(--line-dk); padding:30px;
  background:rgba(255,255,255,.7); transition:box-shadow .2s;
}
.feature:hover { box-shadow:var(--shadow-sm); }
.section--dark .feature,.section--black .feature {
  background:rgba(255,255,255,.03); border-color:var(--line);
}
.feature h3 {
  font-family:var(--f-display);
  font-size:clamp(1.2rem,1.5vw,1.45rem);
  font-weight:400; letter-spacing:.03em;
  line-height:1.12; margin-bottom:12px;
}
.feature p {
  font-size:.96rem; line-height:1.72; color:var(--soft); font-weight:400;
}
.section--dark .feature p,
.section--black .feature p { color:rgba(245,242,234,.64); }

/* Image ribbon */
.image-ribbon {
  display:grid; grid-template-columns:1.2fr .8fr 1fr .85fr; gap:8px;
}
.image-ribbon img { width:100%; height:250px; object-fit:cover; }
.image-ribbon img:nth-child(1) { height:380px; }
.image-ribbon img:nth-child(3) { height:330px; align-self:end; }

/* Elegant bullet list */
.elegant-list { padding:0; margin:24px 0 28px; }
.elegant-list li {
  position:relative; padding-left:24px;
  font-size:.98rem; line-height:1.68; color:var(--soft);
  margin-bottom:10px;
}
.elegant-list li::before {
  content:'✦'; position:absolute; left:0; top:.15em;
  color:var(--gold); font-size:.65rem;
}
.section--black .elegant-list li,
.section--dark .elegant-list li { color:rgba(245,242,234,.7); }

/* Service list */
.service-list { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.service-list article {
  border:1px solid var(--line); background:rgba(255,255,255,.03); padding:24px;
}
.service-list h3 {
  font-family:var(--f-display);
  font-size:clamp(1.15rem,1.4vw,1.35rem);
  font-weight:400; letter-spacing:.02em;
  line-height:1.12; margin-bottom:10px; color:var(--cream);
}
.service-list p { font-size:.94rem; line-height:1.68; color:rgba(245,242,234,.64); }

/* ── 11. FEATURED EVENT ───────────────────────────────────────── */
.featured-event-card {
  display:grid; grid-template-columns:.9fr 1.1fr;
  border:1px solid rgba(212,175,55,.26);
  background:rgba(255,255,255,.03); box-shadow:0 28px 76px rgba(0,0,0,.3);
}
.featured-event-card__media img {
  width:100%; height:100%; min-height:340px;
  object-fit:cover; object-position:center 48%;
}
.featured-event-card__copy {
  padding:48px; display:flex; flex-direction:column; justify-content:center;
}
.featured-event-card__copy h2 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.04; letter-spacing:.03em; margin-bottom:16px;
}
.deposit-note {
  border-left:2px solid var(--gold); padding-left:18px;
  color:rgba(245,242,234,.7); font-size:.96rem; line-height:1.7;
}

/* ── 12. MENU ─────────────────────────────────────────────────── */
.menu-tabs {
  display:flex; gap:6px; flex-wrap:wrap;
  position:sticky; top:var(--nav-h); z-index:20;
  background:rgba(13,13,13,.9); backdrop-filter:blur(18px);
  padding:10px; border:1px solid var(--line); margin-bottom:36px;
}
.menu-tabs button {
  border:1px solid rgba(245,242,234,.13); background:transparent;
  color:var(--cream); font-family:var(--f-sans);
  font-size:.64rem; font-weight:500;
  letter-spacing:.15em; text-transform:uppercase;
  padding:9px 13px; white-space:nowrap; transition:.18s ease;
}
.menu-tabs button.is-active,.menu-tabs button:hover {
  background:var(--gold); color:var(--black); border-color:var(--gold);
}
.menu-panel { display:none; }
.menu-panel.is-active { display:block; }

.menu-category { margin-bottom:64px; }
.menu-category h2 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(1.85rem,3.4vw,3.15rem);
  line-height:1.04; letter-spacing:.03em; margin-bottom:12px;
}

.menu-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:12px; margin-top:24px;
}
.menu-item {
  border:1px solid var(--line); padding:18px 20px;
  background:rgba(255,255,255,.03); transition:border-color .2s;
}
.menu-item:hover { border-color:rgba(212,175,55,.48); }
.menu-item__top {
  display:flex; justify-content:space-between;
  gap:14px; align-items:baseline; margin-bottom:6px;
}
.menu-item h3 {
  font-family:var(--f-serif);
  font-size:clamp(1.1rem,1.45vw,1.28rem);
  font-weight:500; line-height:1.2;
  letter-spacing:.01em; color:var(--cream);
}
.menu-item span {
  font-family:var(--f-sans); font-size:.8rem;
  font-weight:600; letter-spacing:.06em;
  color:var(--gold); white-space:nowrap;
}
.menu-item p {
  font-size:.88rem; line-height:1.62;
  color:rgba(245,242,234,.58); letter-spacing:.008em;
}
.notice {
  border:1px solid var(--line); background:rgba(212,175,55,.07);
  padding:18px 22px; font-size:.92rem;
  color:rgba(245,242,234,.72); line-height:1.7;
}

/* Print menu cards */
.print-menu-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:24px; margin:32px 0;
}
.print-card { border:1px solid var(--line); background:rgba(255,255,255,.04); padding:14px; }
.print-card img { width:100%; aspect-ratio:2/3; object-fit:cover; object-position:top; }
.print-card .btn { margin-top:14px; width:100%; }

/* ── 13. EVENT & HIRE CARDS ───────────────────────────────────── */
.event-grid,.gallery-grid,.hire-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.hire-grid--services { grid-template-columns:repeat(3,1fr); }

.event-card,.hire-card,.gallery-card {
  background:rgba(255,255,255,.04); border:1px solid var(--line);
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.section--paper .event-card,
.section--paper .hire-card,
.section--paper .gallery-card { background:#fff; border-color:var(--line-dk); }
.event-card:hover,.hire-card:hover,.gallery-card:hover {
  transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--gold);
}
.event-card img,.hire-card img { width:100%; height:220px; object-fit:cover; }
.gallery-card img { width:100%; height:280px; object-fit:cover; }
.event-card__body,.hire-card__body,.gallery-card__body { padding:22px; }

.event-card h3,.hire-card h3,.gallery-card h3 {
  font-family:var(--f-display);
  font-size:clamp(1.18rem,1.55vw,1.45rem);
  font-weight:400; letter-spacing:.025em;
  line-height:1.12; margin-bottom:9px;
}
.event-meta {
  font-family:var(--f-sans); font-size:.64rem;
  font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:10px; display:block;
}
.event-card p,.hire-card p,.gallery-card p {
  font-size:.96rem; line-height:1.72;
  color:rgba(245,242,234,.66);
}
.section--paper .event-card p,
.section--paper .hire-card p,
.section--paper .gallery-card p { color:var(--soft); }
.event-actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.event-actions .btn { width:auto; }
.past-event-grid .event-card img { height:228px; }

/* ── 14. MODALS ───────────────────────────────────────────────── */
.event-modal-layer {
  position:fixed; inset:0; z-index:4000;
  display:none; align-items:center; justify-content:center;
  padding:24px; background:rgba(0,0,0,.82); backdrop-filter:blur(14px);
}
.event-modal-layer.is-open { display:flex; }
.event-modal {
  display:none; position:relative;
  width:min(1000px,96vw); max-height:90svh; overflow:auto;
  background:#111; border:1px solid rgba(212,175,55,.36);
  box-shadow:0 40px 120px rgba(0,0,0,.7);
  grid-template-columns:.9fr 1.1fr;
}
.event-modal.is-active { display:grid; }
.event-modal > img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.event-modal__content { padding:46px; }
.event-modal__content h2 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(1.9rem,3.8vw,3.5rem);
  line-height:1.04; letter-spacing:.03em; margin-bottom:18px;
}
.event-modal__content p {
  font-size:.98rem; line-height:1.76;
  color:rgba(245,242,234,.72);
}
.event-modal__content dl { display:grid; gap:12px; margin:26px 0; }
.event-modal__content dt {
  font-family:var(--f-sans); font-size:.66rem;
  font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold);
}
.event-modal__content dd {
  font-size:.96rem; line-height:1.68;
  color:rgba(245,242,234,.68); margin:0;
}
.event-modal__close {
  position:absolute; top:14px; right:14px; z-index:2;
  width:42px; height:42px; border:1px solid rgba(212,175,55,.44);
  background:#0d0d0d; color:var(--gold);
  font-size:1.6rem; line-height:1; cursor:pointer;
  transition:background .18s,color .18s;
}
.event-modal__close:hover { background:var(--gold); color:#0d0d0d; }
body.modal-open { overflow:hidden; }

/* ── 15. GALLERY ──────────────────────────────────────────────── */
.gallery-grid { grid-template-columns:repeat(4,1fr); }
.gallery-card { cursor:pointer; }
.gallery-card:nth-child(5n+1) { grid-column:span 2; }
.gallery-card:nth-child(5n+1) img { height:380px; }

.gallery-grid--balanced {
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px; align-items:stretch;
}
.gallery-grid--balanced .gallery-card,
.gallery-grid--balanced .gallery-card:nth-child(5n+1) { grid-column:auto; }
.gallery-grid--balanced .gallery-card { display:flex; flex-direction:column; }
.gallery-grid--balanced .gallery-card img,
.gallery-grid--balanced .gallery-card:nth-child(5n+1) img {
  width:100%; height:auto; aspect-ratio:4/5; object-fit:cover;
}
.gallery-grid--balanced .gallery-card__body {
  padding:18px 18px 20px; flex:1; display:flex; flex-direction:column;
}
.gallery-grid--balanced .gallery-card h3 { font-size:clamp(1.1rem,1.4vw,1.3rem); }

.lightbox {
  position:fixed; inset:0; z-index:3000;
  background:rgba(0,0,0,.92); display:none;
  align-items:center; justify-content:center; padding:24px;
}
.lightbox.is-open { display:flex; }
.lightbox img { max-height:88svh; max-width:92vw; object-fit:contain; }
.lightbox button {
  position:absolute; top:20px; right:20px;
  background:var(--gold); border:0; color:var(--black);
  padding:10px 16px; font-size:.75rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
}

/* ── 16. FILTER BAR ───────────────────────────────────────────── */
.filter-bar {
  display:flex; gap:8px; flex-wrap:wrap;
  justify-content:center; margin-bottom:30px;
}
.filter-bar button {
  border:1px solid var(--line); background:transparent; color:var(--cream);
  padding:9px 15px; font-family:var(--f-sans); font-size:.66rem;
  font-weight:500; letter-spacing:.15em; text-transform:uppercase;
  transition:.18s ease;
}
.filter-bar button.is-active,.filter-bar button:hover {
  background:var(--gold); color:var(--black); border-color:var(--gold);
}
.filter-bar--quiet { max-width:860px; margin-inline:auto; margin-bottom:30px; }

/* ── 17. FORMS ────────────────────────────────────────────────── */
.reservation-panel {
  display:grid; grid-template-columns:1fr 1.2fr;
  gap:40px; align-items:start;
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(212,175,55,.09),rgba(255,255,255,.02));
  padding:38px;
}
.form-card {
  border:1px solid var(--line); background:rgba(255,255,255,.04);
  padding:28px; box-shadow:0 24px 60px rgba(0,0,0,.22);
}
.section--paper .form-card { background:#fff; border-color:var(--line-dk); }

.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.form-grid .full { grid-column:1/-1; }

label {
  display:grid; gap:7px;
  font-family:var(--f-sans); font-size:.66rem;
  font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold);
}
input,select,textarea {
  width:100%; background:rgba(13,13,13,.3);
  border:0; border-bottom:1px solid rgba(245,242,234,.18);
  color:var(--cream); padding:12px 0;
  font-size:.96rem; letter-spacing:.01em;
  outline:none; border-radius:0;
  transition:border-color .2s ease;
}
input:focus,select:focus,textarea:focus { border-bottom-color:var(--gold); }
.section--paper input,.section--paper select,.section--paper textarea {
  background:transparent; color:var(--ink);
  border-bottom-color:rgba(26,23,20,.18);
}
.section--paper input:focus,
.section--paper select:focus,
.section--paper textarea:focus { border-bottom-color:var(--gold-lo); }
textarea { min-height:118px; resize:vertical; }
select { cursor:pointer; }
select option { background:var(--charcoal); color:var(--cream); }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { filter:invert(1); opacity:.65; cursor:pointer; }
.hp-field { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.consent {
  display:flex !important; align-items:flex-start; gap:10px;
  font-size:.82rem !important; letter-spacing:0 !important;
  text-transform:none !important; font-weight:400 !important; color:inherit;
}
.consent input { width:auto; margin-top:.3em; border-bottom:0; }
.form-note {
  font-size:.8rem; line-height:1.6;
  color:rgba(245,242,234,.48); letter-spacing:.008em;
}
.section--paper .form-note,.section--cream .form-note { color:rgba(26,23,20,.52); }
.event-date-auto input[readonly] {
  color:var(--cream); border-bottom-color:rgba(212,175,55,.36);
  background:rgba(212,175,55,.07); padding:12px;
}

/* ── 18. MEMBERSHIP ───────────────────────────────────────────── */
.member-shell { display:grid; grid-template-columns:.85fr 1.15fr; gap:26px; }
.member-preview ul { margin:18px 0 24px; padding-left:20px; }
.member-preview li {
  font-size:.95rem; line-height:1.68; color:rgba(245,242,234,.68);
  margin-bottom:8px; position:relative; padding-left:18px;
}
.member-preview li::before {
  content:'✦'; position:absolute; left:0; top:.15em;
  color:var(--gold); font-size:.6rem;
}
.member-preview h3 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(1.55rem,2.2vw,1.9rem);
  letter-spacing:.03em; line-height:1.1; margin:20px 0 10px;
}
.dashboard-preview {
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(212,175,55,.08),rgba(255,255,255,.03));
  padding:30px;
}
.dash-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:16px; }
.dash-tile { border:1px solid var(--line); padding:18px; background:rgba(255,255,255,.04); }
.dash-tile strong {
  display:block; font-family:var(--f-sans); font-size:.64rem;
  font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); margin-bottom:6px;
}

/* ── 19. CONTACT ──────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.contact-card { border:1px solid var(--line); padding:28px; background:rgba(255,255,255,.04); }
.contact-card h3 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(1.35rem,1.8vw,1.65rem);
  letter-spacing:.03em; line-height:1.12; margin-bottom:12px;
}
.contact-card a { color:var(--gold); font-size:.9rem; transition:opacity .2s; }
.contact-card a:hover { opacity:.72; }
.contact-card p { font-size:.94rem; line-height:1.72; color:rgba(245,242,234,.7); }
.status-card {
  max-width:760px; border:1px solid var(--line);
  background:rgba(255,255,255,.04); padding:38px;
}
.status-card h2 {
  font-family:var(--f-display); font-weight:400;
  font-size:clamp(1.9rem,3.6vw,3.15rem);
  letter-spacing:.03em; line-height:1.06; margin-bottom:14px;
}
.status-card p { font-size:.96rem; line-height:1.76; color:rgba(245,242,234,.7); }

/* ── 20. TOAST & SOCIAL ───────────────────────────────────────── */
.toast-notice {
  position:fixed; left:50%; bottom:26px; transform:translateX(-50%);
  z-index:2000; background:var(--gold); color:var(--black);
  padding:13px 22px; border-radius:999px; font-size:.82rem;
  box-shadow:0 18px 48px rgba(0,0,0,.34);
  max-width:min(92vw,560px); text-align:center;
}
.footer-social { margin-top:12px; }
.footer-social a { color:var(--gold); }
.social-privacy-note {
  font-size:.72rem; line-height:1.58;
  color:rgba(245,242,234,.44); margin-top:6px;
}
.section--paper .social-privacy-note,
.section--cream .social-privacy-note { color:rgba(26,23,20,.48); }
.contact-card .social-privacy-note { max-width:none; }

/* ── 21. FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background:#080808; border-top:1px solid var(--line); padding:58px 0 26px;
}
.footer-grid {
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:28px;
}
.footer-mark { width:72px; }
.footer-line {
  font-family:var(--f-sans); font-size:.68rem;
  font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); margin:10px 0;
}
.footer-note { margin-top:10px; }
.site-footer h3 {
  font-family:var(--f-sans); font-size:.68rem;
  font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold); margin-bottom:16px;
}
.site-footer p,.site-footer address {
  font-size:.92rem; line-height:1.76;
  color:rgba(245,242,234,.58);
}
.site-footer a:hover { color:var(--gold); }
.footer-bottom {
  display:flex; justify-content:space-between; gap:20px;
  border-top:1px solid rgba(245,242,234,.08);
  padding-top:20px; margin-top:38px;
  font-family:var(--f-sans); font-size:.7rem;
  letter-spacing:.08em; color:rgba(245,242,234,.38);
}

/* ── 22. TABLET ───────────────────────────────────────────────── */
@media (max-width:1020px) {
  .hero      { min-height:660px; }
  .page-hero { min-height:560px; }
  .intro-grid,.split,.reservation-panel,.member-shell,
  .featured-event-card { grid-template-columns:1fr; }
  .split--reverse .split__media { order:0; }
  .featured-event-card__copy { padding:30px; }
  .event-modal { grid-template-columns:1fr; }
  .event-modal > img { min-height:260px; height:260px; }
  .event-modal__content { padding:30px; }
  .event-actions .btn { width:100%; }
  .pillars,.feature-grid,.event-grid,.hire-grid,
  .contact-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-card:nth-child(5n+1) { grid-column:auto; }
  .gallery-card:nth-child(5n+1) img,.gallery-card img { height:300px; }
  .gallery-grid--balanced { grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
  .hire-grid--services { grid-template-columns:repeat(2,1fr); }
  .service-list { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .image-ribbon { grid-template-columns:1fr 1fr; }
  .image-ribbon img,
  .image-ribbon img:nth-child(1),
  .image-ribbon img:nth-child(3) { height:240px; }
  .section--featured-event { padding:28px 0 58px; }
  .nav-cta { margin-left:auto; }
}

/* ── 23. MOBILE ───────────────────────────────────────────────── */
@media (max-width:680px) {
  :root { --nav-h:66px; --pad:58px; }
  body { font-size:15px; line-height:1.68; }
  .container { width:min(100% - 28px,1180px); }
  .brand span { display:none; }
  .brand img { width:44px; }
  .nav-cta { font-size:.6rem; padding:8px 10px; }
  .hero      { min-height:620px; }
  .page-hero { min-height:520px; }
  .hero__logo { width:min(230px,66vw); margin-bottom:18px; }
  .hero h1 {
    font-size:clamp(2.4rem,12vw,3.6rem);
    line-height:.98; letter-spacing:.025em;
  }
  .page-hero h1 {
    font-size:clamp(1.95rem,10vw,3.05rem);
    line-height:1.02; letter-spacing:.02em;
  }
  .hero__lead,.page-hero p:not(.eyebrow) { font-size:.97rem; line-height:1.68; }
  .eyebrow { font-size:.62rem; letter-spacing:.2em; }
  .section-head { margin-bottom:28px; }
  .section-head h2,.split h2,.panel-heading,.menu-category h2 {
    font-size:clamp(1.75rem,8.2vw,2.45rem); line-height:1.06; letter-spacing:.025em;
  }
  .btn-row { gap:10px; }
  .btn { width:100%; min-height:44px; font-size:.63rem; }
  .pillar { padding:24px; }
  .event-card__body,.hire-card__body,.gallery-card__body { padding:18px; }
  .event-card h3,.hire-card h3,.gallery-card h3 { font-size:1.22rem; }
  .event-actions { display:grid; grid-template-columns:1fr; }
  .event-actions .btn { width:100%; }
  .menu-tabs { overflow-x:auto; flex-wrap:nowrap; }
  .menu-item h3 { font-size:1.05rem; }
  .menu-item p  { font-size:.86rem; }
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-grid--balanced { grid-template-columns:1fr; gap:14px; }
  .event-card img,.hire-card img { height:204px; }
  .image-ribbon img,
  .image-ribbon img:nth-child(1),
  .image-ribbon img:nth-child(3) { height:216px; }
  .print-menu-grid,.form-grid,.footer-grid,.dash-grid { grid-template-columns:1fr; }
  .form-grid .full { grid-column:auto; }
  .footer-bottom { flex-direction:column; gap:8px; }
  .service-list,.hire-grid--services { grid-template-columns:1fr; }
  .service-list article { padding:20px; }
  .pillars,.feature-grid { grid-template-columns:1fr; }
  .featured-event-card__copy { padding:24px; }
  .featured-event-card__copy h2 { font-size:clamp(1.75rem,7vw,2.3rem); }
  .section--featured-event { padding:22px 0 52px; }
}

/* ── 24. ACCESSIBILITY ────────────────────────────────────────── */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}
@media print {
  .site-header,.site-footer,.event-modal-layer,
  .lightbox,.menu-tabs,.btn-row { display:none; }
  body { background:white; color:black; font-size:12pt; }
}
