/* ============================================================
   The Playhouse Café & Theatre — Main Stylesheet
   style.css
   ============================================================ */


/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Palette */
  --near-black:       #1a1a1a;
  --cream:            #f5f0e8;
  --gold:             #c9a84c;
  --deep-red:         #8b1a2f;
  --off-white:        #faf8f4;
  --wedding-bg:       #2a2420;
  --entertainment-bg: #1f1015;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  /* Timing */
  --t-fast:   0.3s ease;
  --t-medium: 0.4s ease;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--near-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

address { font-style: normal; }

button { cursor: pointer; }

[hidden] { display: none !important; }


/* ============================================================
   UTILITIES
   ============================================================ */

/* Max-width wrapper used by most sections */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Cinzel section headings */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 3rem;
}

/* Small caps eyebrow — e.g. "WEDDINGS & FUNCTIONS" */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem; /* ~11px */
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gold arrow links */
.link-arrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity var(--t-fast);
}
.link-arrow:hover { opacity: 0.7; }

/* "View all events →" */
.view-all-link {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity var(--t-fast);
}
.view-all-link:hover { opacity: 0.7; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

/* Hero — Weddings: gold border, cream text */
.btn--wedding {
  border-color: var(--gold);
  color: var(--cream);
  background: transparent;
}
.btn--wedding:hover {
  background: var(--gold);
  color: var(--near-black);
}

/* Hero — Entertainment: deep red fill */
.btn--entertainment {
  background: var(--deep-red);
  border-color: var(--deep-red);
  color: var(--cream);
}
.btn--entertainment:hover {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--cream);
}

/* Event cards — gold outline */
.btn--outline {
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--gold);
  background: transparent;
  font-size: 0.75rem;
  padding: 0.55rem 1.25rem;
}
.btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}

/* Gold fill — banner CTA and newsletter */
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

/* Small variant */
.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}


/* ============================================================
   NAVIGATION
   Fixed, transparent over hero → solid dark on scroll
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}

/* JS adds this class on scroll */
.site-nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Desktop link list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
}

/* Animated underline on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-fast);
}
.nav-links a:hover::after { width: 100%; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}

/* Hamburger animates to × when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   SECTION 1 — HERO: Split-screen
   ============================================================ */
.hero {
  display: flex;
  height: 100vh;
  min-height: 580px;
  position: relative;
}

/* Each panel */
.hero-panel {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--t-medium);
}

/* Expand/shrink on hover — using modern :has() with JS class fallback */
.hero:has(.hero-weddings:hover) .hero-weddings,
.hero.hover-weddings .hero-weddings          { flex: 65 1 0%; }

.hero:has(.hero-weddings:hover) .hero-entertainment,
.hero.hover-weddings .hero-entertainment     { flex: 35 1 0%; }

.hero:has(.hero-entertainment:hover) .hero-entertainment,
.hero.hover-entertainment .hero-entertainment { flex: 65 1 0%; }

.hero:has(.hero-entertainment:hover) .hero-weddings,
.hero.hover-entertainment .hero-weddings      { flex: 35 1 0%; }

/* Dimming the compressed panel */
.hero.hover-weddings .hero-entertainment .hero-panel-inner,
.hero.hover-entertainment .hero-weddings .hero-panel-inner {
  opacity: 0.45;
  transform: scale(0.96);
}

/* ── Weddings side ── */
.hero-weddings {
  background-color: var(--wedding-bg);
}
/* Warm vignette overlay */
.hero-weddings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, transparent 25%, rgba(8, 4, 2, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Entertainment side ── */
.hero-entertainment {
  background-color: var(--entertainment-bg);
}
/* Deep red-tinted vignette overlay */
.hero-entertainment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 25%, rgba(15, 0, 8, 0.65) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Panel content wrapper */
.hero-panel-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  transition: opacity var(--t-medium), transform var(--t-medium);
}

/* Tiny eyebrow above headline */
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

/* Cormorant Garamond wedding headline */
.hero-headline--wedding {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* Cinzel entertainment headline */
.hero-headline--entertainment {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

/* Light italic subline */
.hero-subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
}

/* Thin gold vertical divider between panels */
.hero-divider {
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.3) 20%,
    rgba(201, 168, 76, 0.3) 80%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  transition: opacity var(--t-medium);
}

/* Fade divider on hover (panels shift and it looks odd) */
.hero:has(.hero-panel:hover) .hero-divider,
.hero.hover-weddings .hero-divider,
.hero.hover-entertainment .hero-divider {
  opacity: 0;
}


/* ============================================================
   SECTION 2 — TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.1rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #3d3530;
  letter-spacing: 0.01em;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Faint vertical separator between trust items */
.trust-divider {
  width: 1px;
  height: 1.75rem;
  background: rgba(26, 26, 26, 0.18);
  flex-shrink: 0;
}


/* ============================================================
   SECTION 3 — UPCOMING EVENTS
   ============================================================ */
.events {
  background: #101010;
  padding: 6rem 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

/* Individual event card */
.event-card {
  background: var(--near-black);
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.event-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.event-date-pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.event-name {
  font-family: var(--font-serif);
  font-size: 1.375rem; /* 22px */
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

.event-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  flex: 1;
  line-height: 1.55;
}

.events-view-all {
  text-align: right;
  padding-top: 0.25rem;
}


/* ============================================================
   SECTION 4 — WEDDING VENUE FEATURE
   ============================================================ */
.wedding-feature {
  background: var(--off-white);
  color: var(--near-black);
}

.wedding-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

/* Left: image placeholder block */
.wedding-img-placeholder {
  background: var(--wedding-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.wedding-img-placeholder span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.6;
}

/* Right: content */
.wedding-content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.wedding-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.2;
}

.wedding-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3d3530;
}

/* Feature points with gold dot markers */
.wedding-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.wedding-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #3d3530;
}

/* Gold dot marker */
.wedding-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.wedding-content .link-arrow {
  margin-top: 0.5rem;
}


/* ============================================================
   SECTION 5 — FREE VENUE HIRE BANNER
   ============================================================ */
.hire-banner {
  background: var(--near-black);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial gold glow in centre */
.hire-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hire-banner-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Heading flanked by decorative rule lines */
.hire-heading-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
}

