/* Grand View Event Center — Black, Metallic, Silver, White, Gold */
:root {
  /* Black */
  --black: #000000;
  --black-950: #0a0a0a;
  --black-900: #111111;
  --black-800: #1a1a1a;

  /* Metallic / Silver scale */
  --metal-dark: #2a2a2a;
  --metal: #404040;
  --metal-mid: #525252;
  --metal-light: #737373;
  --silver: #a3a3a3;
  --silver-light: #d4d4d4;
  --silver-pale: #e5e5e5;
  --chrome: #f5f5f5;
  --pearl: #fafafa;

  /* White */
  --white: #ffffff;
  --white-soft: #fafafa;
  --white-warm: #f8f8f6;

  /* Gold */
  --gold: #c5a059;
  --gold-bright: #d4af37;
  --gold-light: #e5c77a;
  --gold-dark: #b8860b;
  --gold-muted: rgba(197, 160, 89, 0.4);
  --link-overlay-gold: rgba(197, 160, 89, 0.22);
  --link-overlay-gold-hover: rgba(197, 160, 89, 0.36);

  /* Semantic (map to theme) */
  --bg-primary: var(--chrome);
  --bg-secondary: var(--black-900);
  --bg-metal: var(--metal);
  --bg-metal-light: var(--metal-mid);
  --accent-gold: var(--gold);
  --accent-gold-bright: var(--gold-bright);
  --accent-gold-dark: var(--gold-dark);
  --text-main: var(--black-950);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-dark: rgba(17, 17, 17, 0.9);

  --primary-950: var(--black-950);
  --primary-900: var(--black-900);
  --primary-800: var(--metal-dark);
  --primary-700: var(--metal);
  --primary-100: var(--silver-pale);
  --primary-50: var(--pearl);

  --fg-primary: var(--text-main);
  --border: rgba(0, 0, 0, 0.1);
  --border-gold: rgba(197, 160, 89, 0.4);
  --border-metal: rgba(163, 163, 163, 0.3);
  --accent: var(--gold);
  --accent-alt: var(--gold-bright);

  /* Legacy aliases for any remaining refs */
  --forest: var(--black-800);
  --forest-mid: var(--metal-dark);
  --forest-light: var(--metal);
  --forest-soft: var(--gold-muted);

  /* The 4px Spacing Engine */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2rem, 1.75rem + 2vw, 3rem);
  --text-5xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  --leading-tight: 1.25;
  --leading-relaxed: 1.625;

  --vivere-glass: var(--glass-bg);
  --vivere-blur: 15px;
  --ease-premium: cubic-bezier(0.33, 1, 0.68, 1);
  --radius-vivere: 1rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  font-size: 16px;
}

body {
  background-color: var(--silver-pale);
  color: var(--fg-primary);
  overflow-x: hidden;
  line-height: 1.5;
  font-size: var(--text-base);
  position: relative;
  min-height: 100vh;
}

/* Mountain silhouettes in negative space (light background margins) — black peaks */
.negative-space-mountains {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.negative-space-mountains__left,
.negative-space-mountains__right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  max-width: 12vw;
}
.negative-space-mountains__left {
  left: 0;
}
.negative-space-mountains__left svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}
.negative-space-mountains__right {
  right: 0;
}
.negative-space-mountains__right svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
}
.negative-space-mountains__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  max-height: 15vh;
}
.negative-space-mountains__bottom svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}
/* Ensure main content sits above mountain silhouette layer */
#main-content { position: relative; z-index: 1; }

/* Home page: hero background is .hero-bg-img (img tag) for LCP; no side silhouettes, no section borders */
body[data-page="index"] {
  background-color: var(--primary-900);
}
body[data-page="index"] .negative-space-mountains {
  display: none;
}
body[data-page="index"] .main-inner {
  background: transparent;
  box-shadow: none;
}
body[data-page="index"] .header-divider,
body[data-page="index"] .section-divider {
  display: none;
}
body[data-page="index"] .section-divider--mountains-footer {
  display: block;
}
body[data-page="index"] .content-section {
  box-shadow: none;
  border: none;
  background: transparent;
}
body[data-page="index"] .content-section:nth-of-type(odd):not(.content-section--photo-bg),
body[data-page="index"] .content-section:nth-of-type(even) {
  background: transparent;
}
body[data-page="index"] .content-section--photo-bg#about {
  background-image: none;
  background-color: transparent;
}
body[data-page="index"] #contact.content-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.75) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat fixed;
  background-color: var(--black-900);
}
body[data-page="index"] #newsletter.content-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat fixed;
  background-color: var(--black-900);
}
body[data-page="index"] .arena-data-strip {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
  border: none;
}
body[data-page="index"] .arena-data-strip::after {
  display: none;
}
body[data-page="index"] .content-section--strips .strip {
  background: transparent;
  border: none;
}
body[data-page="index"] .content-section--strips .strip--alt,
body[data-page="index"] .content-section--strips .strip--accent {
  background: transparent;
}
body[data-page="index"] .content-section--strips .strip--feature {
  background: transparent;
}
/* Wrapped transparent overlays for strip copy */
body[data-page="index"] .content-section--strips .section-label,
body[data-page="index"] .content-section--strips .section-title {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-vivere);
  display: inline-block;
  margin-bottom: var(--space-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
body[data-page="index"] .content-section--strips #explore-cards {
  text-align: center;
}
body[data-page="index"] .content-section--strips #explore-cards .section-label,
body[data-page="index"] .content-section--strips #explore-cards .section-title {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
body[data-page="index"] .content-section--strips .strip__inner {
  justify-content: center;
  text-align: center;
}
body[data-page="index"] .content-section--strips .strip__content {
  text-align: center;
}
body[data-page="index"] .content-section--strips .strip__actions {
  justify-content: center;
}
body[data-page="index"] .content-section--event-strips #upcoming-events {
  text-align: center;
}
body[data-page="index"] .content-section--strips .strip__inner {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-vivere);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
body[data-page="index"] .content-section--strips .strip--feature .strip__inner {
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
body[data-page="index"] .content-section--strips .strip--feature .strip__title,
body[data-page="index"] .content-section--strips .strip--feature .strip__desc,
body[data-page="index"] .content-section--strips .strip--feature .strip__actions,
body[data-page="index"] .content-section--strips .strip--feature .bento-link {
  color: rgba(255, 255, 255, 0.95);
}
body[data-page="index"] .content-section--strips .strip--accent .strip__inner {
  background: rgba(255, 255, 255, 0.92);
}

/* Mobile: Venue / Explore strips — center-justified, column layout, clean spacing */
@media (max-width: 639px) {
  body[data-page="index"] .content-section--strips #explore-cards .section-label,
  body[data-page="index"] .content-section--strips #explore-cards .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  body[data-page="index"] .content-section--strips .strip-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
  body[data-page="index"] .content-section--strips .strip {
    width: 100%;
    max-width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
  body[data-page="index"] .content-section--strips .strip__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-md);
  }
  body[data-page="index"] .content-section--strips .strip__icon {
    margin: 0;
  }
  body[data-page="index"] .content-section--strips .strip__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  body[data-page="index"] .content-section--strips .strip__title {
    text-align: center;
  }
  body[data-page="index"] .content-section--strips .strip__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  body[data-page="index"] .content-section--strips .strip__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  body[data-page="index"] .content-section--strips .strip__actions .btn,
  body[data-page="index"] .content-section--strips .strip__actions .bento-link {
    display: inline-block;
  }
}

body[data-page="index"] .content-section--event-strips .event-strip {
  background: transparent;
  border: none;
}
body[data-page="index"] .content-section--event-strips .event-strip--featured {
  background: transparent;
}
body[data-page="index"] .content-section--event-strips .event-strip--coming {
  background: transparent;
  border: none;
}
body[data-page="index"] .content-section--event-strips .section-label,
body[data-page="index"] .content-section--event-strips .section-title,
body[data-page="index"] .content-section--event-strips .event-strips-lead {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-vivere);
  display: inline-block;
  margin-bottom: var(--space-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
body[data-page="index"] .content-section--event-strips #upcoming-events .section-label,
body[data-page="index"] .content-section--event-strips #upcoming-events .section-title {
  display: block;
  width: 100%;
}
body[data-page="index"] .content-section--event-strips .event-strips-lead {
  display: block;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  text-align: center;
}
body[data-page="index"] .content-section--event-strips .event-strip__inner {
  background: rgba(255, 255, 255, 0.92);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-vivere);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}
