/* ============================================================
   Royal Pavilion — Premium Function Hall Stylesheet
   ============================================================ */

:root {
  --gold: #D4AF37;
  --gold-soft: #e6c560;
  --gold-deep: #a8862a;
  --white: #ffffff;
  --charcoal: #1A1A1A;
  --charcoal-soft: #262626;
  --beige: #F8F5F0;
  --beige-deep: #ece5d8;
  --muted: #6b6b6b;

  --bg: var(--beige);
  --surface: #ffffff;
  --surface-2: #ffffff;
  --text: #1A1A1A;
  --text-soft: #4a4a4a;
  --border: rgba(26, 26, 26, 0.08);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.45);

  --ff-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

[data-theme="dark"] {
  --bg: #0e0e0e;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --text: #f5f1e8;
  --text-soft: #c9c4b8;
  --border: rgba(212, 175, 55, 0.15);
  --beige: #161616;
  --beige-deep: #1f1f1f;
  --glass: rgba(30, 30, 30, 0.55);
  --glass-border: rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-soft); }

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head .divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ---------- Loading screen ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--charcoal);
  display: grid; place-items: center; z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: var(--gold); }
.preloader-logo {
  font-family: var(--ff-serif); font-size: 2rem; letter-spacing: 0.3em;
  margin-bottom: 24px;
}
.preloader-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  margin: 0 auto;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-serif); font-size: 1.4rem; letter-spacing: 0.08em;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}
.brand-text { color: var(--text); }
.brand-text b { color: var(--gold); font-weight: 600; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.03em;
  position: relative; padding: 6px 0; color: var(--text);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--charcoal); color: #fff !important;
  padding: 10px 22px !important; border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.nav-cta::after { display: none; }

.nav-tools { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: transform 0.25s ease;
}
.icon-btn:hover { transform: rotate(15deg); }
.icon-btn svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 2; }

.menu-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0 0 0 30%;
    background: var(--surface);
    flex-direction: column; gap: 22px;
    padding: 100px 32px; align-items: flex-start;
    transform: translateX(100%); transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border);
  }
  .menu-toggle span {
    display: block; width: 22px; height: 2px; background: var(--text);
    position: relative; transition: 0.3s;
  }
  .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text);
    transition: 0.3s;
  }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 7px; }
  .menu-toggle.open span { background: transparent; }
  .menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
  .menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.04em; font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1a1a;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212, 175, 55, 0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.7); color: #fff;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-dark {
  background: var(--charcoal); color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-link {
  color: var(--gold); font-weight: 600; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding-top: 100px; padding-bottom: 60px;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-controls {
  position: absolute; bottom: 40px; right: 5%; z-index: 3;
  display: flex; gap: 12px;
}
.hero-controls button {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  display: grid; place-items: center; color: #fff;
  transition: background 0.25s ease;
}
.hero-controls button:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
.hero-dots {
  position: absolute; bottom: 56px; left: 5%; z-index: 3;
  display: flex; gap: 10px;
}
.hero-dots button {
  width: 30px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 2px;
  transition: background 0.3s ease;
}
.hero-dots button.active { background: var(--gold); }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  padding: 30px 0; display: none;
}
@media (min-width: 900px) {
  .hero-stats { display: block; }
  .hero-stats .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
  .hero-stats .num { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); }
  .hero-stats .lbl { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
}

/* ---------- Welcome ---------- */
.welcome {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center;
}
@media (max-width: 900px) { .welcome { grid-template-columns: 1fr; gap: 40px; } }
.welcome-media { position: relative; }
.welcome-media .main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background-size: cover; background-position: center;
}
.welcome-media .accent-img {
  position: absolute; right: -30px; bottom: -30px;
  width: 55%; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden;
  border: 8px solid var(--bg); box-shadow: var(--shadow-md);
  background-size: cover; background-position: center;
}
.welcome-media .badge {
  position: absolute; top: 30px; left: -30px;
  background: var(--gold); color: #1a1a1a;
  width: 130px; height: 130px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--ff-serif); font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.welcome-media .badge b { display: block; font-size: 1.6rem; color: var(--charcoal); }
@keyframes float { 50% { transform: translateY(-10px); } }

