/* ================================================
   THE SANTANA EXPERIENCE — Main Stylesheet
   Mobile-First | Cloudflare Pages
   ================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Custom Properties — Black & Gold Luxury ── */
:root {
  --navy:        #080808;
  --emerald:     #111111;
  --gold:        #D4AF37;
  --gold-hover:  #C49A1F;
  --gold-rich:   #E8C84A;
  --gold-light:  rgba(212, 175, 55, 0.10);
  --gold-border: rgba(212, 175, 55, 0.20);
  --bg:          #080808;
  --surface:     #0E0E0E;
  --surface-2:   #141414;
  --text:        #E0D8CC;
  --text-muted:  rgba(224, 216, 204, 0.55);
  --white:       #FFFFFF;
  --gray-light:  rgba(212, 175, 55, 0.12);
  --gray-mid:    #6A6A60;

  --font-display: 'Great Vibes', cursive;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-sub:    'Playfair Display', serif;

  --radius:      12px;
  --radius-btn:  50px;
  --transition:  0.3s ease;
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.5);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.65);
  --shadow-lg:   0 14px 48px rgba(0,0,0,0.8);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.18);

  --nav-h:       68px;
}

/* ── Dark Mode (already dark; just reinforce) ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #060606;
    --surface:    #0C0C0C;
    --surface-2:  #121212;
  }
}

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

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

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

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

h3, h4 {
  font-family: var(--font-head);
}

.subhead {
  font-family: var(--font-sub);
  font-weight: 600;
}

h1 { font-size: clamp(1.8rem, 10vw, 6.5rem); }
h2 { font-size: clamp(1.4rem, 6.5vw, 5rem); }
h3 { font-size: clamp(1.1rem, 3.5vw, 1.65rem); }
h4 { font-size: 1rem; }

p { font-size: 1rem; color: var(--text); line-height: 1.7; }

@media (max-width: 480px) {
  html { font-size: 15px; }
  p, li, label, input, textarea, select { font-size: 0.9rem; }
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  min-height: 48px;
  min-width: 48px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,175,55,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.4);
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
}
.btn-ghost:hover { background: var(--gold-light); border-color: var(--gold); }

.btn:active { transform: scale(0.97); }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(6, 6, 6, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text .tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,245,240,0.8);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-book-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  min-height: 40px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 1.5rem 1.25rem 2rem;
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.mobile-menu nav a {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(245,245,240,0.85);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(245,245,240,0.08);
  font-size: 1rem;
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--gold); }

.mobile-menu .btn { width: 100%; justify-content: center; }

/* ── Page Padding ── */
.page-top { padding-top: var(--nav-h); }

/* ── Section Spacing ── */
section { padding-block: 4rem 4.5rem; }
section + section { border-top: 1px solid rgba(212,175,55,0.08); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 1rem;
  color: var(--gray-mid);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

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

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

/* Animated gradient fallback when no video */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(212,175,55,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(180,140,20,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #111008 50%, #080808 100%);
  animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0%   { opacity: 1; }
  50%  { opacity: 0.85; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245,245,240,0.85);
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInDown 0.7s ease 0.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s infinite 1s;
}
.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(245,245,240,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll .chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding-block: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.75rem);
  color: var(--gold);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.6);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ── Services Section ── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }

.service-icon svg { transition: var(--transition); }
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg ellipse,
.service-card:hover .service-icon svg line,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg polyline { stroke: var(--navy); }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-mid); margin-bottom: 1.25rem; }

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Gallery Section ── */
.gallery-section { background: var(--bg); }

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  min-height: 40px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(212,175,55,0.18);
  color: var(--gray-mid);
  background: var(--surface-2);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.gallery-grid {
  columns: 1;
  gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  border-radius: var(--radius);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-meta {
  color: var(--white);
}
.gallery-meta .event-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-meta .event-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-item.hidden { display: none; }
.gallery-item.fade-in { animation: fadeIn 0.4s ease both; }

/* ── Testimonials ── */
.testimonials-section { background: var(--navy); }

.testimonials-section .section-header h2,
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-header p { color: rgba(245,245,240,0.65); }

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0.5rem;
}

