/* ============================================================
   BRANDYWINE FESTIVAL — SHARED STYLESHEET
   ============================================================ */

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

/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --green-deep: #2d4a1e;
  --green-mid:  #4a7a2e;
  --green-light:#7ab648;
  --gold:       #c89b3c;
  --gold-light: #e8c96a;
  --cream:      #fdf6e3;
  --warm-white: #fffdf5;
  --brown:      #6b3f1e;
  --brown-light:#c4915a;
  --text:       #2a1f0e;
  --text-light: #5c4a2a;
  --urgent:     #b83232;
  --us-col:     #2d6b3a;
  --uk-col:     #1a3a6b;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text);
}

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: var(--urgent); color: #fff;
  text-align: center; padding: 0.6rem 1rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.urgency-banner a { color: #ffe08a; text-decoration: underline; }
.urgency-banner .pipe { opacity: 0.4; }

/* ── NAVIGATION ── */
nav {
  background: rgba(253,246,227,0.97);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 3rem;
  transition: padding 0.3s, box-shadow 0.3s;
  position: sticky; top: 0; z-index: 100;
}
nav.scrolled { padding: 0.5rem 3rem; box-shadow: 0 4px 24px rgba(42,31,14,0.12); }
nav.scrolled .nav-logo { font-size: 1.2rem; }
nav.scrolled .nav-logo img { height: 22px; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--green-deep);
  transition: font-size 0.3s; letter-spacing: 0.04em;
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 26px; width: auto; display: block; transition: height 0.3s; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 0.9rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem; border-radius: 30px;
}
.nav-cta:hover { background: var(--green-mid) !important; }

/* ── MOBILE NAV — HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 201;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV — OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 6, 0.55);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── MOBILE NAV — SLIDE-IN DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--warm-white);
  border-left: 2px solid var(--gold);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2.5rem;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--cream);
  border: 1.5px solid #e0d8c8;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--green-deep);
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: #ede6d6; }

.nav-drawer-logo {
  display: block;
  margin-bottom: 2rem;
  text-decoration: none;
}
.nav-drawer-logo img { max-width: 100%; height: auto; display: block; }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.nav-drawer-links a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #ede6d6;
  transition: color 0.2s;
}
.nav-drawer-links a:hover { color: var(--green-deep); }
.nav-drawer-links .drawer-cta {
  display: block;
  margin-top: 1.2rem;
  background: var(--green-deep);
  color: var(--cream) !important;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 40px;
  border-bottom: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.nav-drawer-links .drawer-cta:hover { background: var(--green-mid) !important; }

.nav-drawer-secondary {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ede6d6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-drawer-secondary a {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-drawer-secondary a:hover { color: var(--green-deep); }

/* ── SHARED LAYOUT ── */
.container       { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container--mid  { max-width: 960px;  margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY UTILITIES ── */
.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-deep); line-height: 1.2; margin-bottom: 0.9rem;
}
.section-intro {
  color: var(--text-light); line-height: 1.85; font-size: 1rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--green-deep);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  padding: 0.8rem 2rem; border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200,155,60,0.35);
  transition: transform 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2.2rem; border-radius: 40px;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-ghost-light {
  display: inline-block;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 2rem; border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-dark {
  display: inline-block;
  background: var(--green-deep); color: var(--cream);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 2rem; border-radius: 40px;
  text-decoration: none; transition: background 0.2s;
}
.btn-dark:hover { background: var(--green-mid); }

.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--green-deep);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2.2rem; border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200,155,60,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,155,60,0.55); }

