/* =========================================================
   MAPLE EVENT HUB — style.css
   ========================================================= */

/* ----- CSS Variables ----- */
:root {
  --maple-red:      #C0392B;
  --maple-red-dark: #9B2E22;
  --maple-red-light:#D9534F;
  --deep-navy:      #1A253F;
  --navy-mid:       #243253;
  --navy-light:     #2E3F66;
  --soft-cream:     #F5F0E8;
  --cream-dark:     #EDE6D8;
  --warm-taupe:     #9E8E7A;
  --taupe-light:    #BFB3A4;
  --taupe-dark:     #7A6B59;
  --evergreen:      #3D6B5A;
  --evergreen-dark: #2C4F42;
  --evergreen-light:#4E8472;
  --brushed-gold:   #C9A84C;
  --gold-light:     #DFC06E;
  --gold-dark:      #A8863A;
  --white:          #FFFFFF;
  --off-white:      #FAF8F4;
  --dark:           #0F1622;
  --body-text:      #2D2D2D;
  --muted-text:     #6B6359;
  --border:         #DDD6CC;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 64px rgba(0,0,0,.18);

  --transition: 0.28s ease;
  --transition-slow: 0.5s ease;

  --header-height: 76px;
  --max-width: 1240px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--deep-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p { line-height: 1.75; color: var(--body-text); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted-text);
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brushed-gold);
}

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

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }

.section { padding: var(--space-16) 0; }
.section-md { padding: var(--space-12) 0; }
.section-sm { padding: var(--space-8) 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-2   { gap: var(--space-2); }
.flex-gap-3   { gap: var(--space-3); }
.flex-wrap    { flex-wrap: wrap; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--maple-red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(192,57,43,.3);
}
.btn-primary:hover {
  background: var(--maple-red-dark);
  box-shadow: 0 4px 20px rgba(192,57,43,.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}

.btn-outline {
  background: transparent;
  color: var(--maple-red);
  border: 2px solid var(--maple-red);
}
.btn-outline:hover {
  background: var(--maple-red);
  color: var(--white);
}

.btn-navy {
  background: var(--deep-navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--brushed-gold);
  color: var(--deep-navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ----- Divider / Accent line ----- */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--maple-red);
  margin-bottom: var(--space-3);
}

.accent-line-gold {
  width: 48px;
  height: 3px;
  background: var(--brushed-gold);
  margin-bottom: var(--space-3);
}

.accent-line-center { margin-inline: auto; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--deep-navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--maple-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--brushed-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--deep-navy);
  padding: var(--space-4);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 899;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-list a:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.mobile-nav-cta {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.1);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 22, 34, 0.75), rgba(15, 22, 34, 0.75)),
    url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: var(--space-12);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}

.hero-tag {
  padding: 0.3rem 0.85rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brushed-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-headline {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.hero-headline em {
  font-style: normal;
  color: var(--brushed-gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  backdrop-filter: blur(10px);
}

.hero-card-main {
  position: relative;
  z-index: 3;
}

.hero-card-back {
  position: absolute;
  top: -16px;
  right: -16px;
  left: 16px;
  bottom: 16px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brushed-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.hero-stat {
  text-align: center;
  padding: var(--space-2);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero-experience-row {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.hero-exp-chip {
  padding: 0.35rem 0.75rem;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  margin-bottom: var(--space-8);
}

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* =========================================================
   WHY THIS WORKS
   ========================================================= */
.why-section {
  background: var(--soft-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.why-left .big-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.why-left .big-statement em {
  font-style: normal;
  color: var(--maple-red);
}

.why-promise {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--deep-navy);
  border-radius: var(--radius);
  margin-top: var(--space-4);
}

.why-promise-icon {
  width: 36px;
  height: 36px;
  background: var(--brushed-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-promise-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--deep-navy);
}

.why-promise-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

.why-right-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--maple-red);
}

.why-right-box h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-2);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.why-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--brushed-gold);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.why-feature p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

.why-feature strong {
  color: var(--deep-navy);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* =========================================================
   EXPERIENCE MODULES
   ========================================================= */
.experiences-section {
  background: var(--white);
  padding-bottom: 0;
}

/* Module 1: Split feature (Poker) */
.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.exp-split-img {
  position: relative;
  overflow: hidden;
  background: var(--deep-navy);
}

.exp-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-slow);
}

.exp-split-img:hover img { transform: scale(1.04); }

.exp-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--white));
}