body[data-page="index"] .content-section--event-strips .event-strip__date-badge {
  margin-left: auto;
  margin-right: auto;
}
body[data-page="index"] .content-section--event-strips .event-strip__cta {
  justify-content: center;
}
body[data-page="index"] .content-section--event-strips .event-strip__days {
  justify-items: center;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
body[data-page="index"] .content-section--event-strips .event-strip-day {
  text-align: center;
}
body[data-page="index"] .content-section--event-strips .event-strip--featured .event-strip__inner {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
body[data-page="index"] .content-section--event-strips .event-strip--featured .event-strip__title,
body[data-page="index"] .content-section--event-strips .event-strip--featured .event-strip-day h4,
body[data-page="index"] .content-section--event-strips .event-strip--featured .event-strip-day__meta,
body[data-page="index"] .content-section--event-strips .event-strip--featured .btn {
  color: rgba(255, 255, 255, 0.95);
}
body[data-page="index"] .content-section--event-strips .event-strip--featured .btn--outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
body[data-page="index"] .content-section--event-strips .event-strip--coming .event-strip__inner {
  border: 1px solid rgba(0, 0, 0, 0.12);
}
body[data-page="index"] .content-section--event-strips .event-strip--coming .event-strip__inner--image-bg {
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.78)), url('assets/images/eventsoonplaceholderimg.webp') center/cover no-repeat;
  min-height: 200px;
  padding: var(--space-xl) var(--space-lg);
}
body[data-page="index"] .content-section--event-strips .event-strips-footer-link {
  background: rgba(255, 255, 255, 0.85);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-vivere);
  display: inline-block;
  margin-top: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
/* Values and other text sections: wrapped overlay (exclude contact/newsletter) */
body[data-page="index"] #values.content-section,
body[data-page="index"] .content-section:not(.content-section--photo-bg):not(.content-section--strips):not(.content-section--event-strips):not(#contact):not(#newsletter) {
  background: rgba(255, 255, 255, 0.88);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* No full-body load animation — avoids scroll hesitation on first paint (was liquid-metal-fade-in) */
body.loaded {
  /* Class kept for any JS that checks it; no animation so scroll is immediate */
}

h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p { line-height: 1.6; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--metal-dark);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 var(--space-xs) 0;
}
.skip-link:focus { top: 0; }

#main-content {
  scroll-margin-top: 88px;
}

.main-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Full-bleed hero: background from body/context (geoback.webp on index) */
.hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-900) 0%, var(--metal-dark) 50%, var(--black-800) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 720px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (min-width: 640px) {
  .hero__title { font-size: var(--text-5xl); }
}
.hero__tagline {
  font-size: var(--text-lg);
  color: var(--silver-light);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__cta {
  margin-top: var(--space-md);
}

/* Navbar — geo background (geoback.webp) with dark overlay site-wide. Explicit height reserves space so content doesn't shift when fonts load. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat;
  background-color: var(--primary-900);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.navbar .navbar-brand {
  color: rgba(255, 255, 255, 0.95);
}
/* Mobile dropdown: light panel — links must be dark for contrast */
.navbar-mobile a {
  color: var(--fg-primary);
}
.navbar-mobile a:hover {
  color: var(--primary-900);
  background: var(--primary-100);
}
@media (min-width: 1024px) {
  /* Desktop: nav links sit on dark header — white text */
  .navbar .navbar-mobile a {
    color: rgba(255, 255, 255, 0.95);
    background: var(--link-overlay-gold);
    border-radius: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
  }
  .navbar .navbar-mobile a:hover {
    color: #fff;
    background: var(--link-overlay-gold-hover);
  }
}
.navbar .navbar-logo,
.navbar .navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  opacity: 0.98;
}
.navbar .navbar-brand:hover .navbar-logo,
.navbar .navbar-brand:hover img {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.navbar .navbar-toggle {
  color: rgba(255, 255, 255, 0.95);
}
.navbar .navbar-toggle:hover {
  color: #fff;
}
@media (min-width: 1024px) {
  .navbar {
    height: 96px;
    min-height: 96px;
    padding: var(--space-xl) var(--space-2xl);
  }
}

.navbar--scrolled {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

body:not(.has-hero) .navbar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  min-height: 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--primary-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
}
.navbar-brand:hover { color: var(--gold); }
.navbar-brand picture,
.navbar-brand img {
  background: none;
  display: block;
}

.navbar-logo {
  display: block;
  height: 83px;
  width: auto;
  max-width: 368px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent;
}
.navbar-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
@media (min-width: 640px) {
  .navbar-logo { 
    height: 101px; 
    max-width: 460px; 
  }
}
@media (min-width: 1024px) {
  .navbar-logo { 
    height: 110px; 
    max-width: 552px; 
  }
}

.navbar-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-md);
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-primary);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.navbar-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: var(--space-md);
  gap: var(--space-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.navbar-mobile.active { display: flex; }

@media (min-width: 1024px) {
  .navbar-toggle { display: none; }
  .navbar-mobile {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: none;
    background: transparent;
  }
  .navbar-mobile a { padding: var(--space-sm) var(--space-md); }
}

.navbar-mobile > a,
.navbar-mobile > .nav-dropdown {
  display: flex;
  align-items: center;
}

.navbar-mobile a {
  color: var(--fg-primary);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--space-xs);
  transition: background 0.2s ease, color 0.2s ease;
}
@media (max-width: 1023px) {
  .navbar-mobile a { color: #111; }
  .navbar-mobile a:hover { color: #111; background: var(--primary-100); }
}

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--space-xs);
  color: var(--fg-primary);
  transition: background 0.2s ease;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: ' ▾'; font-size: 0.7em; opacity: 0.8; }
.nav-dropdown[open] summary::after { content: ' ▴'; }
.nav-dropdown summary:hover { background: var(--primary-100); }

@media (min-width: 1024px) {
  .nav-dropdown { display: flex; align-items: center; }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin-top: var(--space-xs);
    padding: var(--space-sm);
    background: var(--vivere-glass);
    backdrop-filter: blur(var(--vivere-blur));
    -webkit-backdrop-filter: blur(var(--vivere-blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-vivere);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
  }
  .nav-dropdown-menu a {
    padding: var(--space-sm) var(--space-md);
    white-space: nowrap;
    border-radius: var(--space-xs);
  }
}

.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1023px) {
  .nav-dropdown summary,
  .nav-dropdown-menu a {
    padding: var(--space-md) var(--space-lg);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* Bento Grid */
.bento-container {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 639px) {
  .bento-container {
    gap: var(--space-sm);
    padding: 0;
  }
}
@media (min-width: 640px) {
  .bento-container { 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--space-lg);
  }
}
@media (min-width: 1024px) {
  .bento-container { 
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--space-lg);
  }
}