.hire-rule {
  height: 1px;
  flex: 1;
  max-width: 110px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55));
}

.hire-heading-wrap .hire-rule:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.55));
}

.hire-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.875rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hire-subheading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 0.02em;
}

.hire-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  max-width: 560px;
}


/* ============================================================
   SECTION 6 — PHOTO GALLERY TEASER
   Asymmetric CSS grid — 3 columns, 3 rows, specific placement
   ============================================================ */
.gallery {
  background: #0f0f0f;
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 200px 220px;
  gap: 10px;
}

/* Asymmetric placement — each item has its own background tone */
.gallery-item--1 { grid-column: 1;     grid-row: 1 / 3; background: #1f1015; } /* Stage — tall */
.gallery-item--2 { grid-column: 2;     grid-row: 1;     background: #1a2018; } /* Garden */
.gallery-item--3 { grid-column: 3;     grid-row: 1;     background: #2a2420; } /* Reception room */
.gallery-item--4 { grid-column: 2;     grid-row: 2;     background: #181520; } /* Live music */
.gallery-item--5 { grid-column: 1 / 3; grid-row: 3;     background: #201810; } /* Dining — wide */
.gallery-item--6 { grid-column: 3;     grid-row: 2 / 4; background: #141820; } /* Outdoor bar — tall */

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

/* Gold border overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
  outline: none;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  border-color: var(--gold);
}

.gallery-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  pointer-events: none;
  transition: color var(--t-fast);
}

.gallery-item:hover .gallery-label,
.gallery-item:focus-visible .gallery-label {
  color: rgba(245, 240, 232, 0.8);
}


/* ============================================================
   SECTION 7 — LOCATION
   ============================================================ */
.location {
  background: var(--off-white);
  color: var(--near-black);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

/* Left: styled map placeholder */
.map-placeholder {
  background: #2a2420;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 3rem;
  position: relative;
}

/* Subtle grid lines to suggest a map */
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.map-pin-icon { position: relative; z-index: 1; }

.map-address {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  text-align: center;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

/* Right: contact info */
.location-info {
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.location-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.1;
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #3d3530;
  line-height: 1.65;
}

.location-address a {
  color: var(--deep-red);
  transition: opacity var(--t-fast);
}
.location-address a:hover { opacity: 0.7; }

.location-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  color: #999;
  line-height: 1.5;
  margin-top: 0.25rem;
}


/* ============================================================
   SECTION 8 — FOOTER
   ============================================================ */
.site-footer {
  background: var(--near-black);
  padding-top: 5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.25fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.13em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
  transition: color var(--t-fast);
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--gold); }

/* Column heading (Cinzel, gold, small caps) */
.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: rgba(245, 240, 232, 0.55);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }

.footer-newsletter-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  min-width: 150px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t-fast);
}

.newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.newsletter-input:focus {
  border-color: rgba(201, 168, 76, 0.55);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.04em;
}


/* ============================================================
   RESPONSIVE — 1100px (medium screens / small laptops)
   ============================================================ */
@media (max-width: 1100px) {
  .hero-panel { padding: 6rem 2.5rem 4rem; }

  .wedding-content { padding: 4rem 3rem; }
  .location-info { padding: 3.5rem 3rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  /* Newsletter spans full width on medium screens */
  .footer-col:last-child { grid-column: 1 / -1; }
  .newsletter-form { max-width: 420px; }
}


/* ============================================================
   RESPONSIVE — 768px (tablet and mobile)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Navigation ── */
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(22, 22, 22, 0.98);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(8px);
  }

  .nav-links.open { display: flex; }

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

  .nav-links a {
    display: block;
    padding: 0.875rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links a::after { display: none; }

  /* ── Hero: stack vertically ── */
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-panel {
    flex: none !important; /* override all hover states */
    min-height: 50vh;
    padding: 5rem 2rem 3rem;
  }

  .hero-panel-inner {
    opacity: 1 !important; /* override dimming on mobile */
    transform: none !important;
  }

  .hero-divider { display: none; }

  /* ── Trust bar: wrap to 2 columns on small screens ── */
  .trust-divider { display: none; }
  .trust-item { padding: 0.3rem 1rem; flex-basis: 45%; justify-content: center; }

  /* ── Events: horizontal scroll ── */
  .events .section-inner { padding-right: 0; overflow: visible; }

  .events-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 2rem 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.4) transparent;
    /* Let grid extend beyond the container */
    margin: 0 -0rem;
  }

  .event-card {
    min-width: 270px;
    flex-shrink: 0;
  }

  .events-view-all { padding-right: 2rem; }

  /* ── Wedding feature: single column ── */
  .wedding-feature-grid { grid-template-columns: 1fr; }
  .wedding-img-placeholder { min-height: 280px; }
  .wedding-content { padding: 3rem 2rem; }

  /* ── Gallery: 2-column grid, no custom placement ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .gallery-item--1,
  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5,
  .gallery-item--6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  /* ── Location: stack ── */
  .location-grid { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 260px; padding: 3rem 2rem; }
  .location-info { padding: 3rem 2rem; }
  .location-heading { font-size: 2rem; }

  /* ── Footer: single column ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-col:last-child { grid-column: auto; }

  /* ── Hire banner: tighten up ── */
  .hire-heading { font-size: 1.625rem; letter-spacing: 0.1em; }
  .hire-rule { max-width: 50px; }

  /* ── Section padding ── */
  .events, .gallery, .hire-banner { padding: 4.5rem 0; }
}


/* ============================================================
   MENUS PAGE — m-* namespace
   ============================================================ */


/* ── Hero ─────────────────────────────────────────────────── */
.m-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  background-color: var(--wedding-bg); /* #2a2420 warm dark */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Warm vignette */
.m-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(8, 4, 2, 0.75) 0%, transparent 50%);
  pointer-events: none;
}

.m-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 680px;
}

.m-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.875rem;
  letter-spacing: 0.01em;
}

.m-hero-subline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.04em;
}

/* Fade into cream intro section */
.m-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  pointer-events: none;
}


/* ── Intro ────────────────────────────────────────────────── */
.m-intro {
  background: var(--off-white);
  padding: 4rem 2rem 4.5rem;
}

