/* =============================================================
   RDHS Group — Design System
   A warm, after-dark hospitality aesthetic.
   Single stylesheet, no framework. Mobile-first.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --ink-900: #0b0b0f;   /* page background */
  --ink-800: #101017;
  --ink-700: #16161f;   /* raised surfaces */
  --ink-600: #1e1e29;
  --line:    #2a2a36;   /* hairline borders */

  --gold-500: #c8a24b;  /* primary accent */
  --gold-400: #d9b869;
  --gold-300: #ecd699;  /* highlight text */
  --gold-glow: rgba(200, 162, 75, 0.28);

  --cream:  #f6f3ec;    /* primary text */
  --muted:  #a7a294;    /* secondary text */
  --faint:  #6f6b60;    /* tertiary text */

  --success: #6fbf8b;
  --danger:  #e6796f;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 18px 44px -18px var(--gold-glow);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--ink-900);
  background-image:
    radial-gradient(1200px 600px at 78% -8%, rgba(200, 162, 75, 0.10), transparent 60%),
    radial-gradient(900px 500px at 8% 8%, rgba(120, 80, 40, 0.10), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-300);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--gold-400); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-500); color: var(--ink-900); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative;
}

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  max-width: 20ch;
}
.section-lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 62ch;
}
.text-center { text-align: center; }
.text-center .section-title,
.text-center .section-lead { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.gold-text {
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 55%, var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: #1a1408;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline-offset: 4px; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--btn-fg);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  color: var(--cream);
  border-color: var(--gold-500);
  background: rgba(200, 162, 75, 0.08);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #1faf54;
  color: #fff;
}
.btn--whatsapp:hover { background: #199a49; color: #fff; transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 15, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 11, 15, 0.9);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--cream); }
.brand-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a[aria-current="page"] { background: rgba(200, 162, 75, 0.12); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { display: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0;
  z-index: 99;
  background: var(--ink-900);
  padding: 1.5rem var(--gutter) 2.5rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a[aria-current="page"] { color: var(--gold-400); }
.mobile-menu .btn { margin-top: 1.5rem; }

@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 12vw, 9rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(200, 162, 75, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 56rem; }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 720px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--ink-800);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--gold-300);
  line-height: 1;
}
.stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; }

/* Marquee ribbon */
.ribbon {
  border-block: 1px solid var(--line);
  background: var(--ink-800);
  overflow: hidden;
  padding-block: 1rem;
}
.ribbon-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--faint);
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.ribbon-track span::after { content: "✦"; color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }
.ribbon:hover .ribbon-track { animation-play-state: paused; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 75, 0.5);
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.35rem; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(200, 162, 75, 0.12);
  border: 1px solid rgba(200, 162, 75, 0.25);
  margin-bottom: 1.1rem;
  color: var(--gold-300);
}
.card-icon svg { width: 26px; height: 26px; }

/* ---------- Venue cards ---------- */
.venue {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.venue-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.venue-visual .venue-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.venue-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
}
.venue-body { padding: 1.5rem clamp(1.4rem, 3vw, 1.9rem) 1.9rem; }
.venue-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.7rem;
}
.venue-body h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 1.2rem;
  font-size: 0.86rem;
  color: var(--muted);
}
.venue-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }

/* Venue visual themes */
.vt-victor { background: radial-gradient(120% 120% at 20% 0%, #3a2a12, #171009); }
.vt-irish  { background: radial-gradient(120% 120% at 80% 0%, #12331f, #0a1a10); }
.vt-adam   { background: radial-gradient(120% 120% at 50% 0%, #3a1420, #180a10); }

/* ---------- Feature split ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; } .split--reverse > :first-child { order: 2; } }

.media-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--ink-700), var(--ink-900));
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame .glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, var(--gold-glow), transparent);
  opacity: 0.6;
}

.check-list { list-style: none; display: grid; gap: 0.85rem; margin: 1.5rem 0; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--cream); }
.check-list svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 162, 75, 0.4);
  background: rgba(200, 162, 75, 0.08);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-300);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.step p { color: var(--muted); margin-bottom: 0; }

/* ---------- FAQ (AEO) ---------- */
.faq { display: grid; gap: 0.85rem; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.35rem;
  transition: border-color 0.25s var(--ease);
}
.faq details[open] { border-color: rgba(200, 162, 75, 0.45); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold-400);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 1.3rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: clamp(var(--radius), 3vw, 28px);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(200,162,75,0.22), transparent 60%),
    linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid rgba(200, 162, 75, 0.35);
}
.cta-band h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-inline: auto; max-width: 18ch; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-cards { display: grid; gap: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.35rem;
}
.contact-item .card-icon { margin-bottom: 0; width: 46px; height: 46px; }
.contact-item h3 { font-size: 1.05rem; font-family: var(--font-body); margin-bottom: 0.15rem; }
.contact-item a, .contact-item p { color: var(--muted); margin: 0; }
.contact-item a:hover { color: var(--gold-300); }

.form {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--cream);
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--faint); margin-top: 0.75rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); max-width: 18ch; }
.page-hero p { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 54ch; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--faint); margin-bottom: 1.25rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb li::after { content: "/"; margin-left: 0.5rem; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); }
.breadcrumb [aria-current="page"] { color: var(--gold-400); }