.bento-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 639px) {
  .bento-item {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .bento-item:last-child {
    margin-bottom: 0;
  }
}
.bento-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(197, 160, 89, 0.4) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.bento-item:hover {
  border-color: rgba(38, 38, 38, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.bento-item:focus-within {
  box-shadow: 0 0 0 3px var(--gold-muted), 0 8px 24px rgba(0, 0, 0, 0.06);
}
.bento-item:hover::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  animation: welding-spark-card 0.8s ease-out forwards;
}
@keyframes welding-spark-card {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.3),
                0 0 50px 25px rgba(197, 160, 89, 0.2);
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.bento-item.accent {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.bento-item.feature {
  grid-column: 1 / -1;
  position: relative;
  background: linear-gradient(155deg, var(--glass-dark) 0%, rgba(26, 47, 38, 0.88) 100%),
    var(--bg-secondary) center/cover no-repeat;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
}
@media (max-width: 639px) {
  .bento-item.feature {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
}
@media (min-width: 640px) {
  .bento-item.feature {
    grid-column: span 2;
    grid-row: span 2;
    padding: var(--space-2xl);
  }
}
.bento-item.feature .bento-item-title,
.bento-item.feature .bento-item-desc { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
.bento-item.feature .bento-item-title { margin-top: 1.75rem; }
@media (min-width: 768px) {
  .bento-item.feature .bento-item-title { margin-top: 2rem; }
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-premium), transform 1s var(--ease-premium);
}
.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Sections — visible separation between sections */
.content-section {
  padding: var(--space-xl) var(--space-lg);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border-top: none;
  border-bottom: none;
  isolation: isolate;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.08);
}
.content-section:last-of-type { box-shadow: none; }
.content-section--with-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 240px;
}
.content-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--white-soft) 0%, var(--pearl) 100%);
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
/* Very light overlay (~5% opacity) so background photo is clearly visible */
.content-section-overlay--photo {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(250, 250, 249, 0.05) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.content-section-inner {
  position: relative;
  z-index: 2;
}
.content-section:first-of-type { border-top: none; }
/* Metallic theme: white / pearl with gold and silver accents */
.content-section:nth-of-type(odd):not(.content-section--photo-bg):not(.events-hero) {
  background: var(--white);
  position: relative;
}
.content-section--photo-bg {
  position: relative;
  background-color: transparent;
  min-height: 380px;
  /* background-image set inline so photo shows; overlay provides contrast */
}
/* No background behind logo in photo section; blend so any white in logo shows photo through */
.content-section--photo-bg .section-logo-wrapper {
  background: none;
  padding: 0;
}
/* Hero only: tight gold transparent overlay behind logo for contrast on photo */
.content-section--photo-bg.content-section--negative-space .section-logo-wrapper {
  background: rgba(197, 160, 89, 0.26);
  backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-vivere);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.content-section--photo-bg .section-logo,
.content-section--photo-bg .section-logo-wrapper img {
  background: transparent;
}

/* Wrapped gray transparent overlay behind title + body text in photo section */
.photo-section-text-wrap {
  background: rgba(64, 64, 64, 0.72);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-vivere);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-height: 140px;
}
.photo-section-text-wrap .section-label {
  color: rgba(255, 255, 255, 0.9);
}
.photo-section-text-wrap .section-title {
  color: #fff;
}
.photo-section-text-wrap .content-section--narrow {
  margin-left: auto;
  margin-right: auto;
}
.photo-section-text-wrap .lead,
.photo-section-text-wrap .prose,
.photo-section-text-wrap .prose p {
  color: rgba(255, 255, 255, 0.95);
}
.photo-section-text-wrap .bento-link {
  color: var(--gold-bright);
}
.photo-section-text-wrap .bento-link:hover {
  color: var(--gold-light);
}

/* Hero "Who We Are": high negative space, no cards or borders */
.content-section--negative-space {
  min-height: 420px;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.content-section--negative-space .content-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}
.content-section--negative-space .photo-section-text-wrap {
  background: rgba(64, 64, 64, 0.62);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-vivere);
  border: none;
  max-width: 560px;
  margin: 0;
  padding: var(--space-2xl) var(--space-xl);
  min-height: 0;
}
.content-section--negative-space .section-logo-wrapper {
  margin-bottom: 0;
}

/* CLS: reserve space for #about logo so layout doesn't shift when image loads */
#about .section-logo-wrapper {
  min-height: 120px;
}
@media (min-width: 640px) {
  #about .section-logo-wrapper {
    min-height: 240px;
  }
}
.content-section--negative-space .photo-section-text-wrap .section-label,
.content-section--negative-space .photo-section-text-wrap .section-title,
.content-section--negative-space .photo-section-text-wrap .lead,
.content-section--negative-space .photo-section-text-wrap .prose,
.content-section--negative-space .photo-section-text-wrap .prose p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.content-section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 2%, rgba(197, 160, 89, 0.6) 20%, var(--gold) 50%, rgba(197, 160, 89, 0.6) 80%, transparent 98%);
  z-index: 1;
  opacity: 1;
  animation: section-accent-glow 4s ease-in-out infinite;
}
.content-section:nth-of-type(even) { 
  background: var(--pearl);
  position: relative;
}
.content-section:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 2%, rgba(82, 82, 82, 0.5) 20%, var(--metal-mid) 50%, rgba(82, 82, 82, 0.5) 80%, transparent 98%);
  z-index: 1;
  opacity: 1;
  animation: section-accent-glow 4s ease-in-out infinite 0.5s;
}
@keyframes section-accent-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
#contact.content-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('assets/images/grandview.webp') center / cover no-repeat;
  background-color: var(--black-900);
  color: var(--white);
  position: relative;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  text-align: center;
}
#contact #contact-form {
  margin-left: auto;
  margin-right: auto;
}
#contact #contact-form label {
  text-align: left;
}
#contact.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.9;
  z-index: 1;
}
#contact.content-section .section-label {
  color: var(--gold-bright);
  letter-spacing: 0.12em;
}
#contact.content-section .section-title {
  color: #fff;
  margin-bottom: var(--space-md);
}
#contact.content-section .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  margin-left: auto;
  margin-right: auto;
}
#contact.content-section .contact-info {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  text-align: center;
}
#contact.content-section .contact-info a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}
#contact.content-section .contact-info a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-bright);
}
#contact.content-section input,
#contact.content-section textarea {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--primary-900);
}
#contact.content-section input::placeholder,
#contact.content-section textarea::placeholder {
  color: var(--primary-700);
  opacity: 0.8;
}

#newsletter.content-section {
  background: var(--black-900);
  color: var(--white);
  position: relative;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  text-align: center;
}
#newsletter.content-section .section-title,
#newsletter.content-section p { color: rgba(255, 255, 255, 0.95); }
#newsletter.content-section .prose { margin-left: auto; margin-right: auto; }
#newsletter.content-section a { color: var(--gold-bright); }
#newsletter.content-section input {
  background: var(--white);
  border: 1px solid var(--border-metal);
  color: var(--primary-900);
}

.content-section--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

/* Section typography */
.section-label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: var(--space-xs);
  font-family: var(--font-main);
}
.section-title {
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-xs);
  color: var(--primary-900);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.prose {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--primary-900);
}
.prose p { margin-bottom: var(--space-sm); line-height: 1.6; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.prose a:hover { color: var(--gold); }

.lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--primary-900);
  margin-bottom: var(--space-md);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-info {
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
  line-height: var(--leading-relaxed);
}
.contact-info a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-info a:hover { color: var(--gold-light); }

/* Section Dividers — visible waves with color and subtle animation */
.section-divider {
  display: block;
  width: 100%;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
  position: relative;
  z-index: 1;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.12), transparent);
  animation: divider-shimmer 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes divider-shimmer {
  0% { left: -60%; opacity: 0; }
  50% { left: 120%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.section-divider--wave-up { 
  color: #e0e0de;
  height: 56px;
}
.section-divider--wave-up svg {
  height: 56px;
  filter: drop-shadow(0 -3px 12px rgba(0, 0, 0, 0.08));
}

.section-divider--curve { 
  color: #d8d8d6;
  height: 64px;
}
.section-divider--curve svg {
  height: 64px;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.08));
}

.section-divider--wave-subtle { 
  color: #e2e2e0;
  height: 52px;
}
.section-divider--wave-subtle svg {
  height: 52px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.06));
}

.section-divider--curve-alt { 
  color: #d0d0ce;
  height: 72px;
}
.section-divider--curve-alt svg {
  height: 72px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.07));
}

.section-divider--wave-footer { 
  color: #1a1a1a;
  height: 88px;
}
.section-divider--wave-footer svg {
  height: 88px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}
.section-divider--wave-footer::after {
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.15), transparent);
}