.m-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.m-intro-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.9;
}

.m-intro-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: #888;
  font-style: italic;
}

.m-intro-note a {
  color: var(--deep-red);
  transition: opacity var(--t-fast);
}
.m-intro-note a:hover { opacity: 0.7; }


/* ── Tab navigation ───────────────────────────────────────── */
.m-tabs-section {
  background: var(--off-white);
  padding-bottom: 5rem;
}

.m-tab-nav-wrap {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  background: #fff;
  position: sticky;
  top: 70px; /* below fixed nav */
  z-index: 90;
}

.m-tab-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.m-tab-nav::-webkit-scrollbar { display: none; }

.m-tab-btn {
  padding: 1.1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.55);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.m-tab-btn:hover {
  color: var(--near-black);
  border-bottom-color: rgba(201, 168, 76, 0.35);
}

.m-tab-btn--active {
  color: var(--near-black);
  border-bottom-color: var(--gold);
  font-weight: 500;
}


/* ── Tab panels wrapper ───────────────────────────────────── */
.m-tab-panels {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}

.m-tab-panel { /* shown by default (first) or via JS */ }

/* Common panel inner */
.m-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.m-panel-inner--narrow {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.m-panel-intro {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4a4540;
  font-style: italic;
  text-align: center;
}

/* Info note at panel bottom */
.m-panel-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: #888;
  padding: 1rem 1.25rem;
  background: rgba(26, 26, 26, 0.03);
  border-left: 2px solid rgba(201, 168, 76, 0.35);
  line-height: 1.65;
}

.m-panel-note svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }


/* ── Dietary badges ───────────────────────────────────────── */
.m-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.3rem;
  line-height: 1.5;
}

.m-badge--v  { background: rgba(80, 140, 80, 0.1);  color: #3a7a3a; border: 1px solid rgba(80, 140, 80, 0.3); }
.m-badge--ve { background: rgba(60, 120, 60, 0.08); color: #2a6a2a; border: 1px solid rgba(60, 120, 60, 0.25); }
.m-badge--gf { background: rgba(180, 140, 60, 0.1); color: #806020; border: 1px solid rgba(180, 140, 60, 0.3); }


/* ── Canapés grid ─────────────────────────────────────────── */
.m-canapes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: #fff;
}

.m-canape-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #3a3530;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  transition: background var(--t-fast);
}

.m-canape-item:hover { background: rgba(201, 168, 76, 0.03); }

/* Remove bottom border on last two items */
.m-canape-item:nth-last-child(-n+2) { border-bottom: none; }

.m-dish-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}


/* ── Shared Platters ──────────────────────────────────────── */
.m-platters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.m-platter-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: box-shadow var(--t-fast);
}

/* Warm top accent */
.m-platter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.3));
}

.m-platter-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.m-platter-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.m-platter-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.2;
}

.m-platter-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: #5a5550;
  line-height: 1.75;
  flex: 1;
}

.m-platter-serves {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ── Set Dinner ───────────────────────────────────────────── */
.m-dinner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.m-course-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  overflow: hidden;
}

.m-course-label {
  background: var(--wedding-bg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.m-course-number {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
}

.m-course-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.m-course-options {
  list-style: none;
  padding: 0;
}

.m-course-option {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.m-option-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.3;
}

.m-option-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: #6a6560;
  line-height: 1.6;
}

/* "or" divider between options */
.m-course-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  color: rgba(26, 26, 26, 0.25);
}

.m-course-divider::before,
.m-course-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 26, 26, 0.1);
}

.m-course-divider span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(26, 26, 26, 0.35);
  flex-shrink: 0;
}


/* ── Desserts list ────────────────────────────────────────── */
.m-desserts-list {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  list-style: none;
}

.m-dessert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  transition: background var(--t-fast);
}

.m-dessert-item:last-child { border-bottom: none; }
.m-dessert-item:hover { background: rgba(201, 168, 76, 0.02); }

.m-dessert-main { flex: 1; }

.m-dessert-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.m-dessert-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: #6a6560;
  line-height: 1.5;
}


/* ── Drinks ───────────────────────────────────────────────── */
.m-drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.m-drinks-category {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m-drinks-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.m-drinks-heading svg { color: var(--gold); flex-shrink: 0; }

.m-drinks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.m-drinks-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

/* "Red" / "White" / "Sparkling" type label */
.m-drinks-type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 56px;
}

/* BYO policy box */
.m-byo-note {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.m-byo-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a5a1a;
}

.m-byo-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: #5a4a30;
  line-height: 1.7;
}


/* ── Dietary note ─────────────────────────────────────────── */
.m-dietary {
  background: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.m-dietary-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.m-dietary-icon { margin-bottom: 0.25rem; }

.m-dietary-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.07em;
}

.m-dietary-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.85;
}

.m-dietary-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Larger badge variant for the dietary legend */
.m-badge-large {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}


/* ── Price overview strip ── */
.m-price-strip {
  background: var(--near-black);
  padding: 3rem 2rem;
}
.m-price-strip-inner {
  max-width: 820px;
  margin: 0 auto;
}
.m-price-strip-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}
.m-price-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.2);
}
.m-price-col {
  background: var(--near-black);
  padding: 1.75rem 1.5rem;
}
.m-price-col-tier {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.m-price-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,230,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.m-price-row span { color: var(--gold); font-weight: 400; }

/* ── Tier grid (3 cols: Bronze / Silver / Gold) ── */
.m-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.m-tier-card {
  border: 1px solid rgba(10,9,8,0.12);
  padding: 1.5rem;
  background: #fff;
}
.m-tier-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 9px;
  margin-bottom: 0.6rem;
}
.m-tier-badge--bronze { background: #c47f3a; color: #fff; }
.m-tier-badge--silver { background: #8a8a8a; color: #fff; }
.m-tier-badge--gold   { background: var(--gold); color: var(--near-black); }
.m-tier-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 300;
  color: var(--near-black);
  line-height: 1;
}
.m-tier-pp {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1.25rem;
  display: block;
}
.m-tier-style-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.4rem;
  display: block;
}
.m-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.25rem;
}
.m-tier-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: #444;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(10,9,8,0.06);
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  line-height: 1.4;
}
.m-tier-list li::before { content: '\2013'; color: var(--gold); flex-shrink: 0; }
.m-tier-divider { border: none; border-top: 1px solid rgba(10,9,8,0.1); margin: 0.75rem 0; }