.exp-split-content {
  padding: var(--space-12) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-3);
}

.exp-tag {
  padding: 0.25rem 0.65rem;
  background: var(--cream-dark);
  border-radius: 3px;
  font-size: 0.75rem;
  color: var(--muted-text);
  font-weight: 500;
}

/* Module 2: Editorial panel (Blackjack) */
.exp-editorial {
  background: var(--deep-navy);
  padding: var(--space-12) 0;
}

.exp-editorial-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
}

.exp-editorial-text h2,
.exp-editorial-text h3 {
  color: var(--white);
}

.exp-editorial-text p {
  color: rgba(255,255,255,.72);
}

.exp-editorial-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-editorial-panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.exp-panel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,37,63,.95));
  padding: var(--space-4) var(--space-3) var(--space-3);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.exp-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--brushed-gold);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

/* Module 3: Wide visual band (Roulette) */
.exp-wide-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.exp-wide-band-img {
  position: absolute;
  inset: 0;
}

.exp-wide-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.exp-wide-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,22,34,.95) 0%, rgba(26,37,63,.8) 50%, transparent 100%);
}

.exp-wide-band-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: var(--space-12) 0;
}

.exp-wide-band-content h2 {
  color: var(--white);
}

.exp-wide-band-content p {
  color: rgba(255,255,255,.75);
}

.exp-wide-metrics {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.exp-wide-metric {
  text-align: center;
}

.exp-wide-metric-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brushed-gold);
  line-height: 1;
}

.exp-wide-metric-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Module 4: Stacked detail card (Dice) */
.exp-stacked {
  background: var(--soft-cream);
  padding: var(--space-12) 0;
}

.exp-stacked-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-8);
  align-items: start;
}

.exp-stacked-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exp-stacked-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.exp-detail-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.exp-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  border-left: 4px solid var(--maple-red);
  box-shadow: var(--shadow-sm);
}

.exp-detail-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
}

.exp-detail-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.55;
}

.exp-detail-card:nth-child(2) { border-left-color: var(--brushed-gold); }
.exp-detail-card:nth-child(3) { border-left-color: var(--evergreen); }
.exp-detail-card:nth-child(4) { border-left-color: var(--navy-light); }

/* =========================================================
   TESTIMONIALS (inline)
   ========================================================= */
.testimonial-strip {
  padding: var(--space-6) 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--brushed-gold);
  line-height: 1;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--deep-navy);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--warm-taupe);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-2);
}

.testimonial-star {
  width: 14px;
  height: 14px;
  fill: var(--brushed-gold);
}

/* Center single testimonial */
.testimonial-centered {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-centered .testimonial-author {
  justify-content: center;
}

.testimonial-centered::before {
  left: 50%;
  transform: translateX(-50%);
}

/* =========================================================
   EVENT TYPES SECTION
   ========================================================= */
.event-types-section {
  background: var(--off-white);
}

/* Large text-led block */
.event-type-hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  background: var(--deep-navy);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.event-type-hero-block h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.event-type-hero-block p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}

.event-type-hero-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 3px;
  font-size: 0.75rem;
  color: var(--brushed-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

/* Split visual/content */
.event-type-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.event-type-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-end;
}

.event-type-visual-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--evergreen-dark) 0%, var(--deep-navy) 100%);
}

.event-type-visual-card-content {
  position: relative;
  z-index: 2;
  padding: var(--space-4);
  color: var(--white);
}

.event-type-visual-card-content h3 { color: var(--white); }
.event-type-visual-card-content p  { color: rgba(255,255,255,.72); font-size: 0.9rem; }

.event-type-content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.event-type-content-card h3 { margin-bottom: var(--space-2); }
.event-type-content-card p  { font-size: 0.95rem; color: var(--muted-text); }