/* Hero */
.site-hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
}
.site-hero--minimal {
  padding-top: 72px;
  padding-bottom: var(--space-4xl);
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.site-hero--minimal::after {
  content: '';
  position: absolute;
  inset: -5%;
  background: var(--bg-secondary) center/cover no-repeat;
  background-image: linear-gradient(135deg, var(--forest) 0%, var(--bg-secondary) 50%, var(--primary-800) 100%);
  z-index: 0;
}
.site-hero--minimal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

.site-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 12vh var(--space-xl) var(--space-xl);
  animation: hero-fade-in 1s var(--ease-premium) both;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  background: rgba(23, 23, 23, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.2);
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-hero-title,
.site-hero h1 {
  font-size: var(--text-5xl);
  font-weight: 300;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
  color: white;
  letter-spacing: 0.05em;
  font-family: 'Playfair Display', Georgia, serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.site-hero--minimal .hero-tagline {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}
.site-hero--minimal .hero-summary {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* Buttons — min 48px tap target for a11y */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  min-height: 48px;
  box-sizing: border-box;
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-vivere);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    width: 100%;
    display: block;
    margin-bottom: var(--space-xs);
  }
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn:hover::after { left: 100%; }
/* Welding Spark Hover Effect */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 220, 120, 0.8) 20%, rgba(197, 160, 89, 0.6) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.btn:hover::before {
  width: 250px;
  height: 250px;
  opacity: 1;
  animation: welding-spark 0.8s ease-out forwards;
  -webkit-animation: welding-spark 0.8s ease-out forwards;
}
@keyframes welding-spark {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9),
                0 0 0 0 rgba(255, 220, 120, 0.7);
  }
  30% {
    opacity: 1;
    box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.6),
                0 0 50px 25px rgba(255, 220, 120, 0.5),
                0 0 80px 40px rgba(197, 160, 89, 0.3);
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0),
                0 0 0 0 rgba(255, 220, 120, 0);
  }
}
@-webkit-keyframes welding-spark {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9),
                0 0 0 0 rgba(255, 220, 120, 0.7);
  }
  30% {
    opacity: 1;
    box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.6),
                0 0 50px 25px rgba(255, 220, 120, 0.5),
                0 0 80px 40px rgba(197, 160, 89, 0.3);
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0),
                0 0 0 0 rgba(255, 220, 120, 0);
  }
}

.btn--primary {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 47, 38, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 47, 38, 0.4);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-900);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary-900);
  border: 2px solid var(--primary-900);
}
.btn--outline:hover {
  background: var(--primary-900);
  color: white;
  transform: translateY(-2px);
}

/* Arena conditions strip — minimal height, tight padding, small wave */
.arena-data-strip {
  min-height: 0;
  padding: var(--space-md) var(--space-lg);
  padding-bottom: calc(var(--space-md) + 20px);
  background: linear-gradient(90deg, var(--metal-dark) 0%, var(--black-800) 50%, var(--metal-dark) 100%);
  color: var(--white);
  border-top: none;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: visible;
}
.arena-data-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 28' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232a2a2a'/%3E%3Cstop offset='85%25' stop-color='%232a2a2a'/%3E%3Cstop offset='100%25' stop-color='%23c5a059' stop-opacity='0.95'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M0 28V14c80 4 160-6 240 2s160 2 240-2 160 2 240-2 160 2 240-2 160 2 240-2v16H0z'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 20px;
  pointer-events: none;
}
/* Mountain silhouette bottom for arena strip — homepage only, reduced */
.arena-data-strip--mountains {
  padding-bottom: calc(var(--space-md) + 28px);
}
.arena-data-strip--mountains::after {
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='arenaGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232a2a2a'/%3E%3Cstop offset='70%25' stop-color='%231a1a1a'/%3E%3Cstop offset='100%25' stop-color='%231a2f26'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23arenaGrad)' d='M0 56V28 L90 42 L180 24 L270 38 L360 20 L450 44 L540 22 L630 40 L720 18 L810 42 L900 20 L990 38 L1080 22 L1170 44 L1260 20 L1350 40 L1440 28 V56 Z'/%3E%3Cpath fill='rgba(197,160,89,0.12)' d='M0 56V38 L100 48 L200 34 L320 52 L420 36 L540 50 L640 34 L760 52 L860 36 L980 50 L1080 34 L1200 52 L1300 36 L1440 48 V56 Z'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 32px;
}
@media (min-width: 640px) {
  .arena-data-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

.arena-data-strip__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 0 0 auto;
}
@media (min-width: 640px) {
  .arena-data-strip__block:first-child {
    text-align: left;
  }
  .arena-data-strip__block:last-child {
    text-align: right;
  }
}

.arena-data-strip__label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.arena-data-strip__value {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.arena-data-strip__link {
  color: var(--gold-bright);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.arena-data-strip__link:hover {
  color: var(--gold-light);
}

.arena-weather__temp {
  font-weight: 700;
}

.arena-weather__desc {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.8);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(155deg, var(--glass-dark) 0%, var(--bg-secondary) 100%);
  background-image: linear-gradient(155deg, rgba(23, 23, 23, 0.95) 0%, rgba(26, 47, 38, 0.9) 100%), 
    radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(35, 74, 61, 0.1) 0%, transparent 50%);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2), 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 640px) {
  .stats-strip { grid-template-columns: repeat(3, 1fr); text-align: center; }
}
.stat-item { 
  padding: var(--space-sm) 0;
  position: relative;
  z-index: 1;
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
  animation: icon-float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stat-value {
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.03em;
}
.stat-label { font-size: var(--text-sm); opacity: 0.9; }

/* Bento content */
.bento-container--explore { 
  gap: var(--space-md); 
}
@media (max-width: 639px) {
  .bento-container--explore {
    gap: var(--space-sm);
  }
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
@media (max-width: 639px) {
  .bento-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }
}
.bento-item:hover .bento-icon {
  transform: scale(1.15) rotate(5deg);
  opacity: 1;
}
.bento-item.feature .bento-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}
@media (max-width: 639px) {
  .bento-item.feature .bento-icon {
    font-size: 2rem;
  }
}
.bento-item .bento-item-title {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.03em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 639px) {
  .bento-item .bento-item-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
  }
}
.bento-item .bento-item-desc {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  opacity: 0.95;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 639px) {
  .bento-item .bento-item-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
}
.bento-item.feature .bento-item-desc { 
  margin-bottom: var(--space-md);
}
@media (max-width: 639px) {
  .bento-item.feature .bento-item-desc {
    margin-bottom: var(--space-sm);
  }
}

.bento-link,
.bento-item a.bento-link,
.value-card a.bento-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  margin-top: var(--space-sm);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 639px) {
  .bento-link,
  .bento-item a.bento-link,
  .value-card a.bento-link {
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
    display: block;
    text-align: center;
  }
}
.bento-item.feature .bento-link,
.bento-item.feature a.bento-link {
  color: var(--accent-gold);
  border-bottom-color: rgba(197, 160, 89, 0.6);
}
.bento-item a.bento-link:hover { opacity: 0.9; }

/* Desktop: transparent gold overlay on content page links for visibility */
@media (min-width: 1024px) {
  .content-section--strips .strip__actions .bento-link,
  .photo-section-text-wrap .bento-link,
  .value-card a.bento-link {
    background: var(--link-overlay-gold);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--space-xs);
  }
  .content-section--strips .strip__actions .bento-link:hover,
  .photo-section-text-wrap .bento-link:hover,
  .value-card a.bento-link:hover {
    background: var(--link-overlay-gold-hover);
  }
}

/* Upcoming events section: sufficient contrast for bento-link (WCAG) */
#upcoming-events .bento-link,
#upcoming-events a.bento-link {
  color: var(--primary-800);
  border-bottom-color: var(--primary-700);
}
#upcoming-events .bento-link:hover {
  color: var(--primary-950);
  border-bottom-color: var(--primary-950);
}