/* Grazing table add-on */
.m-addon-card {
  border: 2px solid var(--gold);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,0.04);
}
.m-addon-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--near-black);
  margin-bottom: 0.25rem;
}
.m-addon-price {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.m-addon-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: #555;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.m-addon-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.m-addon-col-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
  display: block;
}

/* Service styles for mains */
.m-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.m-service-card {
  background: var(--near-black);
  color: var(--cream);
  padding: 1.25rem 1.25rem 1.5rem;
}
.m-service-name {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.m-service-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,230,0.6);
  line-height: 1.65;
}
.m-service-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: italic;
  color: #888;
  margin-bottom: 2rem;
}

/* Rolling Nibbles */
.m-rolling-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.m-rolling-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--near-black);
  margin-bottom: 0.75rem;
}
.m-rolling-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}
.m-rolling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.m-rolling-card {
  border: 1px solid rgba(10,9,8,0.12);
  padding: 1.5rem;
}
.m-rolling-price-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--near-black);
  color: var(--gold);
  padding: 3px 10px;
  margin-bottom: 1.25rem;
}
.m-rolling-section-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin: 1rem 0 0.4rem;
}
.m-rolling-addon {
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: #555;
  text-align: center;
}

/* Chef credit */
.m-chef-credit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(10,9,8,0.1);
  padding-top: 1.5rem;
}

/* Public events notice */
.m-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f5f0e8;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.m-notice-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.m-notice p { margin: 0; }
.m-notice a { color: var(--near-black); text-decoration: underline; }
.m-notice strong { color: var(--near-black); }

/* Intro heading */
.m-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--near-black);
  margin: 0 0 0.75rem;
}

/* Intro quote */
.m-intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--near-black);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .m-tier-grid { grid-template-columns: 1fr; }
  .m-addon-cols { grid-template-columns: 1fr; }
  .m-service-grid { grid-template-columns: 1fr; }
  .m-rolling-grid { grid-template-columns: 1fr; }
  .m-price-cols { grid-template-columns: 1fr; gap: 1px; }
}
@media (max-width: 600px) {
  .m-tier-grid { grid-template-columns: 1fr; }
}


/* ── CTA banner ───────────────────────────────────────────── */
.m-cta-banner {
  background: var(--near-black);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.m-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.m-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.m-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
}


/* ============================================================
   MENUS PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .m-platters-grid  { grid-template-columns: repeat(2, 1fr); }
  .m-dinner-grid    { grid-template-columns: repeat(2, 1fr); }
  .m-drinks-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero */
  .m-hero { height: 40vh; min-height: 280px; }
  .m-hero-headline { font-size: 2.25rem; }

  /* Tabs: allow horizontal scroll */
  .m-tab-nav-wrap { top: 70px; }
  .m-tab-nav { padding: 0 1rem; }
  .m-tab-btn { padding: 1rem 1.1rem; font-size: 0.8125rem; }

  /* Canapés: single column */
  .m-canapes-grid { grid-template-columns: 1fr; }
  .m-canape-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(26,26,26,0.07); }
  .m-canape-item:last-child { border-bottom: none; }

  /* Platters: single column */
  .m-platters-grid { grid-template-columns: 1fr; }

  /* Dinner: single column */
  .m-dinner-grid { grid-template-columns: 1fr; }

  /* Drinks: single column */
  .m-drinks-grid { grid-template-columns: 1fr; }

  /* Dietary badges */
  .m-dietary-badges { gap: 0.5rem; }

  /* CTA */
  .m-cta-banner { padding: 4.5rem 2rem; }
}


/* ============================================================
   NAV ACTIVE STATE
   Persistent gold underline for the current page link
   ============================================================ */
.nav-link--active {
  color: var(--gold) !important;
}
.nav-link--active::after {
  width: 100% !important;
}


/* ============================================================
   WEDDINGS PAGE — w-* namespace
   All styles below are specific to weddings.html
   ============================================================ */


/* ── Hero ─────────────────────────────────────────────────── */
.w-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background-color: var(--wedding-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Atmospheric layered overlays */
.w-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(8, 4, 2, 0.7) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle warm grain texture via SVG noise */
.w-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.w-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  padding: 0 2rem;
}

.w-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.w-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.w-hero-subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.03em;
}

/* Gradient fade at bottom of hero into cream intro section */
.w-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  pointer-events: none;
}


/* ── Introduction ─────────────────────────────────────────── */
.w-intro {
  background: var(--off-white);
  padding: 5rem 2rem 5.5rem;
}

.w-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

/* Ornamental divider: line ✦ line */
.w-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

.w-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5));
}

.w-ornament > svg {
  flex-shrink: 0;
}

/* Reverse the gradient on the right line */
.w-ornament .w-ornament-line:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.5));
}

.w-intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 1.75rem); /* ~28px at desktop */
  font-weight: 400;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.w-intro-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.9;
}


/* ── What's Included — Feature Grid ──────────────────────── */
.w-features {
  background: #111111;
  padding: 6rem 0;
}

.w-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; /* hairline gap creates a grid-line effect */
  background: rgba(201, 168, 76, 0.1); /* gold tint shows as grid lines */
  border: 1.5px solid rgba(201, 168, 76, 0.1);
}

.w-feature-card {
  background: var(--near-black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--t-fast);
}

.w-feature-card:hover {
  background: #202020;
}

/* Highlighted card (Free Venue Hire) — subtle gold border top */
.w-feature-card--highlight {
  position: relative;
}
.w-feature-card--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
}

.w-feature-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.w-feature-card:hover .w-feature-icon {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.06);
}

.w-feature-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.w-feature-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
}


/* ── Packages / Enquiry Prompt ────────────────────────────── */
.w-packages {
  background: var(--off-white);
  padding: 6rem 2rem;
  text-align: center;
}

.w-packages-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.w-packages-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.06em;
}

.w-packages-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.85;
  max-width: 520px;
}