.welcome-text .eyebrow {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: inline-block;
}
.welcome-text h2 { margin-bottom: 22px; }
.welcome-text p { margin-bottom: 20px; }
.welcome-features { list-style: none; margin: 28px 0 36px; display: grid; gap: 14px; }
.welcome-features li {
  display: flex; align-items: center; gap: 14px;
  color: var(--text); font-weight: 500;
}
.welcome-features .check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(212,175,55,0.15); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ---------- Highlights / Why ---------- */
.highlights {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.highlight {
  background: var(--surface); padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.highlight::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.highlight:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.highlight:hover::before { transform: scaleX(1); }
.highlight .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(212,175,55,0.12); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 22px;
  font-size: 1.5rem;
}
.highlight h3 { margin-bottom: 10px; font-size: 1.2rem; }
.highlight p { font-size: 0.95rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card .img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover .img::after { opacity: 1; }
.service-card .body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.service-card .btn-link { align-self: flex-start; }
.service-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(212,175,55,0.12); color: var(--gold);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Gallery preview / Gallery ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 40px;
}
.gallery-filters button {
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; transition: all 0.3s ease;
}
.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--charcoal); color: #fff; border-color: var(--charcoal);
}

.masonry {
  columns: 3 280px; column-gap: 20px;
}
.masonry .item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.masonry .item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.masonry img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.masonry .item:hover img { transform: scale(1.06); }
.masonry .item::after {
  content: "🔍"; position: absolute; inset: 0;
  background: rgba(26,26,26,0.5);
  display: grid; place-items: center; color: var(--gold);
  font-size: 2rem; opacity: 0; transition: opacity 0.3s ease;
}
.masonry .item:hover::after { opacity: 1; }
.masonry .item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 30px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .close, .lightbox .prev, .lightbox .next {
  position: absolute; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.2rem;
  backdrop-filter: blur(10px); transition: background 0.25s ease;
}
.lightbox .close:hover, .lightbox .prev:hover, .lightbox .next:hover { background: var(--gold); color: #1a1a1a; }
.lightbox .close { top: 24px; right: 24px; }
.lightbox .prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 24px; top: 50%; transform: translateY(-50%); }

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

/* ---------- Testimonials ---------- */
.testimonials { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212,175,55,0.1), transparent 50%);
}
.testimonials .container { position: relative; }
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,0.7); }

.t-track-wrap { position: relative; overflow: hidden; }
.t-track {
  display: flex; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.t-slide {
  flex: 0 0 100%; padding: 0 20px;
  display: flex; justify-content: center;
}
.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 50px 44px; max-width: 720px; width: 100%;
  text-align: center; position: relative;
}
.t-card .quote-icon {
  font-family: var(--ff-serif); font-size: 5rem;
  color: var(--gold); line-height: 1; margin-bottom: -20px;
}
.t-card p { color: rgba(255,255,255,0.9); font-size: 1.1rem; font-style: italic; margin-bottom: 28px; line-height: 1.7; }
.t-card .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--gold);
}
.t-card .author .name { font-family: var(--ff-serif); font-size: 1.1rem; color: #fff; }
.t-card .author .role { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.t-card .stars { color: var(--gold); margin-bottom: 18px; font-size: 1.1rem; letter-spacing: 0.15em; }

.t-controls { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.t-controls button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3); color: #fff;
  display: grid; place-items: center;
  transition: all 0.25s ease;
}
.t-controls button:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }

/* ---------- Counters ---------- */
.counters {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; text-align: center;
}
.counter .num {
  font-family: var(--ff-serif); font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold); margin-bottom: 6px;
}
.counter .lbl { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(26,26,26,0.7)),
              url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600&q=80") center/cover;
  border-radius: var(--radius-lg);
  padding: clamp(50px, 8vw, 90px) clamp(30px, 6vw, 70px);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.75);
  padding-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px;
  padding-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: #fff; font-family: var(--ff-sans); font-size: 0.85rem;
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 22px;
}
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer .brand-text { color: #fff; }
.footer p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer .contact-line { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer .contact-line .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(212,175,55,0.15); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0; font-size: 0.9rem;
}
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center; color: #fff;
  transition: all 0.25s ease;
}
.socials a:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); transform: translateY(-4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}