.testimonial-card {
  background: rgba(245,245,240,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star { color: var(--gold); font-size: 1.1rem; }

.testimonial-quote {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245,245,240,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.author-info .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.author-info .event {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.1rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── About Section ── */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.about-text .lead {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}

.about-text p { margin-bottom: 1rem; font-size: 0.95rem; }

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pill {
  background: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-btn);
}

/* ── Team Grid ── */
.team-section { background: var(--navy); padding-top: 0; }

.team-section .section-header h2 { color: var(--text); }
.team-section .section-label { color: var(--gold); }
.team-section .section-header p { color: rgba(245,245,240,0.6); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.team-card {
  background: rgba(245,245,240,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.35);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.5rem;
}
.team-card .name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.team-card .role {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.team-card .bio { font-size: 0.85rem; color: rgba(245,245,240,0.65); }

/* ── Booking / Contact ── */
.booking-section { background: var(--bg); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.booking-info h3 { margin-bottom: 1.25rem; }
.booking-info p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--gold); }
.contact-method .icon {
  width: 42px;
  height: 42px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method .label { font-size: 0.75rem; color: var(--gray-mid); }
.contact-method .value { font-weight: 600; font-size: 0.9rem; }

.booking-form-wrap {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow: var(--shadow-md);
}

.booking-form-wrap h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
label span { color: var(--gold); }

input, select, textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1.5px solid rgba(212,175,55,0.18);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem; /* 16px min prevents iOS zoom */
  color: var(--text);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
input.error, select.error, textarea.error {
  border-color: #e53e3e;
}
.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  display: none;
}
.field-error.visible { display: block; }

textarea { resize: vertical; min-height: 120px; }

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--gray-mid); }

.calendly-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  margin-top: 1.5rem;
}
.calendly-placeholder .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.calendly-placeholder h4 {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.calendly-placeholder p { color: rgba(245,245,240,0.7); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: fadeInUp 1s ease 1s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg { color: white; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(245,245,240,0.7);
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.75rem;
  color: rgba(245,245,240,0.6);
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-grid-preview {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(245,245,240,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,240,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── FAQ Accordion ── */
.faq-section {
  background: var(--bg);
  border-top: none;
}

.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gray-mid);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  padding-bottom: 1.25rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(245,245,240,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,245,240,0.4); }
.footer-bottom a { color: var(--gold); }

/* ── Inner Page Hero ── */
.page-hero {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 65%),
    linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 100%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  padding: calc(var(--nav-h) + 3rem) 1.25rem 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--text); margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin-inline: auto; }
.page-hero .section-label { color: var(--gold); }

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(245,245,240,0.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }

/* ================================================
   TABLET — 600px+
   ================================================ */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hero-ctas { flex-direction: row; justify-content: center; }
}

/* ================================================
   TABLET LARGE — 768px+
   ================================================ */
@media (min-width: 768px) {
  :root { --nav-h: 74px; }

  .nav-toggle { display: none; }
  .nav-links { display: flex; }

  .gallery-grid { columns: 2; gap: 1.25rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap img { height: 420px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

/* ================================================
   DESKTOP — 1024px+
   ================================================ */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 3; gap: 1.5rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.8fr; gap: 2rem; }

  .hero-ctas .btn { font-size: 1rem; padding: 1rem 2.25rem; }
}

/* ================================================
   DESKTOP WIDE — 1280px+
   ================================================ */
@media (min-width: 1280px) {
  section { padding-block: 5rem 5.5rem; }
  .gallery-grid { columns: 4; }
}

/* ── Section header muted text ── */
.section-header p { color: var(--text-muted); }

/* ── Pill tags ── */
.pill {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--text);
}

/* ── Stats bar label ── */
.stat-item .label { color: var(--text-muted); }

/* ── Testimonials section text ── */
.testimonials-section .section-header h2 { color: var(--text); }
.testimonials-section .section-header p { color: var(--text-muted); }
.testimonial-card { background: rgba(255,255,255,0.03); }
.testimonial-quote { color: rgba(224,216,204,0.88); }

/* ── FAQ ── */
.faq-question { color: var(--text); }
.faq-answer p { color: var(--text-muted); }
.faq-item { border-bottom-color: rgba(212,175,55,0.1); }

/* ── Footer ── */
.footer-links a { color: var(--text-muted); }
.footer-brand p { color: var(--text-muted); }
.footer-bottom p { color: rgba(224,216,204,0.3); }
.site-footer { background: #050505; border-top: 1px solid rgba(212,175,55,0.1); }

/* ── Mobile menu ── */
.mobile-menu { background: #070707; }
.mobile-menu nav a { border-bottom-color: rgba(212,175,55,0.08); }

/* ── Print ── */
@media print {
  .site-nav, .whatsapp-float, .hero-scroll, .mobile-menu { display: none; }
  .hero { min-height: auto; }
}