.w-packages-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Dark outline button — for use on cream backgrounds */
.btn--outline-dark {
  border: 1.5px solid rgba(26, 26, 26, 0.35);
  color: var(--near-black);
  background: transparent;
  font-size: 0.8125rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn--outline-dark:hover {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--cream);
}


/* ── Photo Gallery Strip ──────────────────────────────────── */
.w-gallery {
  background: #0f0f0f;
  padding: 6rem 0;
  overflow: hidden;
}

.w-gallery-heading {
  margin-bottom: 2.5rem;
}

/* Horizontally scrollable flex strip */
.w-gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 2rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.35) transparent;
  /* Fade edges to hint there's more to scroll */
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

/* Each gallery block in the strip */
.w-gallery-block {
  flex: 0 0 300px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

/* Gold border overlay — reuses .gallery-item::after pattern */
.w-gallery-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
  pointer-events: none;
  z-index: 1;
}

.w-gallery-block:hover,
.w-gallery-block:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
  outline: none;
}

.w-gallery-block:hover::after,
.w-gallery-block:focus-visible::after {
  border-color: var(--gold);
}

.w-gallery-block:hover .gallery-label,
.w-gallery-block:focus-visible .gallery-label {
  color: rgba(245, 240, 232, 0.8);
}

/* Individual block background tones */
.w-gallery-block--1 { background: #2a2420; } /* Ceremony — warm dark */
.w-gallery-block--2 { background: #1f1015; } /* Reception — deep plum */
.w-gallery-block--3 { background: #1a2018; } /* Garden — deep green */
.w-gallery-block--4 { background: #201810; } /* Dining — warm brown */
.w-gallery-block--5 { background: #18151f; } /* Celebration — deep violet */
.w-gallery-block--6 { background: #1a1a20; } /* Guests — dark blue-grey */


/* ── Testimonials ─────────────────────────────────────────── */
.w-testimonials {
  background: var(--off-white);
  padding: 6rem 0;
}

.w-testimonials-heading {
  color: var(--near-black);
}

.w-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.w-testimonial {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  /* Opening quotation mark as decorative element */
}

.w-testimonial::before {
  content: '\201C'; /* " */
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.w-testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: italic;
  color: #3a3530;
  line-height: 1.75;
  padding-top: 1.5rem; /* clear the decorative quote mark */
}

.w-testimonial-attribution {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 1.25rem;
}

.w-testimonial-names {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ── Capacity & Details Table ─────────────────────────────── */
.w-capacity {
  background: var(--cream);
  padding: 6rem 2rem;
}

.w-capacity-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.w-capacity-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.07em;
}

.w-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.w-table tbody tr {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.w-table tbody tr:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.w-table th,
.w-table td {
  padding: 1rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.w-table th[scope="row"] {
  font-weight: 500;
  color: var(--near-black);
  width: 50%;
}

.w-table td {
  font-weight: 300;
  color: #4a4540;
}

/* Highlighted row — Free venue hire */
.w-table-highlight th,
.w-table-highlight td {
  color: #7a5a1a;
  font-weight: 500;
}

.w-table-highlight td {
  color: var(--gold);
}

.w-capacity-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: #888;
  font-style: italic;
}

.w-capacity-note a {
  color: var(--deep-red);
  transition: opacity var(--t-fast);
}
.w-capacity-note a:hover { opacity: 0.7; }


/* ── Final CTA Banner ─────────────────────────────────────── */
.w-cta-banner {
  background: var(--near-black);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.w-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.w-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.w-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
}


/* ============================================================
   WEDDINGS PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .w-features-grid { grid-template-columns: repeat(2, 1fr); }
  .w-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  /* 3rd testimonial spans full width at medium breakpoint */
  .w-testimonial:last-child { grid-column: 1 / -1; max-width: 560px; justify-self: center; }
}

@media (max-width: 768px) {
  /* Hero */
  .w-hero { height: 55vh; min-height: 360px; }
  .w-hero-headline { font-size: 2.25rem; }

  /* Intro */
  .w-intro { padding: 4rem 2rem; }
  .w-intro-quote { font-size: 1.25rem; }

  /* Features: single column */
  .w-features-grid { grid-template-columns: 1fr; }
  .w-features { padding: 4.5rem 0; }

  /* Packages */
  .w-packages { padding: 4.5rem 2rem; }
  .w-packages-ctas { flex-direction: column; align-items: center; }
  .w-packages-ctas .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Gallery strip — already scrollable, just tighten heights */
  .w-gallery { padding: 4.5rem 0; }
  .w-gallery-block { flex: 0 0 240px; height: 200px; }

  /* Testimonials: single column */
  .w-testimonials-grid { grid-template-columns: 1fr; }
  .w-testimonial:last-child { grid-column: auto; max-width: none; justify-self: auto; }
  .w-testimonials { padding: 4.5rem 0; }

  /* Capacity */
  .w-capacity { padding: 4.5rem 2rem; }

  /* CTA banner */
  .w-cta-banner { padding: 4.5rem 2rem; }
  .w-cta-heading { font-size: 1.5rem; letter-spacing: 0.06em; }
}


/* ============================================================
   WHAT'S ON PAGE — e-* namespace
   All styles below are specific to whats-on.html
   ============================================================ */


/* ── Deep-red button (Book tickets) ──────────────────────── */
.btn--red {
  background: var(--deep-red);
  border-color: var(--deep-red);
  color: var(--cream);
}
.btn--red:hover {
  background: #a3243a;
  border-color: #a3243a;
}


/* ── Hero ─────────────────────────────────────────────────── */
.e-hero {
  height: 50vh;
  min-height: 360px;
  background-color: var(--entertainment-bg); /* #1f1015 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Layered radial glows */
.e-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(139, 26, 47, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(5, 0, 3, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle scanline texture */
.e-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  opacity: 0.5;
}

.e-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 760px;
}

.e-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.e-hero-subline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.0625rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}


/* ── Filter bar — sticky just below the fixed nav ────────── */
.e-filter-bar {
  position: sticky;
  top: 70px; /* matches nav height */
  z-index: 99;
  background: rgba(18, 8, 13, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 0.875rem 2rem;
}

.e-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.e-filter-pill {
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(245, 240, 232, 0.25);
  background: transparent;
  color: rgba(245, 240, 232, 0.7);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.e-filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.e-filter-pill--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
  font-weight: 500;
}

.e-filter-pill--active:hover {
  background: #d4b050;
  border-color: #d4b050;
  color: var(--near-black);
}


/* ── Events section & grid ────────────────────────────────── */
.e-events-section {
  background: #111111;
  padding: 5rem 0 6rem;
}

.e-no-results {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  font-style: italic;
  text-align: center;
  padding: 3rem 0;
}

.e-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── Event card ───────────────────────────────────────────── */
.e-card {
  background: var(--near-black);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.e-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

/* Gold pulse animation when scrolled-to from calendar */
@keyframes e-flash {
  0%   { box-shadow: 0 0 0 0   rgba(201, 168, 76, 0.55); border-color: rgba(201, 168, 76, 0.7); }
  60%  { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);   border-color: rgba(201, 168, 76, 0.4); }
  100% { box-shadow: 0 0 0 0   rgba(201, 168, 76, 0);    border-color: rgba(201, 168, 76, 0.12); }
}

.e-card--flash {
  animation: e-flash 1.1s ease forwards;
}

.e-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Reuse global date pill style, scoped here */
.e-date-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  flex-shrink: 0;
}

/* Category tag — colour-coded by data-cat */
.e-category-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border: 1px solid;
  border-radius: 2px;
}

.e-category-tag[data-cat="music"]         { color: var(--gold);                border-color: rgba(201, 168, 76, 0.35); }
.e-category-tag[data-cat="comedy"]        { color: rgba(245, 240, 232, 0.75);  border-color: rgba(245, 240, 232, 0.2); }
.e-category-tag[data-cat="theatre"]       { color: #d4607a;                    border-color: rgba(139, 26, 47, 0.45); }
.e-category-tag[data-cat="special-events"]{ color: #90c4d0;                    border-color: rgba(144, 196, 208, 0.3); }

.e-card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}

.e-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  flex: 1;
}

.e-card-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.03em;
}

.e-card-time svg { flex-shrink: 0; opacity: 0.7; }

.e-card-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.e-more-info {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.03em;
  transition: color var(--t-fast);
}
.e-more-info:hover { color: var(--gold); }


/* ── Calendar section ─────────────────────────────────────── */
.e-calendar-section {
  background: #0d0d0d;
  padding: 6rem 0;
}

.e-calendar-heading {
  margin-bottom: 2rem;
}

.e-cal-widget {
  max-width: 580px;
  margin: 0 auto;
  background: var(--near-black);
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

.e-cal-loading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  padding: 3rem;
}

/* Calendar header: prev [Month Year] next */
.e-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.e-cal-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.e-cal-nav-btn {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.e-cal-nav-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.45);
}

/* 7-column grid for the calendar days */
.e-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.e-cal-weekday {
  text-align: center;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.e-cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
}

/* Remove right border on last column */
.e-cal-cell:nth-child(7n) { border-right: none; }

.e-cal-empty { background: transparent; }

/* Days with events — gold highlight */
.e-cal-cell--event {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-weight: 500;
  cursor: pointer;
}

.e-cal-cell--event:hover,
.e-cal-cell--event:focus-visible {
  background: var(--gold);
  color: var(--near-black);
  outline: none;
}

/* Today marker — subtle border */
.e-cal-cell--today {
  box-shadow: inset 0 0 0 1.5px rgba(201, 168, 76, 0.4);
  color: var(--cream);
}

/* Calendar legend below the grid */
.e-cal-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.04em;
}

.e-cal-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid var(--gold);
}


/* ── Newsletter (mid-page) ────────────────────────────────── */
.e-newsletter {
  background: var(--off-white);
  padding: 5.5rem 2rem;
}

.e-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.e-newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.08em;
}

