/* ============================================
   THE REUNION — Retro 70s Palette
   ============================================ */

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

:root {
  /* Earthy Foundation — Retro 70s */
  --cream: #FFF8EC;
  --cream-dark: #F5EDDF;
  --forest: #5B6B2D;
  --forest-deep: #3D4A1F;
  --forest-light: #6E7E38;
  --brown: #5A3520;
  --brown-light: #8B6240;
  --bark: #4A2E1A;

  /* Pop Accents — Terracotta & Mustard */
  --orange: #C2552D;
  --orange-dark: #A34425;
  --orange-light: #D4724A;
  --yellow: #C49A02;
  --yellow-light: #D4B340;
  --yellow-warm: #B89000;

  /* Supporting */
  --sky: #2E6B7B;
  --sage: #6B7D3A;
  --rose: #9B2D5E;

  /* Type Scale */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
  --fs-hero: clamp(4rem, 2.5rem + 7vw, 10rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-2xl: 10rem;

  --transition: 0.3s ease;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

::selection {
  background: var(--yellow);
  color: var(--forest-deep);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--forest);
  border-radius: var(--radius-full);
  border: 2px solid var(--cream);
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-2xl);
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: var(--sp-md);
}

.section-title-light {
  color: var(--cream);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  text-decoration: none;
  padding: 0.7em 2em;
  border: none;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--cream);
  color: var(--orange);
  box-shadow: 0 5px 0 var(--orange-dark), 0 6px 16px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--orange-dark), 0 10px 24px rgba(0,0,0,0.15);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--orange-dark), 0 3px 8px rgba(0,0,0,0.1);
}

.btn-light {
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 5px 0 var(--bark), 0 6px 16px rgba(0,0,0,0.12);
}

.btn-light:hover {
  background: var(--yellow);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--bark), 0 10px 24px rgba(0,0,0,0.15);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-sm) 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: var(--forest-deep);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(28,63,39,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  color: var(--cream);
  text-decoration: none;
  transition: all var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--sp-sm);
  align-items: center;
}

.nav-links a {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  padding: 0.4em 1.2em !important;
}

.nav-cta:hover {
  background: var(--yellow) !important;
  color: var(--forest-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  overflow: hidden;
  padding-top: 80px;
}

/* Hero logo */
.hero-logo {
  max-width: clamp(400px, 65vw, 850px);
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-md);
  padding-bottom: 140px;
}


.hero-title {
  margin-bottom: var(--sp-md);
}


.hero-tagline-block {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
  margin-bottom: var(--sp-md);
}

.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  color: var(--cream);
  margin-bottom: 0.2em;
  letter-spacing: 0.03em;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: var(--fs-lg);
  color: rgba(255,248,236,0.7);
  font-style: italic;
  margin-bottom: var(--sp-lg);
}

.hero .btn {
  opacity: 0;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.1s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* --- Waves --- */
.wave {
  position: relative;
  margin-top: var(--sp-lg);
  margin-bottom: -2px;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* --- About --- */
.about {
  background: var(--cream);
  padding: var(--sp-lg) 0 0;
}

.about-grid {
  max-width: 680px;
  margin: 0 auto var(--sp-xl);
  text-align: center;
}

.about-lead {
  font-size: var(--fs-lg);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}

.about-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 520px;
  margin: var(--sp-md) auto;
}

.bubble {
  padding: 0.85rem 1.3rem;
  border-radius: 20px;
  color: var(--cream);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.4;
  max-width: 82%;
}

.bubble-left {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.bubble-right {
  align-self: flex-end;
  text-align: right;
  border-bottom-right-radius: 4px;
}

.bubble-forest { background: var(--forest); }
.bubble-terra { background: var(--orange); }
.bubble-bleu { background: var(--sky); }

.about-agree {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--brown);
  margin-bottom: var(--sp-sm);
}

.about-closing {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.4;
}

.about-vibes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  justify-content: center;
}

