/* ============================================================
   FESTIVAL DO CARACOL DA LAGOINHA — style.css
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #0d0a06;
  color: #f5f0e8;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- VARIABLES ---------- */
:root {
  --gold: #f5a623;
  --gold-light: #ffc84a;
  --gold-dark: #c47d12;
  --green-dark: #1a3a1f;
  --green: #2d5a35;
  --brown: #3d1f0a;
  --cream: #f5f0e8;
  --shadow-gold: 0 0 30px rgba(245, 166, 35, 0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 8px;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a0a00;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-badge.light { background: rgba(245,166,35,0.18); color: var(--gold); border: 1px solid rgba(245,166,35,0.4); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #1a0a00;
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 1.1rem;
  color: #6b5c47;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #1a0a00;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(245,166,35,0.45), 0 2px 8px rgba(0,0,0,0.3);
  animation: shimmer 3s infinite;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(245,166,35,0.65), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-huge {
  font-size: 1.3rem;
  padding: 22px 56px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.1);
}

.btn-nav {
  background: var(--gold);
  color: #1a0a00;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-2px); }

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(13,10,6,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px;
  padding: 12px 16px 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(245,166,35,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  white-space: nowrap;
  max-width: 95vw;
}
.sticky-cta.visible { opacity: 1; pointer-events: all; }
.sticky-cta span { font-size: 0.9rem; color: var(--cream); }
.btn-sticky {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0a00;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.btn-sticky:hover { transform: scale(1.05); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.animate-fadein { animation: fadeInUp 0.8s ease both; }
.animate-fadedown { animation: fadeDown 0.6s ease both; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.logo-img {
  width: 130px;
  height: 98px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
  /* Fallback blend enquanto canvas não processa */
  mix-blend-mode: screen;
  filter: brightness(1.6) contrast(1.2) saturate(0.9);
  transition: filter 0.3s;
}
/* Quando canvas processou: remove blend e mostra PNG transparente */
.logo-img.canvas-processed {
  mix-blend-mode: normal;
  filter: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end; /* Move content to the bottom */
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}

.hero-overlay {
  display: none; /* Removed completely to make background bright and fully visible */
}

/* Fairy lights */
.lights-row {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  gap: 0;
  overflow: hidden;
}

.light-bulb {
  position: absolute;
  top: 0;
  width: 18px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.light-bulb::before {
  content: '';
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}
.light-bulb::after {
  content: '';
  width: 14px;
  height: 18px;
  background: radial-gradient(circle at 50% 40%, #fffde0, #f5c842, #e8a020);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 12px 6px rgba(245,180,35,0.6), 0 0 24px 10px rgba(245,140,10,0.25);
  animation: pulse 2s ease-in-out infinite;
}

/* Particles */
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle linear infinite;
  opacity: 0.6;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 120px 24px 60px; /* Reduced bottom padding */
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong { color: var(--gold-light); }

.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text strong { color: rgba(255,255,255,0.92); }

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  animation: floatBob 2s ease-in-out infinite;
}
.scroll-arrow {
  font-size: 1.4rem;
  margin-top: 4px;
  color: var(--gold);
}

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  background: linear-gradient(90deg, #e8900a, #f5a623, #ffc84a, #f5a623, #e8900a);
  background-size: 300% 100%;
  animation: shimmer 4s ease infinite;
  padding: 14px 24px;
  text-align: center;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.urgency-icon { font-size: 1.3rem; }
.urgency-text { font-weight: 700; font-size: 0.95rem; color: #1a0a00; }
.urgency-btn {
  background: #1a0a00;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}
.urgency-btn:hover { background: #2d1a00; transform: scale(1.05); }

/* ---------- COUNTDOWN ---------- */
.countdown-section {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1500 50%, #1a0a00 100%);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.countdown-label {
  font-size: 1rem;
  color: rgba(245,166,35,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 32px;
}
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap; /* SEMPRE numa só linha */
  margin-bottom: 32px;
  overflow-x: auto;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: clamp(12px, 2.5vw, 24px) clamp(10px, 3vw, 32px);
  min-width: 0;
  flex: 1;
  max-width: 130px;
  backdrop-filter: blur(8px);
}
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(245,166,35,0.5);
  min-width: 2ch;
  display: inline-block;
  text-align: center;
}
.countdown-unit {
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  color: rgba(245,166,35,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.countdown-suffix {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.countdown-sep {
  font-size: clamp(1.4rem, 4vw, 4rem);
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
  padding-bottom: clamp(12px, 2vw, 24px);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---------- INTRO TEXT SECTION ---------- */
.intro-text-section {
  background: linear-gradient(180deg, #1a0a00 0%, #0d0a06 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(245,166,35,0.15);
}
.intro-text-content {
  max-width: 800px;
  margin: 0 auto;
}
.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.intro-title .gold {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.intro-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 28px;
}
.intro-lead .gold { color: var(--gold); }
.intro-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.intro-body {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 18px;
}
.intro-body strong { color: rgba(255,255,255,0.92); }
.intro-body.urgency-inline {
  color: rgba(245,166,35,0.85);
  font-size: 1rem;
  margin-top: 8px;
  padding: 14px 20px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.intro-body.urgency-inline strong { color: var(--gold-light); }


/* ---------- FEATURES ---------- */
.features {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.features .section-title,
.features .section-badge { }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card--highlight {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border: none;
}
.feature-card--highlight h3,
.feature-card--highlight p { color: rgba(255,255,255,0.9); }
.feature-card--highlight::before { display: none; }
.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: floatBob 3s ease-in-out infinite;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a0a00;
  margin-bottom: 12px;
}
.feature-card p {
  color: #6b5c47;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: #0d0a06;
  padding-bottom: 80px;
}
.gallery-header {
  text-align: center;
  padding: 80px 24px 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6px;
}

/* Galeria com imagem única */
.gallery-grid--single {
  grid-template-columns: 1fr;
  max-width: 1000px;
  padding: 0 24px;
}
.gallery-item--hero {
  aspect-ratio: auto; /* Allow natural height */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.2); /* Slight background just in case */
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item--hero img {
  width: 100%;
  height: auto;
  max-height: 85vh; /* Prevent it from being too massive on huge screens */
  object-fit: contain; /* Never crop the photo */
  transition: transform 0.6s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gallery-cta { text-align: center; padding-top: 48px; }

/* ---------- EXPERIENCE ---------- */
.experience {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.experience-bg {
  position: absolute;
  inset: 0;
}
.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,10,6,0.95) 0%,
    rgba(13,10,6,0.80) 50%,
    rgba(13,10,6,0.3) 100%
  );
}
.experience-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 80px 0;
}
.experience-title { margin-bottom: 28px; }
.experience-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}
.experience-text strong { color: var(--gold-light); }
.experience-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 36px;
  line-height: 1.4;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #f9f5ef;
  padding: 100px 0;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: #4a3a2a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: #1a0a00;
  font-size: 0.9rem;
}
.testimonial-author span {
  display: block;
  color: #8a7a6a;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---------- SOCIAL PROOF ---------- */
.social-proof {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2010 50%, var(--green-dark) 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}
.proof-item {
  text-align: center;
  padding: 24px 16px;
}
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245,166,35,0.4);
}
.proof-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.proof-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- BOOKING ---------- */
.booking {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
}
.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,10,6,0.88);
}
.booking-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.booking-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.booking-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.booking-detail strong { color: var(--gold-light); }
.booking-detail a { color: var(--gold); font-weight: 700; }
.detail-icon { font-size: 1.3rem; width: 28px; text-align: center; }
.booking-urgency {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 20px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Form */
.booking-form-wrap { position: relative; }
.booking-form,
.booking-success {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.booking-success { display: none; text-align: center; }
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a0a00;
  margin-bottom: 28px;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #3d2a1a;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e5d9cc;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #1a0a00;
  background: #faf7f3;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: #fff;
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #1a0a00;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
  animation: shimmer 3s infinite;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(245,166,35,0.55); }
.btn-submit:active { transform: translateY(0); }
.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: #8a7a6a;
  margin-top: 14px;
}

/* Success */
.success-animation { margin-bottom: 24px; }
.success-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(34,197,94,0.4);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-check {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}
.booking-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a0a00;
  margin-bottom: 12px;
}
.booking-success p {
  color: #4a3a2a;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.success-contact a { color: var(--gold-dark); }
.success-details {
  background: #f5f0e8;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
  color: #3d2a1a;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
}
.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,10,6,0.97) 0%,
    rgba(13,10,6,0.88) 55%,
    rgba(13,10,6,0.5) 100%
  );
}
.final-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 80px 0;
}
.final-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 36px;
}
.final-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.final-points p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 500;
}
.final-urgency {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 36px;
  padding: 14px 20px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #040200;
  padding: 60px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(245,166,35,0.15);
}
.footer-logo { margin-bottom: 32px; display: flex; justify-content: center; }
.footer-logo-img {
  width: 110px;
  height: 83px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.8) contrast(1.2) saturate(0.85);
  opacity: 0.9;
  display: block;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 32px;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer-item a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.footer-item a:hover { color: var(--gold-light); }
.footer-icon { font-size: 1.1rem; }
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  margin-top: 8px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--single { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .navbar { padding: 16px 20px; }
  .hero-content { padding: 100px 24px 60px; }
  .experience-overlay {
    background: rgba(13,10,6,0.92);
  }
  .final-overlay {
    background: rgba(13,10,6,0.92);
  }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; aspect-ratio: 4/3; }
  
  /* Countdown adjustments to fit in one line */
  .countdown-grid { gap: 4px; padding: 0; }
  .countdown-item { min-width: 0; padding: 12px 6px; }
  .countdown-num { font-size: clamp(1.2rem, 6.5vw, 2.5rem); min-width: unset; }
  .countdown-sep { font-size: clamp(1.2rem, 6.5vw, 2.5rem); padding-bottom: 12px; }
  .countdown-unit { font-size: clamp(0.5rem, 2vw, 0.7rem); }
  
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .sticky-cta span { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form, .booking-success { padding: 28px 20px; }
  .navbar { padding: 14px 16px; }
  .logo-img { width: 90px; height: 68px; }
  .urgency-inner { gap: 8px; }
  .urgency-text { font-size: 0.82rem; }
}