.btn-outline-white {
  display: inline-block;
  background: rgba(255,255,255,0.1); border: 2px solid rgb(77 77 77 / 55%);
  color: #3f3f3f; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2.2rem; border-radius: 40px;
  text-decoration: none; transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

.btn-outline-dark {
  display: inline-block;
  background: transparent; border: 2px solid var(--gold);
  color: var(--green-deep); font-weight: 700; font-size: 0.88rem;
  padding: 0.7rem 1.8rem; border-radius: 40px;
  text-decoration: none; transition: background 0.2s;
}
.btn-outline-dark:hover { background: rgba(200,155,60,0.1); }

.btn-outline-gold {
  display: inline-block; border: 2px solid var(--gold);
  color: var(--gold-light); font-weight: 700; font-size: 0.88rem;
  padding: 0.7rem 1.6rem; border-radius: 30px;
  text-decoration: none; transition: background 0.2s;
}
.btn-outline-gold:hover { background: rgba(200,155,60,0.15); }

/* ── IMAGE box UTILITY ── */
.img-box {
  background: #c8d4b8;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%; height: 100%;
  color: var(--green-deep);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; padding: 1rem;
  position: relative;
}
.img-box::before { content: '📷'; font-size: 2rem; display: block; }
.img-box.hero-box {
  background: linear-gradient(160deg, #3a5a28, #1e3a10);
  color: rgba(255,255,255,0.6); min-height: 100%;
}
.img-box.dark-box {
  background: #2a3a1e; color: rgba(255,255,255,0.5);
}

/* ── FOOTER ── */
footer {
  background: #140e06;
  color: rgba(253,246,227,0.45);
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.footer-brand .footer-logo {
  display: block;
  width: 244px;
  height: auto;
  margin-bottom: 0.9rem;
}
.footer-brand .footer-logo span { color: var(--gold); } /* kept for safety */
.footer-brand p {
  color: rgba(253,246,227,0.45);
  line-height: 1.75;
  font-size: 0.83rem;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  color: rgba(253,246,227,0.5);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-mee {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
/* REPLACE .mee-logo-box with <img src="images/mee-logo.png" alt="Middle-earth Enterprises"> */
.mee-logo-box {
  width: 100px; height: 40px;
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: rgba(255,255,255,0.2);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0; padding: 0.3rem; text-align: center; line-height: 1.4;
}
.footer-mee-text {
  font-size: 0.73rem;
  color: rgba(253,246,227,0.3);
  line-height: 1.65;
}
.footer-mee-text strong { color: rgba(253,246,227,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(253,246,227,0.3); font-size: 0.75rem; }
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-links a {
  color: rgba(253,246,227,0.35);
  text-decoration: none; font-size: 0.75rem; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   HOMEPAGE (index.html)
   ============================================================ */
body.page-home { padding-top: 36px; }
body.page-home .urgency-banner {
  position: fixed; top: 0; width: 100%; z-index: 201; height: 36px;
  padding: 0.55rem 1rem; font-size: 0.82rem; letter-spacing: 0.05em;
}
body.page-home nav {
  position: fixed; top: 36px; left: 0; width: 100%; z-index: 199;
  backdrop-filter: blur(8px);
  padding: 0.85rem 3rem;
}
body.page-home nav.scrolled {
  padding: 0.5rem 3rem;
  box-shadow: 0 4px 28px rgba(42,31,14,0.13);
}
body.page-home nav.scrolled .nav-logo { font-size: 1.15rem; }

/* ── HOME HERO ── */
.hero {
  min-height: 80vh;
  padding-top: calc(36px + 66px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Hero overlay darkness — change these two values (0 = clear, 1 = solid black) */
.hero-video-overlay {
  --hero-overlay-top: 0.65;
  --hero-overlay-bottom: 0.25;
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,22,6,var(--hero-overlay-top)) 0%, rgba(10,22,6,var(--hero-overlay-bottom)) 100%);
}
.hero-video-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #0e1f08 0%, #1e3a12 40%, #112210 100%);
  display: none;
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 260px;
  background: linear-gradient(to bottom, #fff5f500, #fffdf5);
  z-index: 2; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 760px; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,155,60,0.18); border: 1.5px solid rgba(200,155,60,0.5);
  backdrop-filter: blur(6px); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 1.2rem; border-radius: 30px; margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem); color: #fff;
  line-height: 1.0; text-shadow: 0 2px 40px rgba(0,0,0,0.4); margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.82); max-width: 540px;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); line-height: 1.75;
  font-weight: 300; margin-bottom: 2rem;
  text-shadow: 2px 2px 3px black;
}
.hero-dates { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.hero-date-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(0,0,0,0.5); border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px); border-radius: 40px;
  padding: 0.5rem 1.2rem; color: #fff; font-size: 0.83rem;
}
.hero-date-pill strong { font-weight: 700; }
.hero-date-pill span { opacity: 0.9; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── HOME: THE PITCH ── */
.pitch-section { padding: 6rem 2rem; }
.pitch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pitch-img-wrap {
  border-radius: 28px; overflow: hidden; height: 460px;
  position: relative; box-shadow: 0 16px 56px rgba(42,31,14,0.18);
}
/* Video play trigger */
.pitch-video-trigger { cursor: pointer; }
.pitch-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); transition: background 0.2s; pointer-events: none;
}
.pitch-video-trigger:hover .pitch-play-btn,
.pitch-video-trigger:focus .pitch-play-btn { background: rgba(0,0,0,0.32); }
.pitch-play-btn span {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: #2d4a1e;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s;
}
.pitch-video-trigger:hover .pitch-play-btn span,
.pitch-video-trigger:focus .pitch-play-btn span { transform: scale(1.1); }
/* Video modal */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.88); align-items: center; justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  width: min(880px, 95vw); aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden; position: relative;
}
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 1;
}
.video-modal-close:hover { background: rgba(255,255,255,0.3); }
.pitch-img-box {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #3a5a28, #1e3a10);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-align: center; gap: 0.5rem;
}
.pitch-img-box::before { content: '📷'; font-size: 2.5rem; }
.pitch-img-caption {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(45,74,30,0.88); backdrop-filter: blur(4px);
  color: var(--gold-light); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 20px;
}
.pitch-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--green-deep);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.pitch-text h2 em { color: var(--gold); font-style: italic; }
.pitch-text p { color: var(--text-light); line-height: 1.9; font-size: 1rem; margin-bottom: 1rem; }
.pitch-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.8rem 0 2rem; }
.pitch-pillar {
  background: var(--cream); border: 1.5px solid #e0d8c8;
  border-radius: 14px; padding: 0.9rem 1rem;
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.pitch-pillar .pp-icon { font-size: 1.3rem; flex-shrink: 0; }
.pitch-pillar h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.92rem; margin-bottom: 0.15rem; }
.pitch-pillar p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ── HOME: LOCATIONS ── */
.home-locations-section { background: var(--green-deep); padding: 6rem 2rem; background-image: url(images/green-1_section_bg.png); background-position: center; background-size: cover; }
.home-locations-head { text-align: center; margin-bottom: 3.5rem; }
.home-locations-head .section-label { color: var(--gold-light); }
.home-locations-head .section-title { color: var(--cream); }
.home-locations-head p { color: rgba(253,246,227,0.7); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.home-loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.home-loc-card {
  border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.home-loc-card:hover { transform: translateY(-4px); border-color: rgba(200,155,60,0.5); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.home-loc-card-img { height: 220px; position: relative; overflow: hidden; }
.home-loc-img-box {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center; gap: 0.4rem;
}
.home-loc-img-box::before { content: '📷'; font-size: 2rem; }
.home-loc-card.us .home-loc-img-box { background: linear-gradient(160deg, #1a3a12, #0e2208); }
.home-loc-card.uk .home-loc-img-box { background: linear-gradient(160deg, #0d2040, #08183a); }
.home-loc-status-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.8rem; border-radius: 20px;
}
.home-loc-status-badge.selling { background: rgba(184,50,50,0.9); color: #fff; }
.home-loc-status-badge.soon { background: rgba(200,155,60,0.9); color: var(--green-deep); }
.home-loc-card-body { padding: 1.8rem; }
.home-loc-flag { font-size: 1.6rem; margin-bottom: 0.5rem; }
.home-loc-card-body h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.4rem; margin-bottom: 0.25rem; }
.home-loc-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.home-loc-card-body p { color: rgba(253,246,227,0.68); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.3rem; }
.home-loc-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold-light); font-weight: 700; font-size: 0.85rem;
  text-decoration: none; border-bottom: 1.5px solid rgba(200,155,60,0.4);
  padding-bottom: 1px; transition: border-color 0.2s;
}
.home-loc-card-link:hover { border-color: var(--gold-light); }

/* ── HOME: PROGRAMME HIGHLIGHTS ── */
.programme-section { padding: 6rem 2rem; background: var(--cream); background: #fdf6e3; background-image: linear-gradient(#fdf6e3, #fdf6e369), url(images/section_bg_3.jpg); background-position: right bottom; background-repeat: no-repeat; background-size: contain; }
.prog-head { margin-bottom: 3rem; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.prog-card {
  background: var(--warm-white); border: 1.5px solid #e0d8c8;
  border-radius: 20px; padding: 1.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.prog-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,31,14,0.09); }
.prog-card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.prog-card h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.1rem; margin-bottom: 0.4rem; }
.prog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.prog-tag {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; border-radius: 20px;
  background: var(--cream); color: var(--text-light); border: 1px solid #d8d0c0;
}
.prog-card.featured {
  background: linear-gradient(135deg, var(--green-deep), #1e3a10);
  border-color: transparent; grid-column: span 2;
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
}
.prog-card.featured h3 { color: var(--gold-light); font-size: 1.4rem; }
.prog-card.featured p { color: rgba(253,246,227,0.75); }
.prog-card.featured .prog-tag { background: rgba(200,155,60,0.2); color: var(--gold-light); border-color: rgba(200,155,60,0.3); }
.prog-farthings { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.prog-farthing-chip {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(200,155,60,0.2);
  border-radius: 10px; padding: 0.5rem 0.7rem; text-align: center;
  font-size: 0.72rem; color: rgba(253,246,227,0.7); line-height: 1.4;
}
.prog-farthing-chip .pf-icon { font-size: 1.2rem; display: block; margin-bottom: 0.2rem; }
.prog-farthing-chip .pf-icon img { height: 50px; width: auto; display: block; margin: 0 auto; }
.prog-cta { text-align: center; }

/* ── HOME: GUESTS / QUOTES ── */
.guests-section { background: #1a1208; padding: 6rem 2rem; }
.guests-head { text-align: center; margin-bottom: 2.5rem; }
.guests-head .section-label { color: var(--gold); }
.guests-head .section-title { color: var(--cream); }
.guests-head .section-intro { color: rgba(253,246,227,0.6); margin: 0 auto; }
.quote-rotator {
  max-width: 680px; margin: 0 auto 3.5rem; text-align: center;
  padding: 2rem 2.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,155,60,0.2); border-radius: 20px;
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); line-height: 0.6; display: block; margin-bottom: 0.5rem; opacity: 0.4; }
.quote-rotator blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(253,246,227,0.9); line-height: 1.6; margin-bottom: 1rem; }
.quote-rotator cite { font-size: 0.85rem; color: rgba(253,246,227,0.45); font-style: normal; }
.t-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.2rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.t-dot.active { background: var(--gold); }
.home-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.home-video-card {
  background: #251a0c; border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1.5px solid rgba(255,255,255,0.07);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; display: block;
}
.home-video-card:hover { transform: translateY(-4px); border-color: rgba(200,155,60,0.45); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.home-video-thumb { position: relative; height: 185px; overflow: hidden; background: #1a1208; }
.home-video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-video-thumb-box { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; background: linear-gradient(160deg, #2a1a08, #1a1208); }
.vtp-icon { font-size: 2rem; opacity: 0.25; }
.vtp-label { font-size: 0.65rem; color: rgba(255,255,255,0.2); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; line-height: 1.7; }
.home-video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.home-video-card:hover .home-video-play-btn { background: rgba(0,0,0,0.08); }
.home-video-play-btn span { width: 52px; height: 52px; background: rgba(200,155,60,0.88); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; padding-left: 4px; box-shadow: 0 4px 24px rgba(0,0,0,0.5); transition: transform 0.15s, background 0.15s; }
.home-video-card:hover .home-video-play-btn span { transform: scale(1.1); background: var(--gold); }
.home-video-duration { position: absolute; bottom: 0.6rem; right: 0.7rem; background: rgba(0,0,0,0.75); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 6px; }
.home-video-info { padding: 1.1rem 1.3rem 1.3rem; }
.home-video-creator { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.home-video-info h4 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 0.97rem; line-height: 1.4; margin-bottom: 0.4rem; }
.home-video-meta { font-size: 0.72rem; color: rgba(253,246,227,0.35); }
.home-video-cta-note { text-align: center; color: rgba(253,246,227,0.35); font-size: 0.82rem; }
.home-video-cta-note a { color: var(--gold); text-decoration: none; }
.home-video-cta-note a:hover { text-decoration: underline; }

/* ── HOME: FAQ TEASER ── */
.faq-teaser { padding: 5.5rem 2rem; background: var(--cream); }
.faq-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.faq-teaser-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green-deep); line-height: 1.18; margin-bottom: 1rem; }
.faq-teaser-text h2 em { color: var(--gold); font-style: italic; }
.faq-teaser-text p { color: var(--text-light); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1.8rem; }
.faq-preview-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-preview-item { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 12px; padding: 0.95rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-decoration: none; color: var(--text); transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s; }
.faq-preview-item:hover { border-color: var(--gold); transform: translateX(3px); box-shadow: 0 4px 16px rgba(42,31,14,0.07); }
.faq-preview-item .fpi-text { font-size: 0.88rem; font-weight: 700; line-height: 1.4; }
.faq-preview-item .fpi-arrow { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.faq-guides { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.2rem; }
.faq-guide-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 16px; padding: 1.2rem; text-align: center; text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.15s; }
.faq-guide-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.faq-guide-card .fg-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.faq-guide-card h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.92rem; margin-bottom: 0.25rem; }
.faq-guide-card p { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; }
.fg-badge { display: inline-block; margin-top: 0.5rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.6rem; border-radius: 20px; background: #f0ece0; color: var(--text-light); border: 1px solid #d0c8b8; }

/* ── HOME: TICKET AVAILABILITY ── */
.home-ticket-section { background: var(--warm-white); padding: 6rem 2rem; border-top: 2px solid #e8e0ce; }
.home-ticket-head { text-align: center; margin-bottom: 3rem; }
.home-ticket-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.t-card { border-radius: 22px; overflow: hidden; box-shadow: 0 6px 32px rgba(42,31,14,0.1); transition: transform 0.2s, box-shadow 0.2s; }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,31,14,0.15); }
.t-card-head { padding: 1.3rem 1.6rem; display: flex; align-items: center; gap: 1rem; }
.t-card.us .t-card-head { background: var(--urgent); }
.t-card.uk .t-card-head { background: var(--green-deep); }
.t-card-head .flag { font-size: 2rem; line-height: 1; }
.t-card-head h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.1rem; }
.t-card-head p { font-size: 0.78rem; color: rgba(255,255,255,0.72); font-weight: 300; }
.t-card-body { background: #fff; padding: 1.6rem; }
.progress-row { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.5rem; }
.progress-row .sold { color: var(--urgent); }
.progress-row .remain { color: var(--text-light); }
.progress-track { background: #ede6d6; border-radius: 99px; height: 9px; overflow: hidden; margin-bottom: 1.2rem; }
.progress-fill { height: 100%; border-radius: 99px; }
.progress-fill.us { background: linear-gradient(90deg, var(--urgent), #e06060); width: 70%; }
.progress-fill.uk { background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 2%; }
.t-stat { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1; color: var(--green-deep); }
.t-stat.urgent { color: var(--urgent); }
.t-stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; margin-top: 0.1rem; }
.t-cta { display: block; text-align: center; padding: 0.8rem; border-radius: 30px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: opacity 0.2s, transform 0.15s; font-family: 'Lato', sans-serif; }
.t-cta:hover { transform: translateY(-1px); }
.t-cta.us { background: var(--urgent); color: #fff; }
.t-cta.uk { background: var(--green-deep); color: var(--cream); }
.t-cta.disabled { background: #d8d0c0; color: #888; cursor: default; transform: none; }
.t-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 0.6rem; }
.t-note strong { color: var(--green-deep); }

/* ── HOME: FINAL CTA BANNER ── */
.cta-banner { background: linear-gradient(150deg, #1a1208 0%, var(--green-deep) 60%, #1e3a10 100%); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(200,155,60,0.08), transparent 70%); pointer-events: none; }
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; line-height: 1.08; margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(253,246,227,0.72); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.85; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.page-hero { padding: 5rem 2rem 3rem; text-align: center; position: relative; overflow: hidden; }
.page-hero .inner { position: relative; z-index: 1; }
.page-hero.hero-dark { background: linear-gradient(160deg, #0d1a08, #1a2a10, #0d1828); }
.page-hero.hero-green { background: linear-gradient(160deg, var(--green-deep), #1e3a10); }
.page-hero.hero-photo { min-height: 65vh; background: linear-gradient(to bottom, rgba(15,30,8,0.7) 0%, rgba(15,30,8,0.25) 65%, var(--warm-white) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 2rem 5rem; }
.page-hero.hero-photo .hero-photo-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero.hero-photo .hero-photo-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.page-hero .hero-badge { display: inline-block; background: var(--gold); color: var(--green-deep); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.35rem 1.2rem; border-radius: 30px; margin-bottom: 1.2rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 1rem; text-shadow: 3px 2px 9px black;}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; line-height: 1.8; font-size: 1rem; font-weight: 300; }

/* ============================================================
   TICKETS PAGE
   ============================================================ */
.event-selector { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0; position: relative; z-index: 1; }
.event-btn { border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); border-radius: 16px; padding: 1.2rem 2rem; cursor: pointer; text-align: center; transition: all 0.2s; min-width: 240px; font-family: 'Lato', sans-serif; }
.event-btn:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.event-btn.active.uk { border-color: #6b9bd2; background: rgba(26,58,107,0.3); }
.event-btn.active.us { border-color: #4a9a5a; background: rgba(45,107,58,0.2); }
.event-btn .eb-flag { font-size: 2rem; margin-bottom: 0.4rem; }
.event-btn .eb-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.2rem; }
.event-btn .eb-date { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.06em; }
.event-btn .eb-status { display: inline-block; margin-top: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 20px; }
.event-btn .eb-status.onsale { background: rgba(200,155,60,0.3); color: var(--gold-light); border: 1px solid rgba(200,155,60,0.4); }
.event-btn .eb-status.selling { background: rgba(45,107,58,0.3); color: #a8d4b0; border: 1px solid rgba(45,107,58,0.5); }
.event-btn .eb-status.live { background: rgba(200,155,60,0.22); color: var(--gold-light); border: 1px solid var(--gold); box-shadow: 0 0 8px rgba(200,155,60,0.3); }
.selector-hint { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center; margin-top: 1rem; font-style: italic; position: relative; z-index: 1; padding-bottom: 3rem; }
.ticket-panel { display: none; }
.ticket-panel.visible { display: block; }
.uk-header { background: linear-gradient(135deg, var(--uk-col), #0d2050); padding: 2.5rem 2rem; }
.uk-header-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.uk-venue-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 0.3rem; }
.uv-meta { color: rgba(255,255,255,0.7); font-size: 0.88rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.uk-onsale { text-align: center; }
.uk-onsale h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.3rem; margin-bottom: 0.3rem; }
.uk-onsale p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-bottom: 0.8rem; }
.countdown-row { display: flex; gap: 0.6rem; justify-content: center; }
.cp { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 0.5rem 0.8rem; text-align: center; min-width: 52px; }
.cp .cv { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); line-height: 1; }
.cp .cl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-weight: 700; }
.batch-section { padding: 4rem 2rem; }
.batch-intro { max-width: 640px; margin-bottom: 2.5rem; }
.batch-intro p { color: var(--text-light); line-height: 1.8; font-size: 0.97rem; margin-top: 0.5rem; }
.batch-explainer { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 1rem 1.2rem; margin-top: 1rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.batch-explainer strong { color: var(--text); }
.current-batch { background: linear-gradient(135deg, var(--uk-col), #0d2050); border-radius: 24px; padding: 2.5rem; margin-bottom: 2rem; position: relative; overflow: hidden; box-shadow: 0 8px 36px rgba(26,58,107,0.25); }
.current-batch-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.05; }
.current-batch .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cb-badge { display: inline-block; background: var(--gold); color: var(--green-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.9rem; border-radius: 20px; margin-bottom: 0.8rem; }
.current-batch h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 0.4rem; }
.current-batch h3 em { color: var(--gold-light); font-style: italic; }
.current-batch .cb-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; max-width: 480px; margin-bottom: 1.2rem; }
.cb-price-block { text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 1.5rem 2rem; min-width: 180px; }
.cb-price { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold-light); line-height: 1; margin-bottom: 0.2rem; }
.cb-price-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1rem; }
.cb-spots { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.cb-spots strong { color: var(--gold-light); }
.cb-bar-track { background: rgba(255,255,255,0.15); border-radius: 99px; height: 6px; overflow: hidden; margin-bottom: 0.3rem; }
.cb-bar-fill { height: 100%; border-radius: 99px; background: var(--gold); }
.includes-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.inc-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px; }
.btn-buy-uk { display: inline-block; background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 1.05rem; padding: 1.1rem 2.6rem; border-radius: 40px; text-decoration: none; box-shadow: 0 4px 20px rgba(200,155,60,0.35), 0 0 30px rgba(200,155,60,0.2); transition: transform 0.15s, box-shadow 0.15s; letter-spacing: 0.02em; animation: uk-btn-glow 2.5s ease-in-out infinite; }
.btn-buy-uk:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,155,60,0.5), 0 0 40px rgba(200,155,60,0.3); }
@keyframes uk-btn-glow { 0%, 100% { box-shadow: 0 4px 20px rgba(200,155,60,0.35), 0 0 30px rgba(200,155,60,0.2); } 50% { box-shadow: 0 4px 24px rgba(200,155,60,0.5), 0 0 40px rgba(200,155,60,0.35); } }

/* Sticky mobile buy bar */
.uk-sticky-buy { display: none; }
@media (max-width: 768px) {
  .uk-sticky-buy {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--green-deep); border-top: 2px solid var(--gold);
    padding: 0.75rem 1.2rem calc(0.75rem + env(safe-area-inset-bottom));
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }
  .uk-sticky-buy .btn-buy-uk {
    display: block; width: 100%; text-align: center; font-size: 1rem;
    padding: 0.9rem 1.5rem; animation: none;
  }
}
.external-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.6rem; }
.external-note a { color: rgba(255,255,255,0.6); }
.upcoming-batches h3 { font-family: 'Playfair Display', serif; color: var(--text-light); font-size: 1rem; margin-bottom: 1rem; }
.batch-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; }
.batch-card { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 16px; padding: 1.2rem; text-align: center; opacity: 0.75; }
.batch-card .bc-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.batch-card .bc-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-light); margin-bottom: 0.2rem; }
.batch-card .bc-spots { font-size: 0.78rem; color: var(--text-light); }
.batch-card .bc-status { display: inline-block; margin-top: 0.5rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 20px; background: #ede8d8; color: var(--text-light); }
.uk-waitlist-cta { background: var(--cream); border: 2px solid #d0c8b8; border-radius: 20px; padding: 2rem; text-align: center; margin-top: 2rem; }
.uk-waitlist-cta p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; max-width: 500px; margin: 0 auto 1.2rem; }
.junior-ticket-block { background: var(--cream); border: 2px solid #d0c8b8; border-radius: 20px; padding: 1.8rem 2rem; margin-top: 1.5rem; }
.junior-ticket-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.junior-ticket-text { flex: 1; min-width: 240px; }
.junior-ticket-price { text-align: center; flex-shrink: 0; }
.btn-waitlist { display: inline-block; background: var(--uk-col); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 0.8rem 2rem; border-radius: 40px; text-decoration: none; }

/* ── UK Coming Soon state (toggled by site-config.js) ── */
.uk-coming-soon-notice { display: none; background: linear-gradient(135deg, #f7f4eb, #eee9da); border: 2px solid var(--gold); border-radius: 20px; padding: 2rem 2.5rem; margin-bottom: 2rem; box-shadow: 0 4px 24px rgba(200,155,60,0.12); }
.uk-coming-soon-notice .cs-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.uk-coming-soon-notice .cs-text { flex: 1; min-width: 240px; }
.uk-coming-soon-notice .cs-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark, #8a6d20); margin-bottom: 0.3rem; }
.uk-coming-soon-notice .cs-heading { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--green-deep); line-height: 1.3; }
.uk-coming-soon-notice .cs-sub { font-size: 0.88rem; color: var(--text-light); margin-top: 0.5rem; line-height: 1.7; }
.uk-coming-soon-notice .cs-countdown { text-align: center; background: var(--green-deep); color: #fff; border-radius: 16px; padding: 1.2rem 1.6rem; flex-shrink: 0; min-width: 200px; }
.uk-coming-soon-notice .cs-countdown-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; }
.uk-coming-soon-notice .cs-countdown-grid { display: flex; justify-content: center; gap: 0.6rem; }
.uk-coming-soon-notice .cs-unit { display: flex; flex-direction: column; align-items: center; min-width: 38px; }
.uk-coming-soon-notice .cs-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); line-height: 1.1; }
.uk-coming-soon-notice .cs-unit-label { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }
.uk-coming-soon-notice .cs-countdown-date { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); margin-top: 0.6rem; letter-spacing: 0.06em; }
#panel-uk.uk-coming-soon .btn-buy-uk,
#panel-uk.uk-coming-soon .btn-waitlist,
#panel-uk.uk-coming-soon .external-note { display: none; }
#panel-uk.uk-coming-soon .uk-coming-soon-notice { display: block; }
.t-card.uk.uk-coming-soon .t-cta.uk { pointer-events: none; opacity: 0.5; }
@media (max-width: 520px) { .uk-coming-soon-notice .cs-countdown { width: 100%; } }

/* ── UK Tent Rentals Coming Soon (toggled by site-config.js) ── */
.uk-tents-coming-soon .tr-book-btn { pointer-events: none; opacity: 0.35; }
.uk-tents-cs-notice { max-width: 960px; margin: 0 auto; padding: 1.5rem 1.5rem 0; }
.uk-tents-cs-inner { background: linear-gradient(135deg, #f7f4eb, #eee9da); border: 2px solid var(--gold); border-radius: 16px; padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.2rem; box-shadow: 0 4px 24px rgba(200,155,60,0.12); }
.uk-tents-cs-icon { font-size: 1.6rem; flex-shrink: 0; }
.uk-tents-cs-heading { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--green-deep); margin: 0; }
.uk-tents-cs-sub { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin: 0.2rem 0 0; }
@media (max-width: 600px) { .uk-tents-cs-inner { flex-direction: column; text-align: center; padding: 1.2rem 1.2rem; } }
.us-header { background: linear-gradient(135deg, var(--us-col), #1a4022); padding: 2.5rem 2rem; }
.us-header-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.us-venue-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 0.3rem; }
.us-scarcity { text-align: center; }
.us-scarcity .sc-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: #a8d4b0; line-height: 1; }
.us-scarcity .sc-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.uk-scarcity { text-align: center; }
.uk-scarcity .sc-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold-light); line-height: 1; }
.uk-scarcity .sc-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.sc-bar-fill.uk-fill { background: linear-gradient(90deg, var(--gold), #c8a030); }
.sc-bar-wrap { width: 180px; margin-top: 0.6rem; }
.sc-bar-track { background: rgba(255,255,255,0.15); border-radius: 99px; height: 8px; overflow: hidden; }
.sc-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, #e8730a, #c0392b); width: 70.2%; }
.sc-bar-label { display: flex; justify-content: space-between; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; font-weight: 700; }
.us-ticket-section { padding: 4rem 2rem; }
.us-single-card { background: linear-gradient(135deg, var(--us-col), #1a4022); border-radius: 24px; overflow: hidden; box-shadow: 0 8px 36px rgba(45,107,58,0.2); display: grid; grid-template-columns: 1fr 1fr; max-width: 860px; margin: 2rem auto 0; }
.us-card-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; }
.us-card-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.06; }
.us-card-body .inner { position: relative; z-index: 1; }
.us-card-body .sc-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #a8d4b0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 20px; margin-bottom: 0.8rem; }
.us-card-body h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 0.5rem; line-height: 1.1; }
.us-card-body h3 em { color: var(--gold-light); font-style: italic; }
.us-card-body .us-desc { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.us-card-pricing { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.us-price { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold-light); line-height: 1; }
.us-price-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; text-align: center; }
.us-includes { list-style: none; width: 100%; }
.us-includes li { font-size: 0.82rem; color: rgba(255,255,255,0.75); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 0.5rem; }
.us-includes li:last-child { border-bottom: none; }
.btn-buy-us { display: block; text-align: center; width: 100%; padding: 0.9rem; border-radius: 30px; font-weight: 700; font-size: 0.95rem; text-decoration: none; background: var(--gold); color: var(--green-deep); box-shadow: 0 4px 16px rgba(200,155,60,0.3); transition: transform 0.15s; }
.btn-buy-us:hover { transform: translateY(-2px); }
.us-ext-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 0.5rem; }
.us-ext-note a { color: rgba(255,255,255,0.5); }
.wrong-event { background: var(--cream); border-top: 2px solid #e0d8c8; padding: 2.5rem 2rem; text-align: center; }
.wrong-event p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.switch-btn { background: none; border: 2px solid #d0c8b8; border-radius: 30px; padding: 0.6rem 1.4rem; font-size: 0.85rem; font-weight: 700; color: var(--text-light); cursor: pointer; font-family: 'Lato', sans-serif; transition: border-color 0.2s, color 0.2s; }
.switch-btn:hover { border-color: var(--gold); color: var(--green-deep); }
.included-section { background: var(--cream); padding: 4rem 2rem; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.inc-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 16px; padding: 1.3rem; text-align: center; }
.inc-card .ic-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.inc-card h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.95rem; margin-bottom: 0.25rem; }
.inc-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.reassurance { padding: 4rem 2rem; }
.reassurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.re-item { display: flex; gap: 1rem; align-items: flex-start; }
.re-icon { font-size: 1.5rem; flex-shrink: 0; }
.re-item h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1rem; margin-bottom: 0.25rem; }
.re-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.re-item a { color: var(--green-deep); font-weight: 700; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.guides-section { padding: 5rem 2rem; background: var(--cream); }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.guide-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 18px; padding: 1.6rem 1.4rem; text-align: center; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; text-decoration: none; color: inherit; display: block; }
.guide-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,31,14,0.08); }
.guide-card .gc-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.guide-card h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1rem; margin-bottom: 0.4rem; }
.guide-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; margin-bottom: 0.8rem; }
.gc-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 20px; }
.gc-badge.coming { background: #f0ece0; color: var(--text-light); border: 1px solid #d0c8b8; }
.gc-badge.available { background: #eaf4e2; color: var(--green-deep); border: 1px solid #b8d9a0; }
.crew-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.crew-card { border-radius: 20px; overflow: hidden; display: flex; align-items: stretch; box-shadow: 0 4px 20px rgba(42,31,14,0.08); text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.crew-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(42,31,14,0.13); }
.crew-card-accent { width: 8px; flex-shrink: 0; }
.crew-card.event-crew .crew-card-accent { background: var(--green-deep); }
.crew-card.npc .crew-card-accent { background: var(--gold); }
.crew-card-body { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-left: none; border-radius: 0 20px 20px 0; padding: 1.6rem; flex: 1; }
.crew-card-body .cc-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.crew-card-body h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.15rem; margin-bottom: 0.3rem; }
.crew-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.8rem; }
.crew-link { font-size: 0.82rem; font-weight: 700; color: var(--gold); }
.faq-section { padding: 5rem 2rem; }
.faq-category { margin-bottom: 3.5rem; }
.faq-category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid #e0d8c8; }
.faq-cat-icon { font-size: 1.5rem; }
.faq-cat-title { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.1rem 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'Lato', sans-serif; }
.faq-q-text { font-weight: 700; font-size: 0.95rem; color: var(--text); line-height: 1.4; }
.faq-chevron { font-size: 0.75rem; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; color: var(--text-light); font-size: 0.92rem; line-height: 1.8; border-top: 1px solid #e8e0ce; padding-top: 1rem; }
.faq-a-inner a { color: var(--green-deep); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--gold); }
.faq-a-inner strong { color: var(--text); }
.cat-nav { background: var(--warm-white); border-bottom: 2px solid #e0d8c8; padding: 0; position: sticky; top: 63px; z-index: 40; }
.cat-nav-inner { display: flex; gap: 0; max-width: 900px; margin: 0 auto; padding: 0 2rem; overflow-x: auto; }
.cat-tab { padding: 0.85rem 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Lato', sans-serif; }
.cat-tab:hover, .cat-tab.active { color: var(--green-deep); border-bottom-color: var(--gold); }
.still-stuck { background: var(--green-deep); padding: 4rem 2rem; text-align: center; }
.still-stuck h2 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.still-stuck p { color: rgba(253,246,227,0.72); max-width: 480px; margin: 0 auto 2rem; line-height: 1.8; }
.stuck-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section { background: linear-gradient(160deg, #1a1208, #2d4a1e); padding: 5rem 2rem; text-align: center; }
.cta-section .section-label { color: var(--gold-light); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.cta-section h2 em { color: var(--gold-light); font-style: italic; }
.cta-section p { color: rgba(253,246,227,0.72); max-width: 440px; margin: 0 auto 2rem; line-height: 1.8; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PROGRAMME PAGE
   ============================================================ */
.overview-strip { background: var(--green-deep); padding: 3rem 2rem; }
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.overview-item { background: var(--green-deep); padding: 1.8rem 1.2rem; text-align: center; }
.overview-item .ov-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.overview-item .ov-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.2rem; }
.overview-item .ov-label { font-size: 0.72rem; color: rgba(253,246,227,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.overview-item.highlight { background: rgba(200,155,60,0.15); }
.games-intro-banner { background: linear-gradient(135deg, rgba(26,18,8,0.88), rgba(45,26,6,0.88)); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.games-intro-bg { position: absolute; inset: 0; z-index: 0; }
.games-intro-banner .section-label { color: var(--gold); }
.games-intro-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1rem; line-height: 1.15; }
.games-intro-banner h2 em { color: var(--gold-light); font-style: italic; }
.games-intro-banner p { color: rgba(253,246,227,0.75); max-width: 640px; margin: 0 auto 2rem; line-height: 1.85; font-size: 1rem; }
.farthings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 780px; margin: 0 auto; }
.farthing-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,155,60,0.25); border-radius: 16px; padding: 1.5rem 1rem; text-align: center; }
.farthing-card .f-icon { font-size: 2rem; margin-bottom: 0.5rem; display: flex; justify-content: center; }
.farthing-card .f-icon img { height: 98px; width: auto; display: block; }
.farthing-card h4 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; margin-bottom: 0.3rem; }
.farthing-card p { font-size: 0.78rem; color: rgba(253,246,227,0.55); line-height: 1.5; }
.phase { padding: 5rem 2rem; }
.phase:nth-child(even) { background: var(--cream); }
.phase-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.phase-badge { background: var(--green-deep); color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 0.85rem; padding: 0.4rem 1.1rem; border-radius: 30px; white-space: nowrap; margin-top: 0.3rem; }
.phase-badge.pre { background: var(--gold); color: var(--green-deep); }
.activity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.activity-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 18px; padding: 1.5rem; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; }
.activity-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,31,14,0.08); }
.ac-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; }
.ac-icon { font-size: 1.8rem; }
.ac-meta { flex: 1; }
.ac-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.ac-meta h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.05rem; line-height: 1.2; }
.activity-card p { color: var(--text-light); font-size: 0.87rem; line-height: 1.65; }
.ac-time { display: inline-block; margin-top: 0.8rem; font-size: 0.75rem; font-weight: 700; color: var(--text-light); background: var(--cream); border-radius: 20px; padding: 0.2rem 0.7rem; }
.hike-feature { background: linear-gradient(135deg, var(--green-deep), #1e3a10); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 3rem; box-shadow: 0 8px 36px rgba(42,31,14,0.15); }
.hike-img { min-height: 320px; overflow: hidden; }
.hike-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.hike-body .section-label { color: var(--gold-light); }
.hike-body h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.hike-body h3 em { color: var(--gold-light); font-style: italic; }
.hike-body p { color: rgba(253,246,227,0.75); font-size: 0.93rem; line-height: 1.8; margin-bottom: 1.2rem; }
.party-feature { background: linear-gradient(178deg, #231054, #321c04); border-radius: 24px; padding: 3rem; text-align: center; margin-bottom: 3rem; border: 1px solid rgba(200,155,60,0.2); position: relative; overflow: hidden; }
.party-feature .section-label { color: var(--gold); }
.party-feature h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); margin-bottom: 0.8rem; }
.party-feature h3 em { color: var(--gold-light); font-style: italic; }
.party-feature p { color: rgba(253,246,227,0.7); max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.8; font-size: 0.97rem; }
.party-pills { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.party-pill { background: rgba(200,155,60,0.15); border: 1px solid rgba(200,155,60,0.3); color: var(--gold-light); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 20px; }
.rhythm-section { padding: 5rem 2rem; }
.rhythm-timeline { position: relative; max-width: 760px; margin: 3rem auto 0; }
.rhythm-timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,155,60,0.1)); }
.rhythm-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative; }
.rhythm-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 2px 12px rgba(200,155,60,0.2); }
.rhythm-item.highlight-item .rhythm-dot { background: var(--gold); border-color: var(--gold-light); }
.rhythm-item.dark .rhythm-dot { background: var(--green-deep); border-color: var(--gold-light); }
.rhythm-content { padding-top: 0.8rem; }
.rhythm-time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.rhythm-content h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.15rem; margin-bottom: 0.3rem; }
.rhythm-content p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }
.rhythm-games-tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(200,155,60,0.15); border: 1px solid rgba(200,155,60,0.4); color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 20px; margin-top: 0.5rem; }
.games-section { background: linear-gradient(180deg, #1c1005, #2a1a08); padding: 6rem 2rem; position: relative; overflow: hidden; }
.games-section .section-label { color: var(--gold); }
.games-section .section-title { color: var(--cream); max-width: 640px; }
.games-section .section-intro { color: rgba(253,246,227,0.7); margin-bottom: 3rem; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.game-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,155,60,0.2); border-radius: 18px; padding: 1.8rem 1.5rem; transition: border-color 0.2s, background 0.2s; }
.game-card:hover { border-color: var(--gold); background: rgba(200,155,60,0.08); }
.game-card .g-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.game-card h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.4rem; }
.game-card .g-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,201,106,0.6); margin-bottom: 0.5rem; }
.game-card p { font-size: 0.87rem; color: rgba(253,246,227,0.62); line-height: 1.65; }
.games-multiday-note { background: rgba(200,155,60,0.1); border: 1px solid rgba(200,155,60,0.25); border-radius: 16px; padding: 1.5rem 2rem; text-align: center; color: rgba(253,246,227,0.7); font-size: 0.92rem; line-height: 1.75; }
.games-multiday-note strong { color: var(--gold-light); }
.workshops-section { background: var(--cream); padding: 5rem 2rem; }
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.workshop-card { background: var(--warm-white); border-radius: 16px; padding: 1.4rem; border: 1.5px solid #e0d8c8; text-align: center; transition: border-color 0.2s, transform 0.15s; }
.workshop-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.wc-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.workshop-card h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1rem; margin-bottom: 0.3rem; }
.workshop-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }
.nights-section { padding: 5rem 2rem; background: #000000; text-align: center; position: relative; overflow: hidden; }
.nights-video-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.nights-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; display: block; }
.nights-section .container { position: relative; z-index: 1; }
.nights-section .section-label { color: var(--gold-light); }
.nights-section .section-title { color: var(--cream); margin-bottom: 1rem; }
.nights-section .section-intro { color: rgba(253,246,227,0.72); margin: 0 auto 3rem; }
.nights-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.night-card { flex: 1 1 200px; max-width: 280px; }
.night-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 2rem 1.5rem; }
.night-card .ni-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.night-card h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.4rem; }
.night-card p { color: rgba(253,246,246,0.65); font-size: 0.87rem; line-height: 1.6; }
.ceremony-section { background: linear-gradient(160deg, #1a1208, #2d1a06, #1a1208); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; border-top: 3px solid var(--gold); }
.ceremony-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.05; }
.ceremony-section .inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.ceremony-section .section-label { color: var(--gold); }
.trophy-icon { font-size: 5rem; margin: 1rem 0; display: block; filter: drop-shadow(0 0 30px rgba(200,155,60,0.4)); }
.ceremony-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--cream); line-height: 1.1; margin-bottom: 1.2rem; }
.ceremony-section h2 em { color: var(--gold-light); font-style: italic; }
.ceremony-section p { color: rgba(253,246,227,0.75); line-height: 1.9; font-size: 1rem; margin-bottom: 1rem; }
.ceremony-details { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.ceremony-detail { background: rgba(200,155,60,0.12); border: 1px solid rgba(200,155,60,0.3); border-radius: 12px; padding: 1rem 1.5rem; text-align: center; min-width: 140px; }
.ceremony-detail .cd-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.ceremony-detail .cd-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.ceremony-detail .cd-val { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 0.97rem; }

/* ============================================================
   EXPERIENCE PAGE
   ============================================================ */
.immersive-section { padding: 6rem 2rem; }
.immersive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.immersive-grid.flip { direction: rtl; }
.immersive-grid.flip > * { direction: ltr; }
.immersive-img { border-radius: 24px; overflow: hidden; height: 420px; position: relative; box-shadow: 0 12px 48px rgba(42,31,14,0.15); }
.immersive-img .img-caption { position: absolute; bottom: 1rem; left: 1rem; background: rgba(45,74,30,0.85); backdrop-filter: blur(4px); color: var(--gold-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 20px; z-index: 1; }
.immersive-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--green-deep); margin-bottom: 1rem; line-height: 1.2; }
.immersive-text h2 em { color: var(--gold); font-style: italic; }
.immersive-text p { color: var(--text-light); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1rem; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.pill { background: var(--cream); border: 1.5px solid #ddd5be; color: var(--text-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.3rem 0.9rem; border-radius: 20px; }
.music-section { background: var(--green-deep); padding: 6rem 2rem; text-align: center; }
.music-section .section-label { color: var(--gold-light); }
.music-section .section-title { color: var(--cream); max-width: 600px; margin: 0 auto 1rem; }
.music-section .section-intro { color: rgba(253,246,227,0.75); max-width: 600px; margin: 0 auto 3rem; }
.music-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.music-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 2rem 1.5rem; text-align: center; }
.music-card .mc-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.music-card h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.15rem; margin-bottom: 0.5rem; }
.music-card p { color: rgba(253,246,227,0.68); font-size: 0.87rem; line-height: 1.6; }
.food-section { padding: 6rem 2rem; background: var(--cream); }
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.food-card { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(42,31,14,0.08); background: var(--warm-white); transition: transform 0.2s; }
.food-card:hover { transform: translateY(-4px); }
.food-card-img { height: 200px; overflow: hidden; }
.food-card-body { padding: 1.4rem; }
.food-card-body h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.15rem; margin-bottom: 0.4rem; }
.food-card-body p { color: var(--text-light); font-size: 0.87rem; line-height: 1.65; }
.camping-section { padding: 6rem 2rem; }
.camping-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; margin-top: 3rem; align-items: start; }
.camping-main { background: var(--green-deep); border-radius: 24px; overflow: hidden; }
.camping-main-img { height: 280px; overflow: hidden; }
.camping-main-body { padding: 2rem; }
.camping-main-body h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.5rem; margin-bottom: 0.7rem; }
.camping-main-body p { color: rgba(253,246,227,0.78); font-size: 0.93rem; line-height: 1.8; margin-bottom: 1.2rem; }
.camping-perks { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.camping-perk { background: rgba(255,255,255,0.1); color: var(--gold-light); font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px; }
.camping-side { background: var(--cream); border: 2px solid #e0d8c8; border-radius: 24px; padding: 2rem; }
.camping-side h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.25rem; margin-bottom: 0.6rem; }
.camping-side p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.2rem; }
.camping-side a { color: var(--green-deep); font-weight: 700; font-size: 0.88rem; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.camping-side-col { display: flex; flex-direction: column; gap: 1.5rem; }
.camping-side-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.camping-side-list li { font-size: 0.88rem; color: var(--text-light); padding-left: 1.2rem; position: relative; }
.camping-side-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }
.video-section { background: #1a1208; padding: 6rem 2rem; text-align: center; }
.video-section .section-label { color: var(--gold); }
.video-section .section-title { color: var(--cream); margin-bottom: 0.8rem; }
.video-section .section-intro { color: rgba(253,246,227,0.65); max-width: 560px; margin: 0 auto 3rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.video-card { background: #2a1f0e; border-radius: 16px; overflow: hidden; text-align: left; transition: transform 0.2s; text-decoration: none; }
.video-card:hover { transform: translateY(-3px); }
.video-thumb { position: relative; height: 185px; overflow: hidden; }
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn span { width: 52px; height: 52px; background: rgba(200,155,60,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding-left: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.video-info { padding: 1.1rem 1.3rem; }
.video-info .creator { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.video-info h4 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1rem; line-height: 1.3; }
.video-cta-note { margin-top: 2.5rem; color: rgba(253,246,227,0.45); font-size: 0.85rem; }
.video-cta-note a { color: var(--gold); text-decoration: none; }
.exp-locations-section { padding: 6rem 2rem; background: var(--warm-white); }
.loc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.exp-loc-card { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 36px rgba(42,31,14,0.1); background: var(--cream); }
.exp-loc-card-img { height: 260px; overflow: hidden; }
.exp-loc-card-body { padding: 2rem; }
.loc-flag { font-size: 1.8rem; margin-bottom: 0.5rem; }
.exp-loc-card-body h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.4rem; margin-bottom: 0.3rem; }
.loc-date-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.exp-loc-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.4rem; }
.loc-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green-deep); font-weight: 700; font-size: 0.88rem; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; }

/* ============================================================
   GET READY PAGE
   ============================================================ */
.roadmap-intro { padding: 4rem 2rem 2rem; text-align: center; }
.roadmap-intro p { color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.8; font-size: 1.02rem; }
.steps-section { padding: 2rem 2rem 5rem; }
.steps { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 0 2rem; position: relative; }
.step:not(:last-child) .step-spine::after { content: ''; position: absolute; left: 39px; top: 80px; bottom: -2rem; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,155,60,0.12)); }
.step-spine { position: relative; display: flex; flex-direction: column; align-items: center; padding-top: 1.5rem; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--green-deep); color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(45,74,30,0.3); }
.step-body { padding: 1.5rem 0 3rem; }
.step-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.step-body h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--green-deep); margin-bottom: 0.6rem; }
.step-body > p { color: var(--text-light); line-height: 1.8; font-size: 0.97rem; margin-bottom: 1rem; }
.step-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
a.step-option { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 14px; padding: 1.2rem 1.2rem 1rem; text-decoration: none; color: inherit; display: block; transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s; cursor: pointer; }
a.step-option:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45,74,30,0.1); }
a.step-option:hover .opt-arrow { opacity: 1; transform: translateX(3px); }
.opt-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.opt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
a.step-option h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1rem; }
.opt-arrow { font-size: 0.85rem; color: var(--gold); opacity: 0; transition: opacity 0.18s, transform 0.18s; }
a.step-option p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }
.step-callout { background: linear-gradient(135deg, #f4f0e4, var(--cream)); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 1rem 1.2rem; margin-top: 1.2rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.step-callout strong { color: var(--green-deep); }
.step-callout a { color: var(--green-deep); font-weight: 700; }
.urgency-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff0f0; border: 1.5px solid var(--urgent); color: var(--urgent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.3rem 0.9rem; border-radius: 20px; margin-top: 1.2rem; }
.closing-cta { background: linear-gradient(135deg, var(--green-deep), #1a3010); text-align: center; padding: 5rem 2rem; }
.closing-cta .section-label { color: var(--gold-light); }
.closing-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.closing-cta p { color: rgba(253,246,227,0.75); max-width: 460px; margin: 0 auto 2rem; line-height: 1.8; }

/* ============================================================
   NEWS / BLOG ROLL PAGE
   ============================================================ */
.filter-bar { background: var(--warm-white); border-bottom: 2px solid #e8e0ce; padding: 0; position: sticky; top: 63px; z-index: 40; }
.filter-bar-inner { max-width: 1080px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 0; overflow-x: auto; }
.filter-btn { padding: 0.85rem 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; font-family: 'Lato', sans-serif; transition: color 0.2s, border-color 0.2s; }
.filter-btn:hover, .filter-btn.active { color: var(--green-deep); border-bottom-color: var(--gold); }
.filter-sep { display: flex; align-items: center; padding: 0 0.5rem; color: #c8bea8; font-size: 0.9rem; flex-shrink: 0; }
.sort-btn { padding: 0.85rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; font-family: 'Lato', sans-serif; transition: color 0.2s, border-color 0.2s; }
.sort-btn:hover, .sort-btn.active { color: var(--green-deep); border-bottom-color: var(--gold-light); }
.featured-section { padding: 3.5rem 2rem 0; }
.featured-article { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 40px rgba(42,31,14,0.12); background: var(--cream); transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; }
.featured-article:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(42,31,14,0.16); }
.featured-img { min-height: 380px; overflow: hidden; position: relative; }
.featured-img .img-box { height: 100%; min-height: 380px; }
.featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-eyebrow { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.featured-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.cat-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 20px; }
.cat-badge.news         { color: var(--green-deep); background: rgba(122,182,72,0.12); border: 1.5px solid rgba(122,182,72,0.3); }
.cat-badge.update       { color: #1a3a6b;           background: rgba(26,58,107,0.1);   border: 1.5px solid rgba(26,58,107,0.25); }
.cat-badge.story        { color: var(--brown);       background: rgba(196,145,90,0.12); border: 1.5px solid rgba(196,145,90,0.35); }
.cat-badge.announcement { color: var(--urgent);      background: rgba(184,50,50,0.08);  border: 1.5px solid rgba(184,50,50,0.2); }
.featured-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--green-deep); line-height: 1.2; margin-bottom: 0.8rem; }
.featured-body h2 em { color: var(--gold); font-style: italic; }
.featured-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.featured-meta { font-size: 0.78rem; color: var(--text-light); display: flex; gap: 1rem; flex-wrap: wrap; }
.featured-read-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green-deep); font-weight: 700; font-size: 0.88rem; margin-top: 1.2rem; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; width: fit-content; transition: color 0.2s; }
.articles-section { padding: 3.5rem 2rem 5rem; }
.articles-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.article-card { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; }
.article-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(42,31,14,0.1); }

/* Coming Soon articles */
.article-card.coming-soon,
.featured-article.coming-soon { pointer-events: none; cursor: default; position: relative; }
.article-card.coming-soon .article-card-img,
.featured-article.coming-soon .featured-img { filter: grayscale(0.6) brightness(0.85); }
.article-card.coming-soon .article-card-body,
.featured-article.coming-soon .featured-body { opacity: 0.45; }
.article-card.coming-soon::after,
.featured-article.coming-soon::after { content: 'Coming Soon'; position: absolute; top: 1rem; right: 1rem; background: var(--green-deep); color: var(--gold-light); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 0.9rem; border-radius: 20px; z-index: 2; pointer-events: none; }
.article-card-img { height: 190px; overflow: hidden; flex-shrink: 0; }
.article-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-cat-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.card-date { font-size: 0.72rem; color: var(--text-light); }
.article-card-body h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.05rem; line-height: 1.35; margin-bottom: 0.5rem; flex: 1; }
.article-card-body h3 em { color: var(--gold); font-style: italic; }
.article-card-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid #e8e0ce; margin-top: auto; }
.card-author { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.card-author-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--green-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.card-read { font-size: 0.72rem; color: var(--text-light); }
.load-more-wrap { text-align: center; padding: 0 2rem 4rem; }
.btn-load-more { display: inline-block; background: transparent; border: 2px solid #d0c8b8; border-radius: 40px; padding: 0.8rem 2.2rem; font-size: 0.88rem; font-weight: 700; color: var(--text-light); cursor: pointer; font-family: 'Lato', sans-serif; transition: border-color 0.2s, color 0.2s; }
.btn-load-more:hover { border-color: var(--gold); color: var(--green-deep); }
.newsletter-strip { background: var(--green-deep); padding: 4rem 2rem; text-align: center; }
.newsletter-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--cream); margin-bottom: 0.6rem; }
.newsletter-strip p { color: rgba(253,246,227,0.72); max-width: 460px; margin: 0 auto 1.8rem; line-height: 1.8; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter-input { flex: 1; min-width: 220px; padding: 0.8rem 1.2rem; border-radius: 40px; border: none; font-family: 'Lato', sans-serif; font-size: 0.9rem; outline: none; background: rgba(255,255,255,0.95); color: var(--text); }
.newsletter-input::box { color: var(--text-light); }
.newsletter-submit { background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 0.9rem; padding: 0.8rem 1.8rem; border-radius: 40px; border: none; cursor: pointer; font-family: 'Lato', sans-serif; transition: transform 0.15s; }
.newsletter-submit:hover { transform: translateY(-2px); }

/* ============================================================
   ARTICLE TEMPLATE PAGE
   ============================================================ */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 2rem 6rem; }