/* Comparison band */
.event-type-band {
  background: var(--evergreen-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.event-type-band h3 { color: var(--white); }
.event-type-band p  { color: rgba(255,255,255,.72); font-size: 0.9rem; max-width: 400px; }

/* Tile group */
.event-type-tile-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.event-type-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.event-type-tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.event-type-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--soft-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.event-type-tile h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.event-type-tile p  { font-size: 0.85rem; color: var(--muted-text); }

/* =========================================================
   WHAT GUESTS NOTICE
   ========================================================= */
.guests-notice-section {
  background: var(--deep-navy);
}

.guests-notice-section h2 { color: var(--white); }
.guests-notice-section .lead { color: rgba(255,255,255,.65); }

.guests-notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.notice-item {
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: background var(--transition), border-color var(--transition);
}

.notice-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.3);
}

.notice-item-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,.25);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.notice-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: var(--space-1);
}

.notice-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* =========================================================
   PLANNING PATHWAY
   ========================================================= */
.planning-section {
  background: var(--soft-cream);
}

.planning-rail {
  position: relative;
  padding: var(--space-4) 0;
}

.planning-rail::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.planning-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.planning-step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  position: relative;
}

.planning-step-marker {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--maple-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.planning-step:hover .planning-step-marker {
  background: var(--maple-red);
  box-shadow: 0 0 0 6px rgba(192,57,43,.15);
}

.planning-step:hover .planning-step-marker svg { fill: var(--white); }

.planning-step-marker svg {
  width: 24px;
  height: 24px;
  fill: var(--maple-red);
  transition: fill var(--transition);
}

.planning-step-content {
  flex: 1;
  padding-top: 0.85rem;
}

.planning-step-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-1);
}

.planning-step-content p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

.planning-step-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--deep-navy);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

/* =========================================================
   PACKAGES
   ========================================================= */
.packages-section {
  background: var(--white);
}

.packages-comparison-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--deep-navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.strip-label {
  padding: var(--space-3) var(--space-4);
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
}

.strip-pkg {
  padding: var(--space-3) var(--space-2);
  text-align: center;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-pkg.popular {
  background: var(--maple-red);
  color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.package-card {
  padding: var(--space-6);
  border-right: 1px solid var(--border);
  transition: transform var(--transition);
}

.package-card:last-child { border-right: none; }

.package-card.featured {
  background: var(--deep-navy);
  transform: scaleY(1.01);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.package-card.featured .package-name { color: var(--white); }

.package-tagline {
  font-size: 0.875rem;
  color: var(--warm-taupe);
  margin-bottom: var(--space-4);
}

.package-card.featured .package-tagline { color: rgba(255,255,255,.6); }

.package-popular-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--maple-red);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.package-feature-check {
  width: 16px;
  height: 16px;
  background: var(--evergreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.package-feature-check svg {
  width: 9px;
  height: 9px;
  fill: var(--white);
}

.package-card.featured .package-feature { color: rgba(255,255,255,.8); }

.package-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--soft-cream);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
}

.package-card.featured .package-specs {
  background: rgba(255,255,255,.08);
}

.package-spec { text-align: center; }

.package-spec-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
}

.package-card.featured .package-spec-val { color: var(--white); }

.package-spec-lbl {
  font-size: 0.7rem;
  color: var(--warm-taupe);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-card.featured .package-spec-lbl { color: rgba(255,255,255,.5); }

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.final-cta-section {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-mid) 50%, #1A2B4A 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 { color: var(--white); }
.final-cta-section p  { color: rgba(255,255,255,.72); }

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.final-cta-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}

.final-cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.02em;
}

.form-label-light { color: rgba(255,255,255,.8); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--maple-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--maple-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.form-error-msg {
  font-size: 0.78rem;
  color: var(--maple-red);
  display: none;
}

.form-error-msg.visible { display: block; }

.form-input-dark,
.form-select-dark,
.form-textarea-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}

.form-input-dark::placeholder { color: rgba(255,255,255,.35); }
.form-input-dark:focus,
.form-select-dark:focus,
.form-textarea-dark:focus {
  border-color: var(--brushed-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.form-select-dark option { background: var(--deep-navy); color: var(--white); }

.form-textarea { resize: vertical; min-height: 110px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  padding: var(--space-12) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-top: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  margin-top: var(--space-2);
}

.footer-contact-item a:hover { color: var(--brushed-gold); }

.footer-nav-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-3);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-nav-list a:hover { color: var(--white); }

.footer-regions {
  margin-top: var(--space-3);
}

.footer-region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-2);
}