.vibe-card {
  padding: var(--sp-sm) var(--sp-md);
  background: var(--forest);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.vibe-card:hover {
  background: var(--forest-light);
}

.vibe-card p {
  font-style: italic;
  color: rgba(255, 248, 236, 0.85);
}

.about-statement {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  margin-bottom: var(--sp-sm);
}

.about-statement-inner {
  background: var(--forest);
  color: var(--cream);
  padding: var(--sp-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-statement-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,140,40,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.statement-text {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.statement-text em {
  color: var(--orange-light);
  font-style: normal;
  font-family: 'Pacifico', cursive;
  font-size: 1.1em;
}

.about-wave-in,
.about-wave-out {
  margin-top: 0;
}

.about-details-band {
  position: relative;
  background: var(--forest);
  padding: calc(var(--sp-xl) / 2) 0 0;
}

.about-letter {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-letter p {
  font-size: var(--fs-lg);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
  color: rgba(255, 248, 236, 0.85);
}

.about-letter .about-signature {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-xl);
  color: var(--yellow-light);
  margin-top: var(--sp-md);
}

.about-headshots {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.headshot {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 3px solid rgba(255, 248, 236, 0.3);
  object-fit: cover;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: 0;
}

.about-col p {
  font-size: var(--fs-lg);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
  color: rgba(255, 248, 236, 0.85);
}

.about-col strong {
  color: var(--yellow);
}

.aside {
  font-style: italic;
  color: rgba(255, 248, 236, 0.5);
  font-size: var(--fs-sm);
}

.about-manifesto {
  text-align: center;
  padding: var(--sp-lg) 0;
}

.manifesto-item {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-light);
  margin-bottom: var(--sp-xs);
}

.manifesto-divider {
  color: var(--orange);
  font-size: 1.3rem;
  margin: var(--sp-md) auto;
  letter-spacing: 0.4em;
}

.manifesto-big {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-3xl);
  color: var(--forest);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: var(--sp-sm);
}

/* --- Venue --- */
.venue {
  background: var(--yellow);
  padding: var(--sp-xl) 0 0;
}

.venue .section-title {
  text-align: center;
  color: var(--forest-deep);
}

.venue-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-lg);
  font-size: var(--fs-lg);
  color: var(--brown);
}

.venue-tagline {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-xl);
  text-align: center;
  color: var(--forest-deep);
  margin-bottom: var(--sp-lg);
}

.venue-carousel {
  position: relative;
  margin-bottom: var(--sp-lg);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: var(--sp-sm);
}

.carousel-slide {
  min-width: calc((100% - 2 * var(--sp-sm)) / 3);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.carousel-dot.active {
  background: var(--cream);
}

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

.venue-section {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.venue-section h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
  color: var(--forest);
}

.venue-list {
  list-style: none;
  margin: var(--sp-sm) 0;
}

.venue-list li {
  padding: 0.5em 0;
  border-bottom: 2px dotted rgba(61,43,31,0.12);
  font-size: var(--fs-sm);
  padding-left: 0.5em;
}

.venue-list li::before {
  content: '~ ';
  color: var(--orange);
  font-weight: 700;
}

.venue-note {
  font-style: italic;
  font-size: var(--fs-sm);
  margin-top: var(--sp-sm);
  color: var(--brown-light);
}

.venue-coffee {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--yellow-light);
  padding: var(--sp-sm);
  margin: var(--sp-sm) 0;
  text-align: center;
  border-radius: var(--radius);
}

.venue-tagline-sm {
  font-style: italic;
  margin-top: var(--sp-sm);
}

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

.venue-meals-intro {
  max-width: 400px;
  margin: 0 auto var(--sp-md);
}

.venue-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

.venue-pill {
  color: var(--cream);
  padding: 0.4em 0.9em;
  border-radius: 99px;
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.venue-pill-forest { background: var(--forest); }
.venue-pill-terra { background: var(--orange); }
.venue-pill-bleu { background: var(--sky); }

.venue-meals-tagline {
  font-style: italic;
  color: var(--brown-light);
  font-size: var(--fs-sm);
  max-width: 380px;
  margin: 0 auto;
}

/* --- Offerings --- */
.offerings {
  background: var(--cream);
  padding: var(--sp-xl) 0 0;
}

.offerings .section-title {
  text-align: center;
}

.offerings-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-lg);
  font-size: var(--fs-lg);
  color: var(--brown);
}

.offerings-hint {
  display: inline-block;
  font-size: var(--fs-lg);
  color: var(--brown);
  background: var(--cream);
  padding: 0.4em 1.2em;
  border-radius: 999px;
  margin: 0 auto var(--sp-lg);
  text-align: center;
}

.offerings .container > .offerings-hint {
  display: block;
  width: fit-content;
}

.offerings-subheader {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  margin-bottom: var(--sp-md);
}

.offerings-grid + .offerings-subheader {
  margin-top: var(--sp-xl);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.offering-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.offering-card.has-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offering-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offering-content {
  padding: var(--sp-md);
}

.placeholder-gradient {
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff, #5f27cd);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.offering-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-sm);
}

.offering-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  color: var(--forest);
  margin-bottom: var(--sp-xs);
}

.offering-card p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--brown-light);
}