.e-newsletter-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.8;
}

/* Override newsletter-input for cream bg context */
.e-newsletter-input {
  background: #fff;
  border-color: rgba(26, 26, 26, 0.2);
  color: var(--near-black);
}

.e-newsletter-input::placeholder { color: rgba(26, 26, 26, 0.35); }
.e-newsletter-input:focus        { border-color: var(--gold); }

.e-newsletter-form {
  width: 100%;
  max-width: 420px;
}


/* ── Final CTA banner ─────────────────────────────────────── */
.e-cta-banner {
  background: var(--near-black);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.e-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 26, 47, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.e-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.e-cta-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.e-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.e-cta-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}


/* ============================================================
   WHAT'S ON PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .e-events-grid { grid-template-columns: repeat(2, 1fr); } /* stays 2-col */
}

@media (max-width: 768px) {
  /* Hero */
  .e-hero { height: 45vh; min-height: 300px; }
  .e-hero-headline { font-size: 3rem; letter-spacing: 0.1em; }

  /* Filter bar — allow horizontal scroll on narrow screens */
  .e-filter-bar { padding: 0.75rem 1.25rem; overflow-x: auto; }
  .e-filter-inner { flex-wrap: nowrap; }

  /* Events: single column */
  .e-events-section { padding: 4rem 0; }
  .e-events-grid { grid-template-columns: 1fr; }

  /* Calendar: full width on mobile */
  .e-cal-widget { max-width: 100%; }
  .e-calendar-section { padding: 4.5rem 0; }

  /* Newsletter */
  .e-newsletter { padding: 4rem 2rem; }
  .e-newsletter-form { flex-direction: column; }
  .e-newsletter-form .btn { width: 100%; text-align: center; }

  /* CTA banner */
  .e-cta-banner { padding: 4.5rem 2rem; }
  .e-cta-links { flex-direction: column; align-items: center; }
  .e-cta-links .btn { width: 100%; max-width: 280px; text-align: center; }
}


/* ============================================================
   OUR STORY PAGE — os-* namespace
   ============================================================ */

/* ── Hero ── */
.os-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.os-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.15) 0%, rgba(10,9,8,0.55) 100%);
  pointer-events: none;
}

.os-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  max-width: 720px;
}

.os-hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.os-hero-subline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(245,240,230,0.75);
  letter-spacing: 0.04em;
  margin: 0;
}


/* ── Story — pull quote + 2-col editorial ── */
.os-story {
  padding: 7rem 0 6rem;
  background: var(--cream);
}