.footer-region-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-3);
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

/* =========================================================
   COOKIE CONSENT
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid var(--maple-red);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 32px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  flex: 1;
  min-width: 260px;
}

.cookie-text a {
  color: var(--brushed-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */
.page-hero {
  background: var(--deep-navy);
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 40%, rgba(61,107,90,.08) 0%, transparent 50%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--space-3);
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover { color: var(--white); }

.page-hero-breadcrumb span { color: rgba(255,255,255,.25); }

/* =========================================================
   ACCORDION
   ========================================================= */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--soft-cream); }

.accordion-trigger.open { background: var(--soft-cream); }

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger.open .accordion-icon { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: var(--space-4);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.accordion-body.open { display: block; }

.accordion-body p {
  font-size: 0.92rem;
  color: var(--muted-text);
  line-height: 1.7;
}

/* =========================================================
   EXPERIENCES PAGE
   ========================================================= */
.exp-page-section {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border);
}

.exp-page-section:last-child { border-bottom: none; }

.exp-page-section:nth-child(even) { background: var(--soft-cream); }

.exp-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}

.exp-page-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-page-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.exp-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.exp-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--soft-cream);
  border-radius: var(--radius);
}

.exp-info-item strong {
  font-size: 0.82rem;
  color: var(--deep-navy);
  min-width: 90px;
  flex-shrink: 0;
}

.exp-info-item span {
  font-size: 0.88rem;
  color: var(--muted-text);
}

/* =========================================================
   EVENT TYPES PAGE
   ========================================================= */
.event-type-page-section {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border);
}

.event-type-page-section:nth-child(even) { background: var(--soft-cream); }

.event-type-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.event-type-detail-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-4);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.event-type-detail-box h4 {
  font-size: 0.85rem;
  color: var(--maple-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.event-type-detail-box p,
.event-type-detail-box li {
  font-size: 0.88rem;
  color: var(--muted-text);
}

.event-type-detail-box li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.event-type-detail-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  background: var(--brushed-gold);
  border-radius: 50%;
}

.event-type-detail-boxes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* =========================================================
   PACKAGES PAGE
   ========================================================= */
.packages-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.package-full-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.package-full-card.featured-card {
  border-color: var(--maple-red);
  box-shadow: 0 0 0 2px var(--maple-red), var(--shadow-xl);
}

.package-full-header {
  padding: var(--space-6);
  background: var(--deep-navy);
  color: var(--white);
  position: relative;
}

.package-full-card.featured-card .package-full-header {
  background: var(--maple-red);
}

.package-full-header h2 {
  color: var(--white);
  font-size: 1.6rem;
}

.package-full-header p { color: rgba(255,255,255,.7); font-size: 0.92rem; }

.package-full-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--brushed-gold);
  color: var(--deep-navy);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-full-body {
  padding: var(--space-6);
  background: var(--white);
}

.package-full-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--soft-cream);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
}

.package-full-spec {
  text-align: center;
  padding: var(--space-2);
}

.package-full-spec-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-navy);
  display: block;
}

.package-full-spec-lbl {
  font-size: 0.72rem;
  color: var(--warm-taupe);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-full-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-4);
}

.package-full-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--body-text);
}

