/* Sendang Rejosari — Tropical Spring Oasis Design */
:root {
  --spring: #0EA5A0;
  --spring-light: #5EEAD4;
  --spring-dark: #0F766E;
  --forest: #1B4332;
  --forest-mid: #2D6A4F;
  --mist: #F0FDFA;
  --mist-dark: #CCFBF1;
  --white: #FFFFFF;
  --coral: #F97316;
  --coral-dark: #EA580C;
  --deep: #134E4A;
  --text: #134E4A;
  --text-muted: #52796F;
  --shadow: 0 4px 24px rgba(19, 78, 74, 0.08);
  --shadow-lg: 0 16px 48px rgba(19, 78, 74, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--mist);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; flex-shrink: 0; }

a {
  color: var(--spring-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--forest); }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--spring);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

section { padding: clamp(4rem, 8vw, 6rem) 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--spring) 0%, var(--spring-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 165, 160, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 165, 160, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--deep);
  border-color: var(--spring-light);
}
.btn-secondary:hover {
  background: var(--mist-dark);
  border-color: var(--spring);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}
.btn-coral:hover { transform: translateY(-2px); color: var(--white); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* Header */
.header-wrap { position: sticky; top: 0; z-index: 1000; }

.header {
  background: rgba(240, 253, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 165, 160, 0.1);
  transition: box-shadow var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest);
  flex-shrink: 0;
}
.logo img { width: 44px; height: 44px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-desktop {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--spring);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--forest); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-header-wa {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.btn-header-wa:hover { transform: scale(1.08); color: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(19, 78, 74, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.nav-mobile.open { opacity: 1; visibility: visible; }

.nav-mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.nav-mobile.open .nav-mobile-panel { transform: translateX(0); }

.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.nav-mobile ul { list-style: none; margin-top: 2rem; }
.nav-mobile li { border-bottom: 1px solid var(--mist-dark); }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-weight: 500;
  color: var(--forest);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 78, 74, 0.82) 0%,
    rgba(27, 67, 50, 0.55) 45%,
    rgba(14, 165, 160, 0.25) 100%
  );
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-drops {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.water-drop {
  position: absolute;
  width: 8px;
  height: 12px;
  background: rgba(94, 234, 212, 0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall linear infinite;
}
@keyframes dropFall {
  0% { transform: translateY(-20px) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(100vh) scale(0.5); opacity: 0; }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(6rem, 12vw, 8rem);
  color: var(--white);
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(94, 234, 212, 0.2);
  border: 1px solid rgba(94, 234, 212, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--spring-light);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: italic;
  color: var(--spring-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 480px;
}

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--spring-light);
}
.stat-item span {
  font-size: 0.72rem;
  opacity: 0.85;
  line-height: 1.3;
  display: block;
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Ticket Banner */
.ticket-banner {
  background: linear-gradient(90deg, var(--forest) 0%, var(--spring-dark) 100%);
  color: var(--white);
  padding: 1.25rem 0;
}
.ticket-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--spring-light);
}
.ticket-price small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
  font-family: var(--font-body);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--spring);
}
.about-visual-badge strong { display: block; color: var(--forest); }
.about-visual-badge p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist-dark);
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Facilities */
.facilities { background: var(--white); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.facility-card {
  background: var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(14, 165, 160, 0.08);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.facility-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.facility-body { padding: 1.25rem 1.5rem 1.5rem; }
.facility-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.facility-body p { font-size: 0.9rem; color: var(--text-muted); }
.facility-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--spring-dark);
  background: var(--mist-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* Experience / Journey */
.journey { background: linear-gradient(180deg, var(--mist) 0%, var(--mist-dark) 100%); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}

.journey-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.journey-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--spring), var(--spring-dark));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}
.journey-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.journey-step p { font-size: 0.85rem; color: var(--text-muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(19,78,74,0.6));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(19, 78, 74, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Pricing */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.price-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--mist-dark);
  text-align: center;
  transition: all var(--transition);
}
.price-card:hover { border-color: var(--spring); box-shadow: var(--shadow-lg); }
.price-card--featured {
  background: linear-gradient(160deg, var(--forest) 0%, var(--deep) 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.03);
}
.price-card--featured h3,
.price-card--featured .price-amount { color: var(--white); }
.price-card--featured p { color: rgba(255,255,255,0.8); }

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--spring-dark);
  margin: 1rem 0;
}
.price-amount span { font-size: 0.9rem; font-weight: 400; font-family: var(--font-body); }

.price-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}
.price-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li::before { content: '✓'; color: var(--spring); font-weight: 700; }
.price-card--featured .price-features li::before { color: var(--spring-light); }

/* Menu highlight */
.menu-section { background: var(--mist); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.menu-item strong { color: var(--forest); }
.menu-item span { color: var(--spring-dark); font-weight: 600; white-space: nowrap; }

/* Testimonials */
.testimonials { background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%); color: var(--white); }
.testimonials .section-label { color: var(--spring-light); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-desc { color: rgba(255,255,255,0.75); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-stars { color: #FBBF24; margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; opacity: 0.9; font-style: italic; }
.testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--spring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; opacity: 0.7; }

/* FAQ */
.faq-list { margin-top: 2rem; max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--mist-dark);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  text-align: left;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--spring);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.location-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.location-info h3 { margin-bottom: 1rem; }
.location-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.location-detail-icon { font-size: 1.2rem; flex-shrink: 0; }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/11;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.route-steps {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
}
.route-steps h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--spring-dark); }
.route-steps ol {
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.route-steps li { margin-bottom: 0.35rem; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--spring) 0%, var(--spring-dark) 50%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 8vw, 5rem) 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { opacity: 0.9; max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* Footer */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer h4 { color: var(--spring-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; font-family: var(--font-body); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer a:hover { color: var(--spring-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; max-width: 100%; }
  .ticket-banner-inner { justify-content: center; text-align: center; }
}

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