/* ---------- Events (What's On) ---------- */
.event {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.event:hover { border-color: rgba(200,162,75,0.4); transform: translateY(-3px); }
@media (min-width: 640px) { .event { grid-template-columns: auto 1fr auto; } }
.event-date {
  text-align: center;
  min-width: 80px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(200,162,75,0.1);
  border: 1px solid rgba(200,162,75,0.25);
}
.event-date b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-300); line-height: 1; }
.event-date span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.event-info h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.event-info p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.event-info .event-where { color: var(--gold-400); font-size: 0.82rem; font-weight: 500; }

/* ---------- Values / about ---------- */
.value-list { display: grid; gap: 1rem; }
.value-list li {
  list-style: none;
  padding: 1.3rem 1.5rem;
  border-left: 2px solid var(--gold-500);
  background: var(--ink-800);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.value-list h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.value-list p { color: var(--muted); margin: 0; }

.timeline { display: grid; gap: 1.5rem; position: relative; }
.timeline-item { display: flex; gap: 1.25rem; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-300);
  min-width: 72px;
}
.timeline-item p { color: var(--muted); margin: 0; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #1faf54;
  color: #fff;
  box-shadow: 0 12px 30px -6px rgba(31, 175, 84, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #1faf54;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-800);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand p { color: var(--muted); max-width: 34ch; margin-top: 1rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.85rem;
}
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.social-links a:hover { color: var(--gold-300); border-color: var(--gold-500); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Utilities ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--ink-900);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus { left: 0; color: var(--ink-900); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- PHP version additions ---------- */
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

.venue-visual img { width: 66%; height: 66%; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 6px 18px rgba(0,0,0,.5)); }
.venue-visual { background: radial-gradient(120% 120% at 50% 0%, #22222c, var(--ink-900)); }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.filters button { background: transparent; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font: 600 .86rem var(--font-body); cursor: pointer; transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.filters button:hover { color: var(--cream); border-color: var(--gold-500); }
.filters button[aria-pressed="true"] { background: var(--gold-500); color: #1a1408; border-color: var(--gold-500); }

.post-visual { aspect-ratio: 16 / 9; border-radius: var(--radius-sm); display: grid; place-items: center; font: 600 .78rem var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.post-visual.Events { background: linear-gradient(135deg,#3a2a12,#171009); }
.post-visual.News   { background: linear-gradient(135deg,#12331f,#0a1a10); }
.post-visual.Offers { background: linear-gradient(135deg,#3a1420,#180a10); }
.post-meta { color: var(--faint); font-size: .8rem; letter-spacing: .04em; margin-bottom: .5rem; }

/* ---------- About: narrative, mission/vision, CEO ---------- */
.prose { max-width: 46rem; margin: 2rem auto 0; }
.prose p { margin-bottom: 1.1rem; color: var(--muted); }
.prose p:first-child { color: var(--cream); font-size: 1.05rem; }
.pull-quote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold-300); margin-top: 1.1rem; }
.portrait { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--ink-800); aspect-ratio: 4 / 5; max-width: 13rem; box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-caption { margin-top: 1.1rem; }
.person-caption b { display: block; font-size: 1.2rem; font-family: var(--font-display); color: var(--gold-300); line-height: 1.2; }
.person-caption span { display: block; margin-top: .15rem; color: var(--muted); font-size: .9rem; letter-spacing: .04em; }

/* ---------- What's On: blog links + article page ---------- */
a.post-visual { text-decoration: none; cursor: pointer; transition: transform .3s var(--ease), filter .3s var(--ease); }
a.post-visual:hover { transform: translateY(-2px); filter: brightness(1.08); }
.card.post h3 a { color: inherit; text-decoration: none; }
.card.post h3 a:hover { color: var(--gold-300); }
.article-page { max-width: 50rem; margin-inline: auto; }
.article-page h1 { margin: .6rem 0 1rem; }
.article-page .post-meta .venue-tag { margin-right: .5rem; }
.article-page .prose { margin-top: 1.5rem; }
.article-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.portrait-ph { width:100%; height:100%; display:grid; place-items:center; font-family:var(--font-display); font-size:4rem; color:var(--gold-500); background:radial-gradient(120% 120% at 50% 0%, var(--ink-600), var(--ink-900)); letter-spacing:.08em; }