/* Home page: full-width strip layout (replaces bento cards in #explore-cards) */
.content-section--strips .strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.content-section--strips .strip {
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: var(--white);
}
.content-section--strips .strip--alt {
  background: var(--primary-50);
}
.content-section--strips .strip--feature {
  background: linear-gradient(135deg, var(--black-900) 0%, var(--metal-dark) 100%);
  color: var(--white);
}
.content-section--strips .strip--feature .strip__title,
.content-section--strips .strip--feature .strip__desc { color: inherit; }
.content-section--strips .strip--feature .bento-link { color: var(--accent-gold); }
.content-section--strips .strip--accent {
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.06) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.content-section--strips .strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-lg);
}
.content-section--strips .strip__icon {
  font-size: 2rem;
  flex-shrink: 0;
  opacity: 0.9;
}
@media (min-width: 640px) {
  .content-section--strips .strip__icon { font-size: 2.5rem; }
}
.content-section--strips .strip__content {
  flex: 1;
  min-width: 0;
}
.content-section--strips .strip__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
@media (min-width: 640px) {
  .content-section--strips .strip__title { font-size: var(--text-2xl); }
}
.content-section--strips .strip__desc {
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.content-section--strips .strip__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  align-items: center;
}
.content-section--strips .strip__actions .bento-link {
  margin-top: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  padding: var(--space-xl);
  background: linear-gradient(145deg, #fff 0%, rgba(250, 250, 249, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--forest-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-premium);
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.3);
}
.value-icon {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
  display: block;
  opacity: 0.85;
  transition: transform 0.4s var(--ease-premium), opacity 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}
.value-card:hover .value-icon {
  transform: scale(1.2) translateY(-4px);
  opacity: 1;
}
.value-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--primary-900);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
}
.value-card p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--primary-700);
  margin: 0;
}

/* Summary card */
.summary-card {
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.summary-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--primary-900);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
}
.summary-card p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--primary-700);
  margin: 0;
}

/* Video */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-vivere);
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 600px;
}
#contact-form {
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-vivere);
  max-width: 560px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
#contact-form label {
  color: var(--primary-800);
  font-weight: 500;
}
#contact .btn--primary,
#contact-form .btn[type="submit"] {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dark) 100%);
  color: var(--primary-900);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}
#contact .btn--primary:hover,
#contact-form .btn[type="submit"]:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}
form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-weight: 500;
}
form input,
form textarea,
form select {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--space-xs);
  font-family: var(--font-main);
  font-size: var(--text-base);
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
  border-color: var(--accent-gold);
}
form button[type="submit"] {
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-vivere);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26, 47, 38, 0.3);
  transition: background 0.2s ease, transform 0.15s ease;
}
form button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  transform: translateY(-1px);
}
form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(155deg, #e8e8e6 0%, #e0e0de 100%);
  padding: var(--space-3xl) var(--space-lg);
  border-top: 1px solid rgba(38, 38, 38, 0.08);
}
.newsletter-section .section-title { margin-bottom: var(--space-md); }
.newsletter-section form { max-width: 420px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-sm); }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.newsletter-privacy { margin-top: var(--space-xs); font-size: var(--text-sm); color: var(--primary-700); text-align: center; }
.newsletter-thanks { margin-top: var(--space-sm); font-weight: 600; color: var(--forest-mid); text-align: center; }
#newsletter .newsletter-form label { text-align: left; }

/* Header mountain dividers — fluid breaks between navbar, reach-bar, arena strip */
.header-divider {
  width: 100%;
  display: block;
  line-height: 0;
  color: var(--black-900);
}
.header-divider--mountains {
  background: var(--black-900);
  color: rgba(197, 160, 89, 0.2);
}
.header-divider--mountains svg {
  width: 100%;
  height: 100%;
  display: block;
}
.header-divider--mountains {
  height: 36px;
  margin-top: -1px;
}
.header-divider--between-reach-arena {
  height: 14px;
  margin-top: 0;
}
@media (max-width: 639px) {
  .header-divider--mountains { height: 28px; }
  .header-divider--between-reach-arena { height: 12px; }
}

/* Reach bar — social media quick links */
.reach-bar {
  background: var(--black-900);
  border-bottom: none;
  padding: var(--space-xs) var(--space-md);
  display: none;
}
.reach-bar:has(.reach-bar-inner a) {
  display: block;
}
.reach-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
  min-height: 36px;
}
.reach-bar-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-right: var(--space-xs);
}
.reach-bar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--space-xs);
  transition: color 0.2s ease, background 0.2s ease;
}
.reach-bar-link:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}
.reach-bar-link .social-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}
.reach-bar-link .social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.reach-bar-link .social-icon-label.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--primary-950) 100%);
  color: white;
  text-align: center;
}
/* Home page: arena night image as footer background */
.site-footer--arena-bg {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('assets/images/arenanight.webp') center / cover no-repeat;
  background-color: var(--primary-950);
}
.site-footer .footer-logo { 
  display: inline-block; 
  margin-bottom: var(--space-lg);
  text-decoration: none;
}
.site-footer .footer-logo img,
.site-footer .footer-logo-img {
  display: block;
  height: 92px;
  width: auto;
  max-width: 414px;
  object-fit: contain;
  opacity: 0.95;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}
.site-footer .footer-logo:hover img,
.site-footer .footer-logo:hover .footer-logo-img { 
  opacity: 1; 
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
@media (min-width: 640px) {
  .site-footer .footer-logo img,
  .site-footer .footer-logo-img {
    height: 110px;
    max-width: 506px;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-logo img,
  .site-footer .footer-logo-img {
    height: 129px;
    max-width: 598px;
  }
}
.site-footer p { margin-bottom: var(--space-sm); font-size: var(--text-base); }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-md);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: var(--text-sm);
}
.site-footer a:hover { color: white; text-decoration: underline; }

.footer-social {
  margin-top: var(--space-lg);
  width: 100%;
}
.footer-social-inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.footer-social-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
}
.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social-list li {
  margin: 0;
  padding: 0;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--space-xs);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social-link:hover {
  color: white;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}
.footer-social-link .social-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.footer-social-link .social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer-social-link .social-icon-label.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom .footer-legal { margin: 0; font-size: var(--text-sm); opacity: 0.8; }
.footer-geo { font-size: 0.7rem; letter-spacing: 0.12em; opacity: 0.85; color: rgba(255, 255, 255, 0.8); }

/* Footer Legal Links */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-lg);
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer-legal-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Sticky CTA bar (optional) */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--space-sm) var(--space-lg);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border);
}
.sticky-cta-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .navbar { min-height: 64px; }
  .sticky-cta-bar { top: 64px; }
}
@media (max-width: 767px) {
  .sticky-cta-bar { top: auto; bottom: 0; border-bottom: none; border-top: 1px solid var(--border); }
  body { padding-bottom: 80px; }
}

[id],
section[id] { scroll-margin-top: 140px; }
@media (max-width: 767px) {
  [id], section[id] { scroll-margin-top: 120px; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding: var(--space-lg) 0;
  max-width: 100%;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--forest-mid) 0%, var(--accent-gold) 100%);
}

.timeline-item {
  position: relative;
  padding-left: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: flex-start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--forest-mid);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--forest-mid);
  flex-shrink: 0;
  z-index: 2;
}

.timeline-marker--current {
  background: var(--accent-gold);
  box-shadow: 0 0 0 2px var(--accent-gold), 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.timeline-content {
  flex: 1;
  padding: var(--space-md);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-title {
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--primary-900);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.03em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.timeline-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--primary-700);
  margin: 0;
}

@media (min-width: 768px) {
  .timeline::before {
    left: 2rem;
  }
  .timeline-item {
    padding-left: var(--space-4xl);
  }
  .timeline-marker {
    left: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Owners Photo Section */
.owners-photo-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.owners-photo-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--forest) 0%, var(--bg-secondary) 50%, var(--primary-800) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.owners-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.owners-photo-label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.owners-photo-text {
  font-size: var(--text-xl);
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  position: relative;
  z-index: 1;
}

.owners-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Events Page Styles */
.events-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--bg-secondary) 100%);
  color: white;
  text-align: center;
  padding: var(--space-5xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}
.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(35, 74, 61, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.events-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.events-hero .section-label {
  color: var(--accent-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.events-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-family: 'Playfair Display', Georgia, serif;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.events-hero-subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2xl);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}
.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  min-width: 100px;
  text-align: center;
  animation: countdown-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@keyframes countdown-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.countdown-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.countdown-label {
  display: block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Event Feature Section */
.event-feature {
  padding: var(--space-5xl) var(--space-lg);
}
.event-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: badge-glow 3s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(197, 160, 89, 0.5); }
}