/* --- Agreements --- */
.agreements {
  background: var(--forest);
  padding: var(--sp-xl) 0 0;
}

.agreements .section-title {
  text-align: center;
}

.agreements-intro {
  text-align: center;
  color: rgba(255,248,236,0.75);
  font-family: 'Lato', sans-serif;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-xl);
}

.agreements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}

.agreements-grid .agreement-card {
  width: calc(33.333% - var(--sp-md));
}

.agreements-grid .agreement-card:nth-child(-n+2) {
  width: calc(33.333% - var(--sp-md));
}

.agreement-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  transition: all 0.3s ease;
  position: relative;
}

.agreement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.agreement-num {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-2xl);
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.agreement-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  color: var(--forest);
  margin-bottom: var(--sp-sm);
}

.agreement-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
  line-height: 1.7;
}

.agreement-aside {
  font-style: italic;
  color: var(--orange) !important;
  font-weight: 600;
}

/* --- FAQ --- */
.faq {
  background: var(--cream);
  padding: var(--sp-xl) 0 0;
}

.faq-cta {
  text-align: center;
  margin-top: var(--sp-xl);
  padding-bottom: var(--sp-md);
}

.btn-cta-bottom {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 5px 0 var(--orange-dark), 0 6px 16px rgba(0,0,0,0.12);
}

.btn-cta-bottom:hover {
  background: var(--yellow);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--orange-dark), 0 10px 24px rgba(0,0,0,0.15);
}

.tickets-wave-out {
  margin-top: 0;
  margin-bottom: -2px;
}

.faq .section-title {
  text-align: center;
}

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

.faq-item {
  border-bottom: 2px dotted rgba(61,43,31,0.15);
  overflow: hidden;
}

.faq-item summary {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--brown);
  padding: var(--sp-md) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1.3em;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: var(--sp-sm);
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--orange);
}

.faq-item summary:hover {
  color: var(--forest);
}

.faq-item summary:hover::after {
  background: var(--orange);
}

.faq-item[open] summary:hover::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 var(--sp-md);
  animation: faqOpen 0.3s ease;
}

.faq-answer p {
  font-size: var(--fs-sm);
  line-height: 1.8;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Tickets CTA --- */
.tickets {
  background: var(--orange);
  padding: var(--sp-xl) 0 0;
}

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

.tickets-eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-sm);
}

.tickets-title {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-hero);
  color: var(--cream);
  line-height: 1;
  margin-bottom: var(--sp-md);
  text-shadow: 3px 3px 0 var(--orange-dark);
}

.tickets-text {
  color: rgba(255,248,236,0.85);
  max-width: 600px;
  margin: 0 auto var(--sp-lg);
  font-size: var(--fs-lg);
}

.tickets-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  margin-bottom: var(--sp-sm);
  flex-wrap: wrap;
}

.tickets-price {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.tickets-per {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: rgba(255,248,236,0.75);
}

.tickets-original {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xl);
  color: rgba(255,248,236,0.45);
  margin-left: 0.5em;
  position: relative;
}

.tickets-original::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  background: var(--yellow);
  transform: rotate(-8deg);
  border-radius: 2px;
}

.tickets-value {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-sm);
}

.tickets-anchor {
  font-size: var(--fs-sm);
  font-style: italic;
  color: rgba(255,248,236,0.65);
  margin-bottom: var(--sp-md);
}

.tickets-transfer {
  font-size: var(--fs-xs);
  color: rgba(255,248,236,0.55);
  margin-top: var(--sp-sm);
}

.tickets-note {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,248,236,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: var(--sp-sm);
}

/* --- Footer --- */
.footer {
  background: var(--forest-deep);
  padding: var(--sp-lg) 0 var(--sp-md);
}

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

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: var(--fs-xl);
  color: var(--cream);
  margin-bottom: var(--sp-xs);
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,248,236,0.45);
  margin-bottom: var(--sp-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

.footer-links a {
  font-family: 'Quicksand', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--orange-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.6em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.footer-links a:hover {
  background: rgba(242,140,40,0.12);
  color: var(--cream);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255,248,236,0.25);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--forest-deep);
    flex-direction: column;
    padding: var(--sp-xl) var(--sp-md);
    gap: var(--sp-sm);
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: var(--fs-base);
  }

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


  .about-details {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .carousel-slide {
    min-width: calc(100% - 0 * var(--sp-sm));
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .agreements-grid {
    flex-direction: column;
  }

  .agreements-grid .agreement-card,
  .agreements-grid .agreement-card:nth-child(-n+2) {
    width: 100%;
  }

}

@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