.os-pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--near-black);
  line-height: 1.5;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
  padding: 0;
  border: none;
}

.os-story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.os-story-col p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--near-black);
  margin: 0;
}


/* ── Recognition ── */
.os-recognition {
  padding: 6rem 0 7rem;
  background: #f5f0e6;
  text-align: center;
}

.os-recognition-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: 0.18em;
  color: var(--near-black);
  text-transform: uppercase;
  margin: 0 0 3rem;
}

.os-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.os-award-card {
  border: 1px solid rgba(201,168,76,0.45);
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.os-award-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}

.os-award-icon {
  margin-bottom: 0.25rem;
}

.os-award-body {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0;
  text-align: center;
}

.os-award-year {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0;
}


/* ── Stats ── */
.os-stats {
  padding: 6rem 0;
  background: var(--near-black);
}

.os-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.os-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.18);
}

.os-stat-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}

.os-stat-plus {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 1;
}

.os-stat-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.6);
}


/* ── Values ── */
.os-values {
  padding: 7rem 0;
  background: var(--cream);
}

.os-values-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.os-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.os-value-card {
  background: #fff;
  border: 1px solid rgba(10,9,8,0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.os-value-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 24px rgba(10,9,8,0.07);
}

.os-value-icon {
  line-height: 1;
}

.os-value-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0;
}

.os-value-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--near-black);
  margin: 0;
}


/* ── Team ── */
.os-team {
  padding: 7rem 0;
  background: #f5f0e6;
  text-align: center;
}

.os-team-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.os-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.os-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.os-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(10,9,8,0.1);
  border: 1px dashed rgba(10,9,8,0.2);
  flex-shrink: 0;
}

.os-team-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0;
}

.os-team-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--near-black);
  margin: 0;
}

.os-team-note {
  margin: 3rem auto 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(10,9,8,0.35);
  font-style: italic;
  letter-spacing: 0.04em;
}


/* ── Final CTA ── */
.os-cta {
  padding: 7rem 2rem;
  background: var(--near-black);
  text-align: center;
}

.os-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.os-cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.04em;
}

.os-cta-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  line-height: 1.35;
  margin: 0;
}

.os-cta .hire-body {
  color: rgba(245,240,230,0.65);
  margin: 0;
}

.os-cta-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Outline-light button variant — white border/text on dark bg */
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,230,0.4);
  letter-spacing: 0.12em;
}

.btn--outline-light:hover {
  background: rgba(245,240,230,0.08);
  border-color: var(--cream);
  color: var(--cream);
}


/* ============================================================
   OUR STORY PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .os-stats-grid { gap: 1.25rem; }
  .os-values-grid { gap: 1.25rem; }
}

@media (max-width: 768px) {
  /* Hero */
  .os-hero { height: 45vh; min-height: 280px; }
  .os-hero-headline { font-size: 3rem; }

  /* Story */
  .os-story { padding: 5rem 0 4rem; }
  .os-pull-quote { font-size: 1.3rem; margin-bottom: 3rem; }
  .os-story-cols { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Recognition */
  .os-recognition { padding: 5rem 0; }
  .os-awards-grid { grid-template-columns: 1fr; max-width: 360px; }

  /* Stats */
  .os-stats { padding: 4.5rem 0; }
  .os-stats-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; gap: 1rem; }

  /* Values */
  .os-values { padding: 5rem 0; }
  .os-values-grid { grid-template-columns: 1fr; }

  /* Team */
  .os-team { padding: 5rem 0; }
  .os-team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 100%; }

  /* CTA */
  .os-cta { padding: 5rem 2rem; }
  .os-cta-links { flex-direction: column; align-items: center; }
  .os-cta-links .btn { width: 100%; max-width: 280px; text-align: center; }
}


/* ============================================================
   CONTACT PAGE — ct-* namespace
   ============================================================ */

/* ── Hero ── */
.ct-hero {
  position: relative;
  height: 40vh;
  min-height: 260px;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.1) 0%, rgba(10,9,8,0.5) 100%);
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.ct-hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.ct-hero-subline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: rgba(245,240,230,0.7);
  letter-spacing: 0.06em;
  margin: 0;
}


/* ── Contact split ── */
.ct-split {
  padding: 6rem 0 7rem;
  background: var(--cream);
}

.ct-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ct-col-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0 0 2rem;
}


/* ── Form ── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ct-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
}

.ct-required {
  color: var(--gold);
}

.ct-optional {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(10,9,8,0.4);
}

.ct-input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--near-black);
  background: #fff;
  border: 1px solid rgba(10,9,8,0.18);
  padding: 0.7rem 0.9rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.ct-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}

.ct-input--error {
  border-color: #c0392b;
}

.ct-input--error:focus {
  box-shadow: 0 0 0 2px rgba(192,57,43,0.12);
}

.ct-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select wrapper — custom chevron */
.ct-select-wrap {
  position: relative;
}

.ct-select {
  cursor: pointer;
  padding-right: 2.2rem;
}

.ct-select-chevron {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--near-black);
  opacity: 0.5;
}

.ct-error {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #c0392b;
  letter-spacing: 0.02em;
}

.ct-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.ct-form-note {
  margin: 1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(10,9,8,0.4);
  font-style: italic;
}

/* Success message */
.ct-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--near-black);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.ct-success svg {
  flex-shrink: 0;
  stroke: var(--gold);
}


/* ── Contact details ── */
.ct-details-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ct-detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.ct-detail-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.ct-detail-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.6;
  margin: 0;
}