/* Event Day Cards */
.event-day-card {
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
}
.event-day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.event-day-card--rodeo {
  background: linear-gradient(145deg, #f5f5f4 0%, #f0f0ef 100%);
  border-color: var(--accent-gold);
}
.event-day-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}
@media (max-width: 639px) {
  .event-day-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.event-date {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  min-width: 80px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26, 47, 38, 0.3);
}
.event-day-card--rodeo .event-date {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

/* Cinco de Mayo — band & dance team */
.cinco-entertainment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: start;
}
@media (max-width: 639px) {
  .cinco-entertainment {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}
.cinco-act {
  text-align: center;
}
.cinco-act img {
  max-width: 100%;
  height: auto;
  margin-bottom: var(--space-sm);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cinco-act-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--primary-900);
}
.cinco-act-desc {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--metal);
}
.event-date-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.event-date-month {
  display: block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
  opacity: 0.9;
}
.event-day-title h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
  line-height: 1.3;
}
.event-time {
  font-size: var(--text-lg);
  color: var(--primary-700);
  font-weight: 500;
  margin-top: var(--space-xs);
}

/* Artists Grid */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.artist-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
  transition: left 0.5s ease;
}
.artist-card:hover::before {
  left: 100%;
}
.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-gold);
}
.artist-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: icon-bounce 2s ease-in-out infinite;
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.artist-name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
}
.artist-bio {
  font-size: var(--text-base);
  color: var(--primary-700);
  line-height: 1.7;
  margin-top: var(--space-sm);
}

/* Rodeo Features */
.rodeo-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .rodeo-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rodeo-feature-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(197, 160, 89, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}
.rodeo-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(197, 160, 89, 0.1);
}
.rodeo-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}
.rodeo-feature-item h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
}
.rodeo-feature-item p {
  font-size: var(--text-base);
  color: var(--primary-700);
}

/* Event CTA */
.event-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--forest-mid);
  color: var(--forest-mid);
}
.btn--outline:hover {
  background: var(--forest-mid);
  color: white;
}

/* Why Attend Section */
.why-attend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (min-width: 640px) {
  .why-attend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-attend-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-attend-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-attend-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--forest-mid) 100%);
  transition: width 0.3s ease;
}
.why-attend-card:hover::after {
  width: 100%;
}
.why-attend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.why-attend-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
}
.why-attend-card p {
  font-size: var(--text-base);
  color: var(--primary-700);
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Logo — no background, logo only */
.section-logo-wrapper {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 100%;
  padding: 0;
  background: none;
}
.section-logo-wrapper img {
  background: none;
}
.section-logo {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  display: block;
  margin: 0 auto;
  background: transparent;
}
@media (min-width: 640px) {
  .section-logo-wrapper {
    margin-bottom: var(--space-2xl);
    padding: 0;
  }
  .section-logo {
    max-height: 200px;
  }
}
@media (min-width: 1024px) {
  .section-logo {
    max-height: 280px;
  }
}

/* Upcoming Events: timeline + ribbon strips (home, unique to this section) */
.content-section--event-strips .event-strips-lead {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.content-section--event-strips .event-strips {
  margin-top: var(--space-xl);
}
.content-section--event-strips .event-strips-footer-link {
  text-align: center;
  margin-top: var(--space-xl);
}

.event-strip {
  width: 100%;
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
}
.event-strip--featured {
  background: linear-gradient(155deg, var(--glass-dark) 0%, rgba(26, 47, 38, 0.96) 100%);
  color: #fff;
  border-left: 6px solid var(--accent-gold);
}
.event-strip--featured .event-strip__title,
.event-strip--featured h4,
.event-strip--featured .event-strip-day__meta { color: #fff; }
.event-strip--featured .event-strip-day__meta { opacity: 0.9; }
.event-strip--featured .event-strip__cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}
.event-strip--featured .event-strip__cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.event-strip--coming {
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
  border: 2px dashed var(--border);
  border-radius: 0;
}
.event-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.event-strip__inner--center {
  text-align: center;
}
.event-strip__date-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}
.event-strip__date-badge--muted {
  background: linear-gradient(135deg, var(--metal-mid) 0%, var(--metal-dark) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.event-strip__coming-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}
.event-strip__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}
.event-strip--coming .event-strip__title {
  margin-bottom: var(--space-md);
}
.event-strip__days {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .event-strip__days {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}
.event-strip-day {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.event-strip--coming .event-strip-day { border-bottom-color: var(--border); }
.event-strip-day:last-child { border-bottom: none; }
.event-strip-day__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.event-strip-day h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: 'Playfair Display', Georgia, serif;
}
.event-strip-day__meta {
  font-size: var(--text-sm);
  opacity: 0.9;
}
.event-strip__desc {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.event-strip__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.event-strip__inner--center .event-strip__cta {
  justify-content: center;
}

/* Upcoming Events Section (card layout — other pages) */
.upcoming-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
@media (min-width: 640px) {
  .upcoming-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.event-highlight-card {
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.event-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--forest-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.event-highlight-card:hover::before {
  transform: scaleX(1);
}
.event-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.event-highlight-card--featured {
  background: linear-gradient(155deg, var(--glass-dark) 0%, rgba(26, 47, 38, 0.95) 100%);
  border-color: var(--accent-gold);
  color: white;
}
.event-highlight-card--featured .event-highlight-title,
.event-highlight-card--featured h4 {
  color: white;
}
.event-highlight-card--featured .event-highlight-desc,
.event-highlight-card--featured .event-artists,
.event-highlight-card--featured .event-time {
  color: rgba(255, 255, 255, 0.9);
}
.event-highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.event-highlight-badge--coming {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  box-shadow: 0 4px 12px rgba(26, 47, 38, 0.3);
}
.event-highlight-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
  line-height: 1.3;
}
.event-highlight-details {
  margin-bottom: var(--space-xl);
}
.event-highlight-day {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.event-highlight-day:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.event-highlight-card--featured .event-highlight-day {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.event-day-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.event-highlight-day h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-900);
}
.event-artists {
  font-size: var(--text-base);
  color: var(--primary-700);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}
.event-time {
  font-size: var(--text-sm);
  color: var(--primary-600);
  font-weight: 500;
}
.event-highlight-desc {
  font-size: var(--text-base);
  color: var(--primary-700);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.event-highlight-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* High-contrast CTAs on dark featured card: white outline + text */
.event-highlight-card--featured .event-highlight-cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.event-highlight-card--featured .event-highlight-cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

/* Artist profile page (artists.html) */
.artist-profile {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}
/* Floating background lyric subtitles (from popular songs) */
.artist-lyrics-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.artist-lyric {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--metal-light);
  opacity: 0.2;
  white-space: nowrap;
  user-select: none;
}
.artist-profile .artist-profile-header,
.artist-profile .artist-profile-bio {
  position: relative;
  z-index: 1;
}
/* Position each lyric line per artist — Jason Abbott */
#jason-abbott .artist-lyrics-float .artist-lyric:nth-child(1) { top: 12%; left: 5%; transform: rotate(-6deg); }
#jason-abbott .artist-lyrics-float .artist-lyric:nth-child(2) { top: 55%; right: 8%; transform: rotate(4deg); }
#jason-abbott .artist-lyrics-float .artist-lyric:nth-child(3) { bottom: 20%; left: 10%; transform: rotate(-3deg); }
/* Frank Ray */
#frank-ray .artist-lyrics-float .artist-lyric:nth-child(1) { top: 18%; right: 6%; transform: rotate(5deg); }
#frank-ray .artist-lyrics-float .artist-lyric:nth-child(2) { bottom: 25%; left: 6%; transform: rotate(-4deg); }
/* Tracy Byrd */
#tracy-byrd .artist-lyrics-float .artist-lyric:nth-child(1) { top: 10%; left: 8%; transform: rotate(-5deg); }
#tracy-byrd .artist-lyrics-float .artist-lyric:nth-child(2) { top: 50%; right: 5%; transform: rotate(3deg); }
#tracy-byrd .artist-lyrics-float .artist-lyric:nth-child(3) { bottom: 15%; left: 12%; transform: rotate(-2deg); }
.artist-profile:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.artist-profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.artist-profile-icon {
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.9;
}
.artist-profile-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--primary-900);
  margin: 0 0 var(--space-xs) 0;
}
.artist-profile-genre {
  font-size: var(--text-sm);
  color: var(--primary-700);
  margin: 0;
  font-weight: 500;
}
.artist-profile-bio {
  max-width: 720px;
  margin-left: 0;
}
.artist-profile-bio p {
  margin-bottom: var(--space-md);
}
.artist-profile-bio p:last-child {
  margin-bottom: 0;
}
.artist-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
}

/* Meet the Artists page: center-justify all text */
body[data-page="artists"] .content-section.page-mountains-intro {
  text-align: center;
}
body[data-page="artists"] .content-section .section-label,
body[data-page="artists"] .content-section .section-title,
body[data-page="artists"] .content-section .lead {
  margin-left: auto;
  margin-right: auto;
}
body[data-page="artists"] .artist-profile-header {
  justify-content: center;
  flex-wrap: wrap;
}
body[data-page="artists"] .artist-profile-header > div {
  text-align: center;
}
body[data-page="artists"] .artist-profile-bio {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body[data-page="artists"] .artist-cta {
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-fade-up,
  .bento-item,
  .value-card,
  .site-hero-inner {
    transition-duration: 0.01ms !important;
  }
}

/* Back to top — appears after scroll, keyboard-accessible */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-900);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--metal-dark);
  color: var(--gold-bright);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- Events & Rodeo Guide (calendar.html) ---------- */