.pfcheck {
  width: 18px;
  height: 18px;
  background: var(--evergreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pfcheck svg { width: 10px; height: 10px; fill: var(--white); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.philosophy-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.philosophy-card-icon {
  width: 52px;
  height: 52px;
  background: var(--soft-cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.philosophy-card-icon svg { width: 26px; height: 26px; fill: var(--maple-red); }

.philosophy-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.philosophy-card p  { font-size: 0.9rem; color: var(--muted-text); }

.team-style-block {
  background: var(--deep-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.team-style-block h2 { color: var(--white); }
.team-style-block p  { color: rgba(255,255,255,.7); }

.team-qualities {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.team-quality {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.team-quality-bullet {
  width: 24px;
  height: 24px;
  background: var(--brushed-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.team-quality-bullet svg { width: 13px; height: 13px; fill: var(--deep-navy); }

.team-quality-text strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.team-quality-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}

/* =========================================================
   EVENT GUIDE PAGE
   ========================================================= */
.guide-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.guide-quick-nav {
  background: var(--soft-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--header-height) + var(--space-4));
}

.guide-quick-nav h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-taupe);
  margin-bottom: var(--space-3);
}

.guide-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guide-nav-list a {
  font-size: 0.88rem;
  color: var(--muted-text);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  display: block;
}

.guide-nav-list a:hover {
  background: var(--white);
  color: var(--maple-red);
}

.guide-section {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.guide-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--soft-cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; fill: var(--maple-red); }

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-taupe);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--body-text);
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-content {
  max-width: 760px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--deep-navy);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--muted-text);
  margin-bottom: var(--space-3);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-3);
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.92rem;
  color: var(--muted-text);
  padding: 0.2rem 0;
}

.legal-last-updated {
  font-size: 0.82rem;
  color: var(--warm-taupe);
  margin-bottom: var(--space-6);
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.bg-navy    { background: var(--deep-navy); }
.bg-cream   { background: var(--soft-cream); }
.bg-white   { background: var(--white); }
.bg-dark    { background: var(--dark); }
.bg-evergreen { background: var(--evergreen-dark); }

.text-white { color: var(--white); }
.text-gold  { color: var(--brushed-gold); }
.text-red   { color: var(--maple-red); }
.text-muted { color: var(--muted-text); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow     { box-shadow: var(--shadow); }
.shadow-lg  { box-shadow: var(--shadow-lg); }

.overflow-hidden { overflow: hidden; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }

  .nav-list,
  .header-nav-cta { display: none; }

  .burger-btn { display: flex; }
  .mobile-nav { display: block; }

  .hero-container  { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }

  .why-grid        { grid-template-columns: 1fr; }
  .grid-2          { grid-template-columns: 1fr; }
  .grid-3          { grid-template-columns: 1fr 1fr; }
  .grid-4          { grid-template-columns: 1fr 1fr; }

  .exp-split              { grid-template-columns: 1fr; }
  .exp-split-img          { height: 280px; }
  .exp-split-img-overlay  { display: none; }
  .exp-split-content      { padding: var(--space-6) var(--space-4); }

  .exp-editorial-inner   { grid-template-columns: 1fr; }
  .exp-stacked-inner     { grid-template-columns: 1fr; }
  .exp-stacked-img img   { height: 280px; }

  .final-cta-inner       { grid-template-columns: 1fr; }
  .final-cta-form-row    { grid-template-columns: 1fr; }

  .packages-comparison-strip { display: none; }
  .packages-grid         { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .package-card          { border-right: none; border-bottom: 1px solid var(--border); }
  .package-card.featured { transform: none; }

  .event-type-hero-block { grid-template-columns: 1fr; }
  .event-type-split-row  { grid-template-columns: 1fr; }
  .event-type-tile-group { grid-template-columns: 1fr 1fr; }
  .event-type-band       { flex-direction: column; text-align: center; }

  .guests-notice-grid    { grid-template-columns: 1fr 1fr; }

  .exp-page-grid         { grid-template-columns: 1fr; }
  .event-type-page-grid  { grid-template-columns: 1fr; }
  .about-story           { grid-template-columns: 1fr; }
  .about-philosophy-grid { grid-template-columns: 1fr 1fr; }
  .team-style-block      { grid-template-columns: 1fr; }
  .guide-intro-grid      { grid-template-columns: 1fr; }
  .guide-quick-nav       { position: static; }
  .contact-page-grid     { grid-template-columns: 1fr; }
  .packages-full-grid    { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }

  .exp-wide-metrics      { flex-wrap: wrap; gap: var(--space-4); }
}

@media (max-width: 600px) {
  .section    { padding: var(--space-8) 0; }
  .section-md { padding: var(--space-8) 0; }

  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr; }

  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .guests-notice-grid    { grid-template-columns: 1fr; }
  .about-philosophy-grid { grid-template-columns: 1fr; }
  .event-type-tile-group { grid-template-columns: 1fr; }
  .final-cta-form-row    { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .footer-bottom         { flex-direction: column; text-align: center; }

  .packages-full-grid    { grid-template-columns: 1fr; }
}