.breadcrumb { padding: 1.4rem 2rem; max-width: 740px; margin: 0 auto; font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text); }
.article-header { margin-bottom: 2.5rem; }
.article-category { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 20px; margin-bottom: 1rem; }
.article-category.news     { color: var(--green-deep); background: rgba(122,182,72,0.12); border: 1.5px solid rgba(122,182,72,0.3); }
.article-category.update   { color: #1a3a6b; background: rgba(26,58,107,0.1);   border: 1.5px solid rgba(26,58,107,0.25); }
.article-category.story    { color: var(--brown);      background: rgba(196,145,90,0.12); border: 1.5px solid rgba(196,145,90,0.35); }
.article-category.announcement { color: var(--urgent); background: rgba(184,50,50,0.08);  border: 1.5px solid rgba(184,50,50,0.2); }
.article-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); color: var(--green-deep); line-height: 1.15; margin-bottom: 1rem; }
.article-header h1 em { color: var(--gold); font-style: italic; }
.article-standfirst { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; font-weight: 300; border-left: 3px solid var(--gold); padding-left: 1.2rem; margin-bottom: 1.5rem; }
.article-meta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding: 1rem 0; border-top: 1px solid #e8e0ce; border-bottom: 1px solid #e8e0ce; margin-bottom: 2.5rem; }
.meta-author { display: flex; align-items: center; gap: 0.6rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-light); }
.meta-divider { width: 1px; height: 28px; background: #e0d8c8; }
.meta-date, .meta-read { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.35rem; }
.article-hero-img { width: 100%; aspect-ratio: 16 / 7; border-radius: 20px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: 0 8px 36px rgba(42,31,14,0.12); }
.article-body { font-size: 1rem; line-height: 1.9; color: var(--text); }
.article-body p { margin-bottom: 1.4rem; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--green-deep); margin: 2.5rem 0 0.8rem; line-height: 1.2; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-deep); margin: 2rem 0 0.6rem; }
.article-body a { color: var(--green-deep); font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.article-body a:hover { color: var(--green-mid); }
.article-body strong { color: var(--text); font-weight: 700; }
.pull-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.35rem; color: var(--green-deep); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: 1.4rem 0; margin: 2.5rem 0; line-height: 1.55; text-align: center; }
.pull-quote cite { display: block; font-family: 'Lato', sans-serif; font-style: normal; font-size: 0.8rem; color: var(--text-light); margin-top: 0.6rem; letter-spacing: 0.05em; }
.article-img { width: 100%; border-radius: 14px; overflow: hidden; margin: 2rem 0 0.5rem; }
.article-img-caption { font-size: 0.78rem; color: var(--text-light); text-align: center; font-style: italic; margin-bottom: 2rem; }
.article-callout { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; padding: 1.2rem 1.4rem; margin: 2rem 0; font-size: 0.93rem; color: var(--text-light); line-height: 1.75; }
.article-callout strong { color: var(--text); }
.article-callout.highlight { background: linear-gradient(135deg, rgba(45,74,30,0.06), rgba(122,182,72,0.06)); border-color: var(--green-mid); }
.article-facts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.article-fact { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 30px; padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 700; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #e8e0ce; }
.article-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--cream); border: 1.5px solid #ddd5be; color: var(--text-light); padding: 0.3rem 0.9rem; border-radius: 20px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.article-tag:hover { border-color: var(--gold); color: var(--green-deep); }
.share-bar { display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem; padding: 1.2rem 1.4rem; background: var(--cream); border-radius: 14px; flex-wrap: wrap; }
.share-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-right: 0.4rem; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 20px; text-decoration: none; border: 1.5px solid #d8d0c0; color: var(--text-light); background: var(--warm-white); transition: border-color 0.2s, color 0.2s; cursor: pointer; font-family: 'Lato', sans-serif; }
.share-btn:hover { border-color: var(--gold); color: var(--green-deep); }
.author-bio { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 20px; padding: 1.8rem; margin-top: 3rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.author-bio-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.author-bio-text h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.05rem; margin-bottom: 0.2rem; }
.author-bio-text .bio-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.author-bio-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.related-section { background: var(--cream); padding: 4rem 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2rem; max-width: 740px; margin-left: auto; margin-right: auto; }
.related-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; }
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,31,14,0.09); }
.related-card-img { height: 140px; overflow: hidden; }
.related-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.related-card-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.related-card-body h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.97rem; line-height: 1.35; margin-bottom: 0.3rem; }
.related-card-body .rc-date { font-size: 0.75rem; color: var(--text-light); }
.article-cta-strip { background: linear-gradient(135deg, var(--green-deep), #1a3010); padding: 3.5rem 2rem; text-align: center; }
.article-cta-strip h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--cream); margin-bottom: 0.6rem; }
.article-cta-strip p { color: rgba(253,246,227,0.72); max-width: 420px; margin: 0 auto 1.6rem; line-height: 1.8; font-size: 0.93rem; }
.article-cta-strip .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PLAYER HUB PAGE
   ============================================================ */