/* Full-width sectional / strip layout + floating elements & high negative space */
body[data-page="calendar"] .guide-page {
  padding: 0;
}
.guide-strip {
  width: 100%;
  padding: var(--space-3xl) var(--space-lg);
}
.guide-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.guide-strip--hero {
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.55) 0%, rgba(26, 47, 38, 0.6) 50%, rgba(0, 0, 0, 0.45) 100%),
    url('assets/images/arenawithstandsandmesa.webp') center / 85% auto no-repeat;
  color: #fff;
}
.guide-strip--hero .guide-strip__label {
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}
.guide-strip--hero .guide-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}
.guide-strip--hero .guide-strip__intro {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
}
.guide-strip--hero .guide-strip__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.guide-strip--hero .guide-share-btn {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.guide-strip--hero .guide-share-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.guide-share-feedback {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}
.guide-strip--filters {
  background: var(--primary-50);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.guide-strip--filters .guide-strip__inner {
  text-align: left;
}
.guide-filters--float {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-vivere);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: none;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.guide-legend--float {
  margin-bottom: 0;
  padding: var(--space-md) 0;
  justify-content: center;
  gap: var(--space-2xl);
}
.guide-strip--results {
  background: var(--white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  min-height: 40vh;
}
.guide-strip--results .guide-strip__inner {
  text-align: left;
}
.guide-strip--results .guide-results-count {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* Venue page: full-width sectionals (hero + strips, no cards) */
.venue-page {
  padding: 0;
}
.venue-hero {
  width: 100%;
  min-height: 42vh;
  padding: var(--space-3xl) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%),
    url('assets/images/venue.webp') center / cover no-repeat;
  background-color: var(--black-900);
  color: #fff;
}
.venue-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.venue-hero__label {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
}
.venue-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
  color: #fff;
}
.venue-hero__lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.92);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.venue-strip {
  width: 100%;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
}
.venue-strip--alt {
  background: var(--primary-50);
}
.venue-strip__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  text-align: center;
}
.venue-strip__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.venue-strip__content {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.venue-strip__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary-900);
  margin-bottom: var(--space-sm);
}
.venue-strip__desc {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--primary-700);
  margin: 0;
}
.venue-strip--ideal .venue-strip__inner {
  flex-direction: column;
  text-align: center;
}
.venue-strip__list {
  list-style: none;
  margin: 0 auto var(--space-xl);
  padding: 0;
  line-height: 1.8;
  color: var(--primary-700);
  text-align: center;
}
.venue-strip__list li {
  margin-bottom: var(--space-xs);
}
.venue-strip__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* Venue page: SVG blending dividers between sectionals */
.venue-divider {
  width: 100%;
  display: block;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}
.venue-divider svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.venue-divider--light {
  color: var(--primary-50);
  height: 56px;
}
.venue-divider--light svg {
  height: 56px;
  filter: drop-shadow(0 -2px 8px rgba(0, 0, 0, 0.04));
}
.venue-divider--white {
  color: #fff;
  height: 56px;
}
.venue-divider--white svg {
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

@media (max-width: 639px) {
  .venue-strip__inner {
    flex-direction: column;
    text-align: center;
  }
  .venue-strip__icon {
    margin: 0 auto;
  }
  .venue-divider--light,
  .venue-divider--white {
    height: 40px;
  }
  .venue-divider--light svg,
  .venue-divider--white svg {
    height: 40px;
  }
}

.guide-list--float {
  gap: var(--space-3xl);
}
body[data-page="calendar"] .guide-list--timeline.guide-list--float .guide-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.guide-hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
.guide-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}
.guide-hero-intro {
  font-size: var(--text-lg);
  color: var(--metal);
  max-width: 42rem;
  margin: 0 auto var(--space-xl);
  line-height: var(--leading-relaxed);
}
.guide-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}
.guide-share-btn {
  flex-shrink: 0;
}
.guide-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-vivere);
  box-shadow: var(--shadow-sm);
}
.guide-filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}
.guide-filter-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-main);
}
.guide-filter-select {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  font-family: var(--font-main);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--text-main);
  min-width: 10rem;
}
.guide-filter-select:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}
.guide-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--metal);
}
.guide-legend-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-sm);
}
.guide-legend-title {
  font-weight: 600;
  color: var(--text-main);
  flex-basis: 100%;
}
.guide-legend-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.guide-legend-list li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.guide-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.guide-legend-desc {
  margin: 0;
  max-width: 20rem;
}
.guide-results-count {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
}
.guide-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.guide-card {
  position: relative;
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-vivere);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.guide-card:hover {
  box-shadow: var(--shadow-lg);
}
.guide-card-bar {
  width: 6px;
  flex-shrink: 0;
}
.guide-card-body {
  flex: 1;
  padding: var(--space-lg);
  min-width: 0;
}
.guide-card-meta {
  font-size: var(--text-sm);
  color: var(--metal);
  margin-bottom: var(--space-xs);
}
.guide-card-meta time {
  font-weight: 600;
  color: var(--text-main);
}
.guide-card-time {
  margin-left: var(--space-sm);
}
.guide-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: var(--leading-tight);
}
.guide-card-type {
  margin-bottom: var(--space-sm);
}
.event-type-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--metal-dark);
  color: var(--white);
  border-radius: 0.25rem;
}
.guide-card-location {
  font-size: var(--text-sm);
  color: var(--metal);
  margin-bottom: var(--space-xs);
}
.guide-card-desc {
  font-size: var(--text-sm);
  color: var(--metal-mid);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.guide-card-distance {
  margin-bottom: var(--space-sm);
}
.guide-distance-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  color: var(--white);
}
.distance-onsite .guide-card-bar,
.distance-onsite .guide-distance-badge { background: #15803d; color: #fff; }
.distance-delta .guide-card-bar,
.distance-delta .guide-distance-badge { background: #ca8a04; color: #fff; }
.distance-western-slope .guide-card-bar,
.distance-western-slope .guide-distance-badge { background: #c2410c; color: #fff; }
.distance-region .guide-card-bar,
.distance-region .guide-distance-badge { background: #9f1239; color: #fff; }
.guide-card-cta {
  margin-top: var(--space-md);
  margin-bottom: 0;
}
.guide-card-link {
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
}
.guide-card-link:hover {
  color: var(--accent-gold-dark);
  text-decoration: underline;
}
.guide-empty {
  padding: var(--space-2xl);
  text-align: center;
  background: var(--primary-50);
  border: 1px dashed var(--border);
  border-radius: var(--radius-vivere);
  color: var(--metal);
}
body[data-page="calendar"] .guide-strip--results .guide-empty {
  max-width: 480px;
  margin: var(--space-2xl) auto 0;
}

@media (min-width: 640px) {
  .guide-filters {
    flex-wrap: nowrap;
  }
  .guide-filter-select {
    min-width: 12rem;
  }
}

/* ---------- Events Guide: Timeline layout (calendar.html only, Brandsmen-inspired) ---------- */
body[data-page="calendar"] .guide-timeline {
  position: relative;
  padding-bottom: 80px;
}
body[data-page="calendar"] .guide-timeline-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(90deg, var(--forest-mid) 0%, var(--forest) 50%, var(--forest-mid) 100%);
  color: var(--black-900);
}
body[data-page="calendar"] .guide-timeline-road-svg {
  width: 100%;
  height: 100%;
  display: block;
}
body[data-page="calendar"] .guide-list--timeline {
  position: relative;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}
body[data-page="calendar"] .guide-strip--results .guide-timeline {
  padding-bottom: 80px;
  margin-top: var(--space-xl);
}
body[data-page="calendar"] .guide-list--timeline .guide-card {
  position: relative;
  display: grid;
  grid-template-columns: 6px 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "bar step" "body body" "connector connector";
  background: var(--forest-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-vivere);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: visible;
}
body[data-page="calendar"] .guide-list--timeline .guide-card-bar {
  grid-area: bar;
  width: 6px;
  border-radius: var(--radius-vivere) 0 0 0;
}
body[data-page="calendar"] .guide-list--timeline .guide-card-step {
  grid-area: step;
  align-self: start;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 var(--space-sm);
  margin: var(--space-md) var(--space-md) 0 0;
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
  background: rgba(197, 160, 89, 0.95);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
body[data-page="calendar"] .guide-list--timeline .guide-card-body {
  grid-area: body;
  padding: var(--space-lg);
}
body[data-page="calendar"] .guide-list--timeline .guide-card-connector {
  grid-area: connector;
  position: relative;
  height: 40px;
  margin: 0 auto;
  width: 2px;
  background: linear-gradient(180deg, var(--forest-mid) 0%, var(--forest) 100%);
}
/* Arrow head between events (pathway) */
body[data-page="calendar"] .guide-list--timeline .guide-card-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--forest);
}
/* No arrow after the last event */
body[data-page="calendar"] .guide-list--timeline .guide-card:last-child .guide-card-connector {
  background: transparent;
  height: 16px;
}
body[data-page="calendar"] .guide-list--timeline .guide-card:last-child .guide-card-connector::after {
  display: none;
}
body[data-page="calendar"] .guide-list--timeline .guide-card-body {
  background: var(--glass-bg);
  border-radius: 0 0 var(--radius-vivere) var(--radius-vivere);
}
body[data-page="calendar"] .guide-list--timeline .guide-card-title {
  font-size: var(--text-lg);
}
@media (min-width: 640px) {
  body[data-page="calendar"] .guide-list--timeline .guide-card {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }
  body[data-page="calendar"] .guide-list--timeline .guide-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  body[data-page="calendar"] .guide-list--timeline .guide-card:nth-child(even) .guide-card-step {
    margin-left: var(--space-md);
    margin-right: 0;
  }
}

/* ---------- Gallery / Event Highlights ---------- */
.gallery-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
.gallery-intro {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}
.gallery-item {
  margin: 0;
}
.gallery-item-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-vivere);
  overflow: hidden;
  background: var(--black-900);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.gallery-item-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}
