/* ========================================
   DESIGN SYSTEM - Itsy Bitsy Brazzy
   ======================================== */

:root {
  /* Colors - Orange gradient theme */
  --color-primary: #D4893D;
  --color-primary-light: #E8A04A;
  --color-primary-dark: #B8702E;
  --color-gradient-start: #D4893D;
  --color-gradient-end: #C67830;
  --color-dark: #1F1F1F;
  --color-dark-lighter: #2A2A2A;
  --color-cream: #FAF8F5;
  --color-peach: #F5EAE5;
  --color-text-dark: #333333;
  --color-text-light: #666666;
  --color-charcoal: #333333;
  --color-charcoal-light: #666666;
  --color-white: #FFFFFF;
  --color-badge: #C87A8E;
  
  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  /* Reflects the actual rendered header height (header-top row + header-inner row + paddings).
     Mobile header stacks contact info on its own row so it is taller than a typical single-row header. */
  --header-height: 128px;
}

@media (min-width: 768px) {
  :root {
    --header-height: 128px;
  }
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.text-gold {
  background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-light {
  color: var(--color-text-light);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */

.section-heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-heading h2 {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-top: var(--space-sm);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-gradient-start) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 2px solid transparent;
}

.btn-white:hover {
  background-color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   ANIMATIONS - Base Classes
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-fade.visible {
  opacity: 1;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ========================================
   ANIMATIONS - Keyframes
   ======================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-dark);
  /* Tighter on mobile, more breathing room from tablet/desktop. */
  padding: var(--space-xs) 0;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

@media (min-width: 768px) {
  .header {
    padding: var(--space-sm) 0;
  }
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background-color var(--transition-fast), opacity var(--transition-fast);
}

.header-social-link:hover,
.header-social-link:focus-visible {
  color: var(--color-primary-light);
  background-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.header-social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  /* Mobile: compact horizontal gap, near-zero row-gap so wrapping doesn't add extra height. */
  gap: 0 6px;
  row-gap: 0;
  max-width: 100%;
  min-width: 0;
}

.header-contact-sep {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  flex-shrink: 0;
  user-select: none;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* On mobile we keep the row tight: padding provides the tap target instead of min-height. */
  min-height: 0;
  padding: 4px 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  max-width: 100%;
}

.header-contact-link[href^="tel:"] {
  white-space: nowrap;
  flex-shrink: 0;
}

.header-contact-link[href^="mailto:"] {
  min-width: 0;
  text-align: center;
}

.header-contact-link:hover {
  opacity: 0.85;
}

/* Mobile: only show the phone number in the header strip.
   The email is still accessible from the footer and the contact form on every page. */
@media (max-width: 767px) {
  .header-contact-link[href^="mailto:"],
  .header-contact-sep {
    display: none;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo img, .logo svg {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-dark);
  padding: calc(6.75rem + var(--space-xl)) var(--space-lg) var(--space-lg);
  transition: right var(--transition-normal);
  z-index: 999;
}

.nav-menu.active {
  right: 0;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .header-top {
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-sm);
  }

  .header-contact {
    justify-content: flex-end;
    gap: 0 var(--space-sm);
  }

  .header-contact-link {
    min-height: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .header-social-link {
    width: 32px;
    height: 32px;
  }

  .header-social-icon {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
  }
  
  .nav-list {
    flex-direction: row;
    align-items: center;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .nav-overlay {
    display: none;
  }
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark);
  overflow: hidden;
  /* Account for the fixed header (top) and reserve just enough space for the scroll-indicator
     (50px tall, sitting at bottom: var(--space-lg) = 32px → claims the bottom ~82px of the hero).
     The hero-content also has 32px of its own internal bottom padding, so this value gives a
     small but visible gap between the BOEK ONS button and the bouncing scroll-wheel icon.
     padding-top is exactly the header height (no extra) so the centered content (and logo)
     sit slightly higher in the hero. box-sizing: border-box is set globally. */
  padding-top: var(--header-height);
  padding-bottom: calc(var(--space-xl) + var(--space-md));
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-lg);
  animation: fadeIn 1s ease forwards;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto var(--space-lg);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  text-wrap: balance;
}

/* Keep the orange phrase ("vol energie") together so it never breaks mid-phrase. */
.hero h1 .text-gold {
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-white);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 3px;
  animation: pulse 1.5s infinite;
}

/* ========================================
   EVENT BANNER (Scrolling Marquee)
   ======================================== */

.event-banner {
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  overflow: hidden;
  padding: 1rem 0;
}

.event-banner-track {
  display: flex;
  animation: scrollBanner 20s linear infinite;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .event-banner-track {
    animation-duration: 12s;
  }
}

.event-item {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .event-item {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

.diamond {
  margin-left: 1rem;
  opacity: 0.7;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  background-color: var(--color-cream);
}

.about-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-text {
  text-align: left;
}

.about-text p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.about-text p:first-of-type strong {
  color: var(--color-text-dark);
}

.about-highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.about-socials {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.about-socials-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.about-socials-icons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.about-social-link:hover,
.about-social-link:focus-visible {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.about-social-icon {
  width: 30px;
  height: 30px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.about-images .image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-images img {
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.about-images .image-container:hover img {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .about-layout {
    flex-direction: row;
    align-items: center;
  }
  
  .about-text {
    flex: 0 0 55%;
    padding-right: var(--space-lg);
  }
  
  .about-images {
    flex: 0 0 45%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .about-images .image-container {
    width: 180px;
    flex-shrink: 0;
  }
  
  .about-images img {
    width: 100%;
    height: 220px;
  }
  
  .about-images .image-container:first-child {
    margin-top: 0;
  }
  
  .about-images .image-container:last-child {
    margin-top: var(--space-xl);
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  background-color: var(--color-peach);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  text-align: center;
  padding: var(--space-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-text-dark);
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .services-grid .service-card:nth-child(1) {
    grid-column: 1 / 3;
  }
  
  .services-grid .service-card:nth-child(2) {
    grid-column: 3 / 5;
  }
  
  .services-grid .service-card:nth-child(3) {
    grid-column: 5 / 7;
  }
  
  .services-grid .service-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  
  .services-grid .service-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

/* ========================================
   MUSIC SECTION
   ======================================== */

.music {
  background-color: var(--color-cream);
}

.music-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: var(--color-charcoal);
}

.music-artists {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .music-artists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.artist-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.artist-info h3 {
  font-size: 1.25rem;
}

.artist-info p {
  font-size: 0.95rem;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.artist-info h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-charcoal);
}

.artist-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.artist-info p {
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-md);
}

.spotify-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: #1DB954;
  font-weight: 600;
  font-size: 0.9rem;
}

.spotify-icon {
  width: 24px;
  height: 24px;
  fill: #1DB954;
}

.artist-card:hover .spotify-link {
  text-decoration: underline;
}

.music-note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-charcoal-light);
  margin-top: var(--space-lg);
  font-style: italic;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
  background-color: var(--color-peach);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  color: var(--color-dark);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-badge);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.pricing-title {
  margin-bottom: var(--space-xs);
}

.pricing-duration {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
}

.pricing-for {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  color: currentColor;
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--color-dark);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
}

.gallery .section-heading h2,
.gallery .section-heading h3,
.gallery .section-subtitle {
  color: var(--color-charcoal);
}

.gallery-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  min-height: 100vh;
}

.gallery-page .section-subtitle {
  text-align: center;
  margin-top: var(--space-sm);
  opacity: 0.85;
}

.gallery-cta {
  margin-top: var(--space-2xl);
  text-align: center;
}

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

@media (min-width: 640px) {
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-page .gallery-grid-full {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: auto;
  gap: clamp(8px, 1.4vw, 16px);
  justify-content: start;
}

.gallery-page .gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
}

.gallery-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page .gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-page .gallery-link:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.gallery-tabs {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  margin: 0 0 var(--space-lg);
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.gallery-tab:hover,
.gallery-tab:focus-visible {
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  color: var(--color-white);
  transform: translateY(-1px);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tab {
    transition: none;
  }
}

.gallery-section {
  margin-top: var(--space-2xl);
  scroll-margin-top: calc(var(--header-height) + 80px);
}

.gallery-section:first-of-type {
  margin-top: var(--space-xl);
}

.section-heading-sub {
  margin-bottom: var(--space-lg);
}

.section-heading-sub h3 {
  display: inline-block;
  margin-bottom: var(--space-xs);
  font-size: 1.75rem;
  color: var(--color-charcoal);
}

.section-heading-sub::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  margin: var(--space-xs) auto 0;
  border-radius: var(--radius-full);
}

.section-heading-sub .section-subtitle {
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.image-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.image-credit {
  position: absolute;
  bottom: 8px;
  left: 8px;
  max-width: calc(100% - 16px);
  background-color: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  z-index: 11;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

a.image-credit {
  cursor: pointer;
}

a.image-credit:hover,
a.image-credit:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-charcoal);
  outline: none;
  transform: translateY(-1px);
}

.gallery-page .image-credit {
  font-size: 0.72rem;
  bottom: 6px;
  left: 6px;
  padding: 3px 8px;
}

@media (prefers-reduced-motion: reduce) {
  a.image-credit {
    transition: none;
  }
  a.image-credit:hover,
  a.image-credit:focus-visible {
    transform: none;
  }
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  padding: var(--space-xl);
  text-align: center;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.5);
}

.play-button svg {
  width: 30px;
  height: 30px;
  fill: var(--color-dark);
  margin-left: 4px;
}

.video-placeholder p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* gallery-page denser grid overrides the home grid layout */
.gallery-page .gallery-item img {
  height: 100%;
}

@media (min-width: 1024px) {
  .gallery-page .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-page .gallery-item:first-child img,
  .gallery-page .gallery-item:nth-child(2) img,
  .gallery-page .gallery-item:nth-child(n+3) img {
    height: 100%;
  }
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  border: none;
  padding: 0;
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  color: var(--color-white);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.lightbox[open] {
  display: grid;
  grid-template-rows: 1fr auto;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  overflow: hidden;
}

.lightbox-image {
  max-width: 95vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-loading::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: lightbox-spin 0.8s linear infinite;
}

@keyframes lightbox-spin {
  to { transform: rotate(360deg); }
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-btn:hover,
.lightbox-btn:focus-visible {
  background-color: var(--color-primary);
  outline: none;
}

.lightbox-prev {
  left: clamp(8px, 2vw, 24px);
}

.lightbox-next {
  right: clamp(8px, 2vw, 24px);
}

.lightbox-close {
  position: absolute;
  top: clamp(8px, 2vw, 16px);
  right: clamp(8px, 2vw, 16px);
  transform: none;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox-caption {
  flex: 1;
  text-align: left;
}

.lightbox-counter {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-btn,
  .lightbox-loading::after {
    transition: none;
    animation: none;
  }
}

/* ========================================
   EVENTS SECTION
   ======================================== */

.events {
  padding: var(--space-2xl) 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.events .section-heading h2,
.events .section-heading h3 {
  color: var(--color-white);
}

.events .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.events .section-heading--past {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.events .section-heading--past h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.events .section-heading--past::after {
  width: 40px;
  height: 3px;
}

.events-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
}

.events-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.events-loading[hidden] {
  display: none;
}

.events-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(212, 137, 61, 0.25);
  border-top-color: var(--color-primary);
  animation: events-spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes events-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-spinner {
    animation-duration: 2.5s;
  }
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.events-list--past .event-card {
  background-color: rgba(255, 255, 255, 0.025);
}

.events-list--past .event-date {
  opacity: 0.85;
}

.event-card {
  display: flex;
  align-items: stretch;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.event-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 165, 116, 0.45);
  transform: translateY(-2px);
}

.event-date {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: var(--space-xs);
  background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  text-align: center;
  line-height: 1;
}

.event-date-day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-date-month {
  margin-top: 3px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-date-year {
  margin-top: 2px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.event-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.event-title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-white);
}

.event-time {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.event-time-icon {
  margin-right: 4px;
}

.event-location {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.event-location-icon {
  margin-right: 4px;
}

@media (max-width: 480px) {
  .event-card {
    padding: var(--space-xs) var(--space-sm);
    gap: var(--space-xs);
  }

  .event-date {
    min-width: 56px;
  }

  .event-date-day {
    font-size: 1.25rem;
  }

  .event-title {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-card {
    transition: none;
  }
  .event-card:hover {
    transform: none;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
  background-color: var(--color-peach);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.form-label-optional {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  border: 2px solid var(--color-peach);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input {
  border-radius: var(--radius-full);
}

.form-textarea {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.18);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-actions {
  display: flex;
  justify-content: stretch;
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .form-actions {
    justify-content: center;
  }

  .form-actions .btn {
    width: auto;
  }
}

.form-status {
  margin-top: var(--space-sm);
  min-height: 1.25rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--color-text-dark);
}

.form-status:empty {
  display: none;
}

.form-status-success {
  color: #2F7A33;
}

.form-status-error {
  color: #B33A3A;
}

/* Success toast popup */
.form-toast {
  position: fixed;
  top: calc(var(--header-height, 96px) + 16px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 32px);
  padding: 12px 20px 12px 14px;
  background-color: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -16px) scale(0.95);
  transition: opacity 0.28s ease-out, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
}

.form-toast.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.form-toast-message {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-toast-check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.form-toast-check-circle {
  stroke: var(--color-primary);
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
}

.form-toast-check-tick {
  stroke: var(--color-primary);
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}

.form-toast.show .form-toast-check-circle {
  animation: toastDrawCircle 0.5s ease-out 0.08s forwards;
}

.form-toast.show .form-toast-check-tick {
  animation: toastDrawTick 0.32s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes toastDrawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes toastDrawTick {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 480px) {
  .form-toast {
    font-size: 0.88rem;
    padding: 10px 16px 10px 12px;
  }

  .form-toast-check {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-toast {
    transition: opacity 0.15s linear;
    transform: translate(-50%, 0) scale(1);
  }

  .form-toast.show .form-toast-check-circle,
  .form-toast.show .form-toast-check-tick {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.form-privacy {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.5;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text-dark);
}

.contact-item a,
.contact-item p {
  color: var(--color-primary);
  font-size: 1rem;
  transition: opacity var(--transition-fast);
}

.contact-item a:hover {
  opacity: 0.8;
}

@media (min-width: 640px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: var(--space-2xl);
    text-align: left;
    align-items: start;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand {
  align-items: center;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-logo {
  max-width: 80px;
  opacity: 0.9;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  max-width: 22ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0;
  margin: 0;
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-contact p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-area {
  opacity: 0.75;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}

.footer-divider {
  height: 1px;
  margin: var(--space-xl) 0 var(--space-md);
  background: linear-gradient(90deg, transparent 0%, var(--color-gradient-start) 50%, transparent 100%);
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  margin: 0;
  font-size: 0.75rem;
}

.footer-credit {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.85;
}

.footer-credit .footer-link {
  font-size: 0.75rem;
}

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

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

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

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

  .event-banner-track {
    animation: none !important;
    transform: none !important;
  }

  .scroll-indicator {
    animation: none !important;
  }

  .animate-on-scroll,
  .animate-scale,
  .animate-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}