.hub-status-bar {
  background: var(--green-deep); padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; font-size: 0.78rem; font-weight: 700;
  color: rgba(253,246,227,0.8); flex-wrap: wrap; text-align: center;
}
.hub-status-bar .status-item { display: flex; align-items: center; gap: 0.4rem; }
.hub-status-bar .status-divider { color: rgba(255,255,255,0.2); }
.hub-status-bar a { color: var(--gold-light); text-decoration: none; }
.hub-status-bar a:hover { text-decoration: underline; }
.hub-hero {
  background: linear-gradient(160deg, var(--green-deep), #1e3a10);
  padding: 3rem 2rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.hub-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(200,155,60,0.07), transparent 70%); pointer-events: none; }
.hub-hero .inner { position: relative; z-index: 1; }
.hub-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); color: #fff; line-height: 1.1; margin-bottom: 0.6rem; }
.hub-hero h1 em { color: var(--gold-light); font-style: italic; }
.hub-hero p { color: rgba(253,246,227,0.72); font-size: 0.97rem; max-width: 520px; margin: 0 auto 1.4rem; line-height: 1.75; }
.hub-last-updated { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 30px; padding: 0.3rem 1rem; font-size: 0.75rem; color: rgba(253,246,227,0.55); font-weight: 700; letter-spacing: 0.05em; }
.hub-layout { max-width: 1080px; margin: 0 auto; padding: 2.5rem 2rem 5rem; display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.hub-section { margin-bottom: 2.5rem; }
.hub-section-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.8rem; border-bottom: 2px solid #e0d8c8; margin-bottom: 1.2rem; }
.hub-section-title { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.hub-section-link { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-decoration: none; white-space: nowrap; }
.hub-section-link:hover { color: var(--green-deep); }
.hub-action-card { background: #fff8f0; border: 2px solid var(--urgent); border-radius: 16px; padding: 1.2rem 1.4rem; margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 1rem; }
.hub-action-card.done { border-color: #b8d9a0; background: #f4fbf0; }
.hub-action-icon { font-size: 1.5rem; flex-shrink: 0; }
.hub-action-body { flex: 1; }
.hub-action-body h4 { font-family: 'Playfair Display', serif; color: var(--text); font-size: 1rem; margin-bottom: 0.25rem; }
.hub-action-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.6rem; }
.hub-action-deadline { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--urgent); margin-bottom: 0.5rem; }
.hub-action-card.done .hub-action-deadline { color: var(--green-mid); }
.hub-action-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 20px; text-decoration: none; background: var(--urgent); color: #fff; transition: opacity 0.2s; }
.hub-action-btn:hover { opacity: 0.88; }
.hub-action-card.done .hub-action-btn { background: var(--green-mid); }
.hub-update-list { display: flex; flex-direction: column; gap: 0.7rem; }
.hub-update-item { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 14px; padding: 1rem 1.2rem; text-decoration: none; color: inherit; display: flex; align-items: flex-start; gap: 1rem; transition: border-color 0.2s, transform 0.15s; }
.hub-update-item:hover { border-color: var(--gold); transform: translateX(3px); }
.hub-update-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.hub-update-meta { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.hub-update-item h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.97rem; line-height: 1.35; margin-bottom: 0.2rem; }
.hub-update-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }
.hub-update-date { font-size: 0.72rem; color: var(--text-light); margin-top: 0.3rem; }
.hub-new-badge { display: inline-block; background: var(--urgent); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 20px; margin-left: 0.4rem; vertical-align: middle; }
.hub-stream-list { display: flex; flex-direction: column; gap: 0.8rem; }
.hub-stream-card { background: #1a1208; border: 1.5px solid rgba(200,155,60,0.2); border-radius: 14px; overflow: hidden; text-decoration: none; display: flex; align-items: center; transition: border-color 0.2s; }
.hub-stream-card:hover { border-color: var(--gold); }
.hub-stream-thumb { width: 120px; min-width: 120px; height: 80px; background: #251a0c; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; position: relative; flex-shrink: 0; }
.hub-stream-thumb .play { font-size: 0.9rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hub-stream-thumb .play span { width: 32px; height: 32px; background: rgba(200,155,60,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; padding-left: 2px; }
.hub-stream-info { padding: 0.8rem 1rem; }
.hub-stream-type { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.hub-stream-info h4 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 0.9rem; line-height: 1.35; margin-bottom: 0.15rem; }
.hub-stream-date { font-size: 0.72rem; color: rgba(253,246,227,0.4); }
.hub-live-badge { display: inline-flex; align-items: center; gap: 0.3rem; background: var(--urgent); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.15rem 0.6rem; border-radius: 20px; margin-left: 0.4rem; }
.hub-live-badge::before { content: '●'; font-size: 0.55rem; }
.hub-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.hub-sidebar-card { background: var(--cream); border: 1.5px solid #e0d8c8; border-radius: 18px; overflow: hidden; }
.hub-sidebar-card-head { background: var(--green-deep); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.hub-sidebar-card-head h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; }
.hub-sidebar-card-head .sc-icon { font-size: 1.2rem; }
.hub-sidebar-card-body { padding: 1.2rem; }
.hub-key-dates { display: flex; flex-direction: column; gap: 0.7rem; }
.hub-date-item { display: flex; align-items: flex-start; gap: 0.8rem; padding-bottom: 0.7rem; border-bottom: 1px solid #ede6d6; }
.hub-date-item:last-child { border-bottom: none; padding-bottom: 0; }
.hub-date-bubble { background: var(--green-deep); color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 0.78rem; font-weight: 700; padding: 0.4rem 0.6rem; border-radius: 10px; text-align: center; min-width: 44px; line-height: 1.2; flex-shrink: 0; }
.hub-date-bubble .day { font-size: 1.1rem; display: block; }
.hub-date-item h5 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.88rem; margin-bottom: 0.15rem; }
.hub-date-item p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.hub-hangouts { display: flex; flex-direction: column; gap: 0.7rem; }
.hub-hangout-item { display: flex; align-items: flex-start; gap: 0.7rem; padding-bottom: 0.7rem; border-bottom: 1px solid #ede6d6; text-decoration: none; color: inherit; transition: opacity 0.2s; }
.hub-hangout-item:last-child { border-bottom: none; padding-bottom: 0; }
.hub-hangout-item:hover { opacity: 0.8; }
.hub-hangout-platform { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.hub-hangout-item h5 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.88rem; margin-bottom: 0.1rem; }
.hub-hangout-item p { font-size: 0.76rem; color: var(--text-light); line-height: 1.4; }
.hub-hangout-time { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
.hub-quick-links { display: flex; flex-direction: column; gap: 0.4rem; }
.hub-quick-link { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0.8rem; background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 10px; text-decoration: none; color: var(--text); font-size: 0.85rem; font-weight: 700; transition: border-color 0.18s, transform 0.15s; }
.hub-quick-link:hover { border-color: var(--gold); transform: translateX(2px); }
.hub-quick-link .ql-arrow { color: var(--gold); font-size: 0.8rem; }
.hub-article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hub-article-card { background: var(--warm-white); border: 1.5px solid #e0d8c8; border-radius: 14px; padding: 1.2rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 0.4rem; transition: border-color 0.2s, transform 0.15s; }
.hub-article-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.hub-article-card .ha-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.hub-article-card h4 { font-family: 'Playfair Display', serif; color: var(--green-deep); font-size: 0.93rem; line-height: 1.35; }
.hub-article-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.hub-article-card .ha-meta { font-size: 0.72rem; color: var(--text-light); margin-top: auto; padding-top: 0.4rem; }
.hub-form-card { background: linear-gradient(135deg, var(--green-deep), #1e3a10); border-radius: 16px; padding: 1.4rem; text-align: center; }
.hub-form-card .hf-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hub-form-card h4 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.05rem; margin-bottom: 0.4rem; }
.hub-form-card p { font-size: 0.82rem; color: rgba(253,246,227,0.7); line-height: 1.55; margin-bottom: 1rem; }
.hub-form-btn { display: inline-block; background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 0.85rem; padding: 0.6rem 1.4rem; border-radius: 30px; text-decoration: none; transition: transform 0.15s; }
.hub-form-btn:hover { transform: translateY(-1px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-mee { flex-direction: column; }
  body.page-home nav { padding: 0.85rem 1.5rem; }
  body.page-home nav.scrolled { padding: 0.5rem 1.5rem; }
  nav { padding: 0.9rem 1.5rem; }
  .pitch-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pitch-img-wrap { height: 300px; }
  .home-loc-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .prog-card.featured { grid-column: span 2; }
  .faq-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-ticket-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-img { min-height: 240px; }
  .featured-img .img-box { min-height: 240px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .immersive-grid, .immersive-grid.flip { grid-template-columns: 1fr; direction: ltr; }
  .food-grid { grid-template-columns: 1fr; }
  .camping-grid { grid-template-columns: 1fr; }
  .loc-cards { grid-template-columns: 1fr; }
  .hike-feature { grid-template-columns: 1fr; }
  .hike-img { min-height: 200px; }
  .farthings-grid { grid-template-columns: repeat(2, 1fr); }
  .us-single-card { grid-template-columns: 1fr; }
  .current-batch .inner { grid-template-columns: 1fr; text-align: center; }
  .current-batch .cb-desc { margin-left: auto; margin-right: auto; }
  .current-batch .includes-pills { justify-content: center; }
  .current-batch .btn-buy-uk { display: block; width: 100%; box-sizing: border-box; max-width: 100%; text-align: center; padding: 1rem 1.5rem; font-size: 0.95rem; }
  .current-batch .external-note { text-align: center; }
  .cb-price-block { margin: 0 auto 1rem; max-width: 280px; }
  .crew-row { grid-template-columns: 1fr; }
  .hub-layout { grid-template-columns: 1fr; }
  .hub-sidebar { order: -1; }
  .hub-article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .overview-strip { padding: 2rem 0; }
  .overview-strip .container { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 1.5rem; }
  .overview-strip .container::-webkit-scrollbar { display: none; }
  .overview-grid { grid-template-columns: repeat(6, 120px); overflow: visible; border-radius: 0; }

  /* Hide urgency banner on mobile */
  .urgency-banner { display: none; }

  /* Reset homepage body padding since the fixed banner is gone */
  body.page-home { padding-top: 0; }

  /* Revert homepage nav to sticky so it flows normally without needing
     a manual top offset — no more gap caused by top: 36px with no banner */
  body.page-home nav {
    position: sticky;
    top: 0;
    padding: 0.85rem 1.2rem;
  }
  body.page-home nav.scrolled {
    padding: 0.6rem 1.2rem;
  }

  /* Show hamburger button, hide desktop nav links */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }

  nav { padding: 0.85rem 1.2rem; }
  nav.scrolled { padding: 0.6rem 1.2rem; }

  /* Hero: replace the desktop calc(36px + 66px) offset with just
     enough clearance for the mobile nav height alone */
  .hero {
    padding-top: 70px;
    min-height: 100svh;
  }

  .hero-video { display: none; }
  .hero-video-fallback { display: block; }
}

@media (max-width: 600px) {
  nav { padding: 0.7rem 1rem; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .current-batch { padding: 1.5rem; }
  .current-batch h3 { font-size: 1.4rem; }
  .cb-price { font-size: 2.4rem; }
  .junior-ticket-inner { flex-direction: column; text-align: center; }
  .junior-ticket-price { width: 100%; }
  .junior-ticket-inner .btn-buy-uk { display: block !important; width: 100% !important; box-sizing: border-box; max-width: 100% !important; text-align: center !important; padding: 0.85rem 1rem !important; font-size: 0.9rem !important; }
  .uk-waitlist-cta { text-align: center; }
  .btn-waitlist { display: block; width: 100%; box-sizing: border-box; max-width: 100%; text-align: center; padding-left: 1rem; padding-right: 1rem; font-size: 0.85rem; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .home-video-grid { grid-template-columns: 1fr; }
  .pitch-pillars { grid-template-columns: 1fr; }
  .faq-guides { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 0 1.2rem 4rem; }
  .breadcrumb { padding: 1.2rem 1.2rem; }
  .pull-quote { font-size: 1.15rem; }
  .author-bio { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: 0.8rem; }
}