.gallery-item-btn img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.gallery-item-caption {
  font-weight: 600;
  font-size: var(--text-sm);
}
.gallery-item-event {
  font-size: 0.75rem;
  opacity: 0.9;
}
.gallery-empty {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--metal);
  background: var(--primary-50);
  border: 1px dashed var(--border);
  border-radius: var(--radius-vivere);
}
.gallery-empty code {
  font-size: 0.9em;
  background: var(--silver-pale);
  padding: 2px 6px;
  border-radius: 4px;
}

/* The Experience page */
.experience-intro {
  position: relative;
  overflow: hidden;
}
.experience-intro--mountains .experience-mountains--intro {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  color: var(--black-900);
}
.experience-intro--mountains .experience-mountains--intro svg {
  width: 100%;
  height: 100%;
  display: block;
}
.experience-divider {
  width: 100%;
  height: 60px;
  color: var(--black-900);
  margin-top: -1px;
}
.experience-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-divider--mountains-footer {
  width: 100%;
  height: 120px;
  color: var(--black-900);
}
.section-divider--mountains-footer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.experience-segment {
  position: relative;
  margin-top: 0;
  padding-top: var(--space-2xl);
}
.experience-silhouette {
  position: absolute;
  bottom: var(--space-lg);
  width: 280px;
  max-width: 40%;
  height: 100px;
  pointer-events: none;
  color: var(--black-900);
}
.experience-silhouette svg {
  width: 100%;
  height: 100%;
  display: block;
}
.experience-silhouette--rodeo { right: var(--space-lg); }
.experience-silhouette--concert { left: var(--space-lg); }
.experience-silhouette--festival { right: var(--space-lg); }
@media (max-width: 639px) {
  .experience-silhouette { width: 140px; height: 60px; }
  .experience-intro--mountains .experience-mountains--intro { height: 100px; }
}

/* Location page: geoback as section background (representation of place) */
#location.content-section.page-mountains-intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.92) 100%),
    url('assets/images/geoback.webp') center / cover no-repeat;
  background-color: var(--primary-50);
}

/* Global mountain silhouettes — all pages */
.page-mountains-intro {
  position: relative;
  overflow: hidden;
}
.page-mountains-intro .page-mountains-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  color: var(--black-900);
}
.page-mountains-intro .page-mountains-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-divider--mountains {
  width: 100%;
  height: 60px;
  color: var(--black-900);
  margin-top: -1px;
}
.section-divider--mountains svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-divider--mountains-footer {
  width: 100%;
  height: 120px;
  color: var(--black-900);
}
.section-divider--mountains-footer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-mountains-silhouette {
  position: absolute;
  bottom: var(--space-lg);
  width: 220px;
  max-width: 35%;
  height: 80px;
  pointer-events: none;
  color: var(--black-900);
}
.page-mountains-silhouette svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-mountains-silhouette--right { right: var(--space-lg); }
.page-mountains-silhouette--left { left: var(--space-lg); }
@media (max-width: 639px) {
  .page-mountains-intro .page-mountains-svg { height: 80px; }
  .page-mountains-silhouette { width: 120px; height: 50px; }
}

.experience-photos {
  margin-top: var(--space-xl);
  min-height: 120px;
  text-align: center;
}
.experience-photos-link {
  display: inline-block;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-sm);
  background: var(--primary-50);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(197, 160, 89, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.experience-photos-link:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(197, 160, 89, 0.2);
  transform: translateY(-2px);
}
.experience-photos-img {
  display: block;
  width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
}
.experience-photos-note {
  font-size: var(--text-sm);
  color: var(--metal);
  background: var(--primary-50);
  border: 1px dashed var(--border);
  border-radius: var(--radius-vivere);
  padding: var(--space-lg);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.experience-photos-note code {
  font-size: 0.9em;
  background: var(--silver-pale);
  padding: 2px 6px;
  border-radius: 4px;
}
.experience-photos-note .experience-photos-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  color: var(--accent-gold);
  animation: experience-photos-pulse 2s ease-in-out infinite;
}
.experience-photos-note .experience-photos-icon svg {
  width: 100%;
  height: 100%;
}
@keyframes experience-photos-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--space-xs);
}
.gallery-lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.gallery-lightbox-close:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}
.gallery-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.gallery-lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--space-xs);
}
.gallery-lightbox-caption {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-base);
}

/* Print — hide nav, hero, decorative UI; show content */
@media print {
  .skip-link,
  .navbar,
  .hero,
  .arena-data-strip,
  .back-to-top,
  .reach-bar,
  .section-divider { display: none !important; }
  body { background: #fff; }
  #main-content, .main-inner { max-width: 100%; box-shadow: none; }
  a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"])::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}