.ct-detail-text a {
  color: var(--near-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ct-detail-text a:hover {
  color: var(--gold);
}

.ct-detail-sub {
  font-size: 0.85rem;
  color: rgba(10,9,8,0.5);
}

.ct-opening-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(10,9,8,0.04);
  border-left: 2px solid var(--gold);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(10,9,8,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ct-opening-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.ct-opening-note a {
  color: var(--near-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ct-opening-note a:hover {
  color: var(--gold);
}

.ct-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--near-black);
  color: var(--cream);
  border: 1px solid rgba(245,240,230,0.15);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 0.65rem 1.25rem;
  margin-bottom: 1.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.ct-directions-btn:hover {
  background: #2a2a2a;
  border-color: rgba(245,240,230,0.3);
  color: var(--cream);
}

/* Map placeholder */
.ct-map-block {
  background: var(--near-black);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.ct-map-block--iframe {
  height: 280px;
  overflow: hidden;
  border-radius: 2px;
}

.ct-map-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,230,0.5);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}


/* ── FAQ accordion ── */
.ct-faq {
  padding: 6rem 0 7rem;
  background: #f5f0e6;
}

.ct-faq-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.ct-faq-item {
  border-bottom: 1px solid rgba(10,9,8,0.1);
}

.ct-faq-item:first-child {
  border-top: 1px solid rgba(10,9,8,0.1);
}

.ct-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--near-black);
  text-align: left;
  transition: color 0.2s;
}

.ct-faq-btn:hover {
  color: var(--gold);
}

.ct-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.ct-faq-item--open .ct-faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
  stroke: var(--gold);
}

.ct-faq-panel {
  overflow: hidden;
  max-height: none;
  transition: max-height 0.35s ease;
}

.ct-faq-panel p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(10,9,8,0.7);
  margin: 0;
  padding-bottom: 1.25rem;
}


/* ── Social strip ── */
.ct-social {
  padding: 4.5rem 2rem;
  background: var(--near-black);
  text-align: center;
}

.ct-social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ct-social-icons {
  display: flex;
  gap: 1rem;
}

.ct-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  text-decoration: none;
}

.ct-social-link:hover {
  opacity: 0.7;
}

.ct-social-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(245,240,230,0.5);
  margin: 0;
}


/* ============================================================
   CONTACT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ct-split-inner { gap: 3.5rem; }
}

@media (max-width: 768px) {
  /* Hero */
  .ct-hero { height: 35vh; min-height: 220px; }

  /* Split: stack vertically */
  .ct-split { padding: 4.5rem 0; }
  .ct-split-inner { grid-template-columns: 1fr; gap: 3.5rem; }

  /* Side-by-side date/guests fields: stack on mobile */
  .ct-fields-row { grid-template-columns: 1fr; }

  /* FAQ */
  .ct-faq { padding: 4.5rem 0; }
}


/* ============================================================
   GALLERY PAGE — gl-* namespace
   ============================================================ */

/* ── Hero ── */
.gl-hero {
  position: relative;
  height: 40vh;
  min-height: 260px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gl-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.gl-hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--cream);
  letter-spacing: 0.28em;
  margin: 0 0 0.75rem;
}

.gl-hero-subline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.4);
  margin: 0;
}


/* ── Filter bar ── */
.gl-filter-bar {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: var(--near-black);
  border-bottom: 1px solid rgba(245,240,230,0.07);
  padding: 0.85rem 2rem;
}

.gl-filter-inner {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.gl-filter-pill {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(245,240,230,0.3);
  background: transparent;
  color: rgba(245,240,230,0.7);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.gl-filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gl-filter-pill--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}

.gl-filter-pill--active:hover {
  background: #b8962e;
  border-color: #b8962e;
  color: var(--near-black);
}


/* ── Gallery grid (CSS columns masonry) ── */
.gl-gallery {
  padding: 2rem 0 4rem;
  background: var(--near-black);
}

.gl-grid {
  columns: 3;
  column-gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ── Gallery items ── */
.gl-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
  animation: glFadeIn 0.5s ease both;
  animation-delay: var(--gl-delay, 0ms);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gl-item--out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

@keyframes glFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gl-placeholder {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  /* Gold border on hover via box-shadow inset */
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.gl-item:hover .gl-placeholder {
  box-shadow: inset 0 0 0 2px var(--gold);
  filter: brightness(1.18);
}

.gl-item:focus-visible .gl-placeholder {
  box-shadow: inset 0 0 0 2px var(--gold);
  outline: none;
}

.gl-item-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(201,168,76,0.7);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}


/* ── Lightbox ── */
.gl-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gl-lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(245,240,230,0.8);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  z-index: 10;
}

.gl-lb-close:hover { color: var(--cream); }

.gl-lb-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 90vw;
  width: 100%;
}

.gl-lb-arrow {
  background: none;
  border: 1px solid rgba(245,240,230,0.2);
  color: rgba(245,240,230,0.7);
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, opacity 0.2s;
}

.gl-lb-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gl-lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
}

.gl-lb-image {
  width: 100%;
  max-width: 900px;
  height: 60vh;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2420;
  transition: background 0.3s ease;
}

.gl-lb-image-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.5);
  text-align: center;
  padding: 1rem;
}

.gl-lb-caption {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,240,230,0.45);
  text-transform: uppercase;
  text-align: center;
}


/* ── Real photos CTA ── */
.gl-photos-cta {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
}

.gl-photos-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.gl-photos-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--near-black);
  line-height: 1.5;
  margin: 0;
}

.gl-photos-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(10,9,8,0.6);
  line-height: 1.7;
  margin: 0;
}

.gl-photos-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.gl-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--near-black);
  border: 1px solid rgba(10,9,8,0.3);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.6rem 1.3rem;
  transition: border-color 0.2s, background 0.2s;
}

.gl-social-btn:hover {
  border-color: var(--near-black);
  background: rgba(10,9,8,0.04);
  color: var(--near-black);
}


/* ── Enquiry nudge ── */
.gl-nudge {
  padding: 4.5rem 2rem;
  background: #111;
  text-align: center;
}

.gl-nudge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.gl-nudge-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}

.gl-nudge-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}


/* ============================================================
   GALLERY PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .gl-grid { columns: 2; }
}

@media (max-width: 768px) {
  .gl-hero { height: 35vh; min-height: 220px; }
  .gl-filter-bar { padding: 0.75rem 1.25rem; overflow-x: auto; }
  .gl-filter-inner { flex-wrap: nowrap; }
  .gl-grid { columns: 1; max-width: 480px; }
  .gl-gallery { padding: 1.5rem 0 3rem; }

  .gl-lb-row { gap: 0.75rem; }
  .gl-lb-arrow { font-size: 2rem; padding: 0.25rem 0.5rem; }
  .gl-lb-image { height: 45vh; }

  .gl-nudge-links { flex-direction: column; align-items: center; }
  .gl-nudge-links .btn { width: 100%; max-width: 260px; text-align: center; }
}