/* ---------- Page header (sub pages) ---------- */
.page-header {
  position: relative; height: 60vh; min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
              var(--header-img, url("https://images.unsplash.com/photo-1465495976277-4387d4b0e4a6?w=1800&q=80")) center/cover;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header .crumb {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.page-header .crumb a { color: var(--gold); }

/* ---------- About specifics ---------- */
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 50px;
}
.about-card {
  background: var(--surface); padding: 36px 30px; border-radius: var(--radius);
  border: 1px solid var(--border); text-align: center;
  transition: all 0.3s ease;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.about-card .ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  color: var(--gold); display: grid; place-items: center; margin: 0 auto 20px;
  font-size: 1.6rem;
}

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.35s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card .photo {
  aspect-ratio: 1; background-size: cover; background-position: center;
}
.team-card .info { padding: 24px 18px; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }

.timeline { position: relative; padding: 30px 0; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold), transparent);
}
@media (min-width: 700px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.t-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
@media (min-width: 700px) {
  .t-item { width: 50%; padding-left: 50px; padding-right: 0; }
  .t-item:nth-child(even) { margin-left: 50%; }
  .t-item:nth-child(odd) { text-align: right; padding-left: 0; padding-right: 50px; }
}
.t-item .dot {
  position: absolute; left: 11px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--gold);
}
@media (min-width: 700px) {
  .t-item .dot { left: auto; right: -10px; }
  .t-item:nth-child(even) .dot { left: -10px; right: auto; }
}
.t-item .year { color: var(--gold); font-family: var(--ff-serif); font-size: 1.4rem; margin-bottom: 4px; }
.t-item h3 { font-size: 1.15rem; margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; text-align: left;
  font-family: var(--ff-serif); font-size: 1.1rem;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(212,175,55,0.15); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 26px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 24px; }
.faq-a p { color: var(--text-soft); }

/* ---------- Contact / Booking ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: grid; gap: 18px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .ic {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(212,175,55,0.15); color: var(--gold);
  display: grid; place-items: center; font-size: 1.2rem;
}
.info-card h4 { font-family: var(--ff-sans); font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 6px; }
.info-card p { color: var(--text); font-weight: 500; }

.map-card {
  margin-top: 30px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e9e4d8, #d6cfbe);
  position: relative;
  display: grid; place-items: center;
}
.map-card .pin {
  background: var(--charcoal); color: var(--gold);
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--ff-serif); display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }

.booking-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow-md);
}
.booking-form h3 { margin-bottom: 6px; }
.booking-form .sub { margin-bottom: 30px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 8px; font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 14px 16px; border-radius: 10px;
  font-size: 0.95rem; transition: border 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field .error {
  color: #c0392b; font-size: 0.78rem; margin-top: 6px; min-height: 1em;
}
.form-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Modal */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  display: none; align-items: center; justify-content: center;
  z-index: 2500; padding: 20px;
  backdrop-filter: blur(6px);
}
.modal.open { display: flex; animation: fadeIn 0.3s ease; }
.modal-box {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 40px 36px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg); position: relative;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
}
.modal .icon-ok {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff; display: grid; place-items: center; margin: 0 auto 22px;
  font-size: 2rem; box-shadow: 0 10px 24px rgba(212,175,55,0.4);
}
.modal h3 { text-align: center; margin-bottom: 10px; }
.modal p { text-align: center; margin-bottom: 22px; }
.summary {
  background: var(--bg); border-radius: 12px; padding: 22px;
  display: grid; gap: 10px;
}
.summary .row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.summary .row span:first-child { color: var(--text-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }
.summary .row span:last-child { color: var(--text); font-weight: 600; }

/* My bookings list */
.bookings-list { display: grid; gap: 14px; margin-top: 30px; }
.booking-row {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.booking-row .meta { display: grid; gap: 4px; }
.booking-row .meta b { font-family: var(--ff-serif); font-size: 1.1rem; }
.booking-row .meta small { color: var(--text-soft); font-size: 0.82rem; }
.booking-row .status {
  background: rgba(212,175,55,0.15); color: var(--gold);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.booking-row button.del {
  color: #c0392b; font-size: 0.85rem; font-weight: 600;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); background: var(--gold-deep); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* utility */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }

/* ===== WhatsApp floating button ===== */
.whatsapp-fab{
  position:fixed; right:22px; bottom:90px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.18);
  transition:transform .25s ease, box-shadow .25s ease;
  animation:wa-pulse 2.2s ease-in-out infinite;
}
.whatsapp-fab svg{ width:32px; height:32px; }
.whatsapp-fab:hover{ transform:scale(1.08); box-shadow:0 14px 34px rgba(37,211,102,0.55); }
@keyframes wa-pulse{
  0%,100%{ box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
  50%   { box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width:600px){
  .whatsapp-fab{ width:52px; height:52px; right:16px; bottom:80px; }
  .whatsapp-fab svg{ width:28px; height:28px; }
}
