/* ============================================================
   MAGIC STUDIO — CSS
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c27a;
  --gold-dark: #9a7730;
  --dark: #111210;
  --dark2: #1a1a17;
  --dark3: #1f1e1a;
  --white: #f0ede6;
  --off-white: #1a1a17;
  --text: #f0ede6;
  --text-muted: rgba(240,237,230,0.55);
  --border: rgba(201,168,76,0.15);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.5);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --transition: 0.3s ease;

  /* Theme Backgrounds */
  --announcement-bg: linear-gradient(90deg, #0d1210, #111410);
  --why-us-bg: linear-gradient(135deg, #0d1210 0%, #131a17 60%, #0f1410 100%);
  --book-bg: linear-gradient(135deg, #0d0d0d 0%, #1c1610 100%);
  --map-bg: #0f1210;
  --footer-bg: #0a0a09;
  --nav-bg: rgba(13,13,13,.92);
  --nav-bg-scrolled: rgba(13,13,13,.98);
  --nav-text: rgba(255,255,255,.8);
  --nav-subtitle: rgba(255,255,255,.5);
  --footer-text-title: #f0ede6;
  --footer-text-link: rgba(255,255,255,.5);

  /* Title Specific Colors */
  --title-color: #f0ede6;
  --text-dark: #111210;
}

body.light-mode {
  --dark: #fcfcf9;
  --dark2: #f5f4ef;
  --dark3: #eae9e0;
  --white: #ffffff;
  --off-white: #f5f4ef;
  --text: #1d1e1c;
  --text-muted: rgba(29,30,28,0.65);
  --border: rgba(154,119,48,0.25);
  
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.1);

  /* Theme Background Overrides */
  --announcement-bg: linear-gradient(90deg, #f0ede6, #e7e4db);
  --why-us-bg: linear-gradient(135deg, #f5f4ef 0%, #eae9e0 60%, #dfded3 100%);
  --book-bg: linear-gradient(135deg, #fcfcf9 0%, #f3efe2 100%);
  --map-bg: #eae9e0;
  --footer-bg: #eae9e0;
  --nav-bg: rgba(252,252,249,.92);
  --nav-bg-scrolled: rgba(252,252,249,.98);
  --nav-text: rgba(29,30,28,.8);
  --nav-subtitle: rgba(29,30,28,.5);
  --footer-text-title: #1d1e1c;
  --footer-text-link: rgba(29,30,28,.6);

  --title-color: #1d1e1c;
}

/* ── Light Mode — Fix all hardcoded white/light text ── */
body.light-mode .announce-inner span { color: rgba(29,30,28,.75); }
body.light-mode .announce-inner a { color: var(--gold-dark); }

/* Why Us */
body.light-mode .why-left h2 { color: #1d1e1c; }
body.light-mode .why-left > p { color: rgba(29,30,28,.65); }
body.light-mode .why-item strong { color: #1d1e1c; }
body.light-mode .why-item p { color: rgba(29,30,28,.55); }
body.light-mode .section-label.light { background: rgba(154,119,48,.12); color: var(--gold-dark); }

/* Booking */
body.light-mode .book-left h2 { color: #1d1e1c; }
body.light-mode .book-left h2 em { color: var(--gold-dark); }
body.light-mode .book-left > p { color: rgba(29,30,28,.65); }
body.light-mode .bp { color: rgba(29,30,28,.8); }
body.light-mode .booking-form h3 { color: #1d1e1c; }
body.light-mode .bf-field label { color: rgba(29,30,28,.75); }
body.light-mode .bf-note { color: rgba(29,30,28,.5); }

/* Contact form */
body.light-mode .contact-form h3 { color: #1d1e1c; }
body.light-mode .cf-field label { color: rgba(29,30,28,.75); }

/* About — founder chips */
body.light-mode .founder-chip strong { color: #1d1e1c; }
body.light-mode .founder-chip span { color: rgba(29,30,28,.45); }

/* Footer */
body.light-mode .footer-brand > div span { color: rgba(29,30,28,.45); }
body.light-mode .footer-tagline { color: rgba(29,30,28,.55); }
body.light-mode .footer-socials a { background: rgba(29,30,28,.08); }
body.light-mode .footer-bottom { color: rgba(29,30,28,.4); }
body.light-mode .footer-bottom a { color: rgba(29,30,28,.5); }
body.light-mode .footer-bottom strong { color: rgba(29,30,28,.7) !important; }
body.light-mode .footer-bottom a[style*="color:var(--gold)"] { color: var(--gold-dark) !important; }

/* Map section */
body.light-mode .map-detail strong { color: #1d1e1c; }
body.light-mode .map-detail p { color: rgba(29,30,28,.65); }

/* Cart */
body.light-mode .cart-head h3 { color: #1d1e1c; }
body.light-mode .cart-empty-state p { color: rgba(29,30,28,.6); }
body.light-mode .ci-name { color: #1d1e1c; }

/* Credits - dark card always visible, no overrides needed */

/* Wa features */
body.light-mode .wa-feat { color: rgba(29,30,28,.65); }


html { scroll-behavior: smooth; }
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: #0a0a09; }
html::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--dark); line-height: 1.6; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.full-w { width: 100%; }

/* ── Section Headers ── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,255,255,.15); color: var(--gold-light); }
.section-title { font-family: var(--font-serif); font-size: clamp(28px,4vw,48px); color: var(--title-color); line-height: 1.2; }
.section-sub { color: var(--text-muted); font-size: 16px; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.reviews-section .section-title, .contact-section .section-title { color: var(--text-dark); }
.reviews-section .section-sub, .contact-section .section-sub { color: rgba(29,30,28,.65); }

/* ── Buttons ── */
.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 8px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(201,168,76,.35);
  cursor: pointer; border: none;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,168,76,.5); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  font-weight: 600; font-size: 15px; padding: 13px 30px; border-radius: 8px;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 8px;
  transition: var(--transition); cursor: pointer; border: none;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: var(--nav-bg-scrolled); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px; color: var(--text);
  flex-shrink: 0;
}
.nav-brand strong { display: block; font-family: var(--font-serif); font-size: 18px; color: var(--gold); }
.nav-brand span { font-size: 11px; color: var(--nav-subtitle); }

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  color: var(--nav-text); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.theme-toggle-btn {
  color: var(--text); font-size: 18px;
  background: var(--border); border-radius: 8px;
  padding: 8px 12px; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.theme-toggle-btn:hover { background: rgba(201,168,76,0.1); transform: scale(1.05); }
.cart-btn {
  position: relative; color: var(--text); font-size: 18px;
  background: var(--border); border-radius: 8px;
  padding: 8px 12px; transition: var(--transition);
}
.cart-btn:hover { background: rgba(201,168,76,0.1); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #000; font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 8px; transition: var(--transition);
}
.btn-book:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,.4); }
.hamburger { display: none; color: var(--white); font-size: 22px; padding: 6px; }

/* Mobile menu */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--dark); flex-direction: column; gap: 0;
    padding: 16px 0; display: none; border-bottom: 1px solid rgba(201,168,76,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-radius: 0; }
  .hamburger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; }
.hero-image-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  height: 100%; width: 100%;
}
.himg { height: 100%; overflow: hidden; }
.himg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
.hero:hover .himg img { transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-serif); font-size: clamp(42px, 7vw, 88px);
  color: var(--white); line-height: 1.08; margin-bottom: 20px;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.hstat { text-align: center; padding: 0 28px; }
.hstat span { display: block; font-size: 28px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.hstat small { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hstat:first-child { padding-left: 0; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--announcement-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 10px 0;
}
.announce-inner {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 24s linear infinite;
}
.announce-inner span { white-space: nowrap; font-size: 13px; color: rgba(255,255,255,.75); }
.announce-inner a { color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.cat-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.cat-btn {
  padding: 10px 22px; border-radius: 100px;
  border: 2px solid var(--border); color: var(--text-muted);
  font-size: 14px; font-weight: 500; transition: var(--transition); background: var(--dark2);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 600;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.4); background: var(--dark3); }
.sc-img {
  position: relative; width: 100%; height: 160px; overflow: hidden;
}
.sc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .sc-img img { transform: scale(1.07); }
img[src*="service_32.jpg"] {
  object-position: center 18% !important;
}
.sc-cat-tag {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.sc-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.sc-icon-name { display: flex; align-items: center; gap: 10px; }
.sc-icon { font-size: 22px; flex-shrink: 0; }
.sc-name { font-family: var(--font-serif); font-size: 16px; color: var(--text); font-weight: 600; line-height: 1.3; }
.sc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.sc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.sc-duration { font-size: 12px; color: var(--text-muted); opacity: 0.8; }
.sc-add-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111; font-size: 12px; font-weight: 700;
  padding: 7px 18px; border-radius: 6px; transition: var(--transition);
  letter-spacing: .04em;
}
.sc-add-btn:hover { opacity: .88; transform: scale(1.05); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--why-us-bg);
  padding: 96px 0;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-family: var(--font-serif); font-size: clamp(28px,3.5vw,44px); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.why-left > p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 28px; flex-shrink: 0; width: 52px; height: 52px; background: rgba(201,168,76,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.why-item strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 4px; }
.why-item p { color: rgba(255,255,255,.55); font-size: 14px; }

.why-images {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px;
}
.wi { border-radius: 12px; overflow: hidden; }
.wi img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.wi:hover img { transform: scale(1.06); }
.wi-1 { grid-column: 1 / 3; border-radius: 12px; }
.wi-2, .wi-3 { border-radius: 12px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.gtab {
  padding: 10px 24px; border-radius: 100px; border: 2px solid var(--border);
  color: var(--text-muted); font-size: 14px; font-weight: 500; transition: var(--transition); background: var(--dark2);
}
.gtab:hover, .gtab.active { background: var(--gold); border-color: var(--gold); color: #111; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 48px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; position: relative;
  background: var(--dark2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; }
.gi-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { margin-top: 72px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.video-card {
  border-radius: 12px; overflow: hidden; background: var(--dark2);
  cursor: pointer; position: relative;
}
.video-thumb { aspect-ratio: 16/9; background: var(--dark3); position: relative; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3); transition: var(--transition);
}
.play-btn span {
  width: 52px; height: 52px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark);
}
.video-card:hover .play-btn { background: rgba(0,0,0,.5); }
.video-info { padding: 14px 16px; }
.video-info h4 { color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.video-info span { color: var(--text-muted); font-size: 12px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--dark); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 24px; }
.team-card {
  background: var(--dark2); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center;
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tc-avatar {
  width: 100%; aspect-ratio: 1; background: linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-family: var(--font-serif); color: #fff; font-weight: 700;
}
.tc-info { padding: 20px 16px; }
.tc-name { font-family: var(--font-serif); font-size: 18px; margin-bottom: 4px; }
.tc-role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.tc-exp { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.tc-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.tc-skill { font-size: 11px; background: rgba(201,168,76,.1); color: var(--gold-dark); padding: 4px 10px; border-radius: 100px; font-weight: 500; }
.tc-rating { color: var(--gold); font-size: 13px; font-weight: 600; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--white); }
.rating-summary { display: flex; align-items: center; gap: 20px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.big-rating { font-size: 56px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); line-height: 1; }
.stars { color: #f59e0b; font-size: 20px; }
.rating-count { font-size: 13px; color: var(--text-muted); }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.google-badge:hover { border-color: var(--gold); }

.reviews-slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; margin-bottom: 56px; }
.review-card {
  background: var(--dark2); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border); transition: var(--transition);
}
.review-card:hover { border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow); }
.rc-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.rc-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.rc-name { font-weight: 600; font-size: 15px; }
.rc-date { font-size: 12px; color: var(--text-muted); }
.rc-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.rc-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-style: italic; }
.rc-service { font-size: 11px; color: var(--gold); font-weight: 600; margin-top: 10px; }

.photo-reviews { margin-top: 48px; }
.photo-reviews-title { text-align: center; font-family: var(--font-serif); font-size: 22px; margin-bottom: 24px; }
.photo-review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.pr-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: var(--dark2); cursor: pointer; }
.pr-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pr-item:hover img { transform: scale(1.08); }

.review-cta { text-align: center; margin-top: 48px; padding: 40px; background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); }
.review-cta p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }

/* ============================================================
   BOOKING
   ============================================================ */
.book-section { background: var(--book-bg); }
.book-section .section-label { background: var(--border); }
.book-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.book-left h2 { font-family: var(--font-serif); font-size: clamp(28px,3.5vw,44px); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.book-left h2 em { color: var(--gold); }
.book-left > p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 32px; }
.book-perks { display: flex; flex-direction: column; gap: 12px; }
.bp { color: rgba(255,255,255,.8); font-size: 15px; display: flex; align-items: center; gap: 8px; }

.booking-form {
  background: var(--dark2); border-radius: 16px; padding: 32px;
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}
.booking-form h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 24px; color: #f0ede6; }
.bf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bf-field label { font-size: 13px; font-weight: 600; color: rgba(240,237,230,0.75); }
.bf-field input, .bf-field select, .bf-field textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 14px; transition: var(--transition);
  background: var(--dark); color: var(--text);
}
.bf-field input:focus, .bf-field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bf-services-box {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px; min-height: 52px; font-size: 13px; color: var(--text-muted);
  background: var(--dark);
}
.bf-empty a { color: var(--gold); }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }
.btn-apply {
  background: var(--dark); color: var(--white); font-weight: 600;
  padding: 0 18px; border-radius: 8px; font-size: 13px; transition: var(--transition);
}
.btn-apply:hover { background: var(--gold); }
.bf-total { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.bf-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

.booking-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 64px; margin-bottom: 16px; }
.booking-success h3 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 12px; }
.booking-success p { color: var(--text-muted); margin-bottom: 20px; }

/* ============================================================
   MAP
   ============================================================ */
.map-section { padding: 80px 0; background: var(--map-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.map-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.map-detail { display: flex; gap: 14px; margin-bottom: 24px; }
.map-detail strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.map-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.map-detail a { color: var(--gold); }
.md-icon { font-size: 22px; flex-shrink: 0; width: 44px; height: 44px; background: var(--dark2); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.ai-1, .ai-2 { border-radius: 16px; overflow: hidden; }
.ai-1 { height: 380px; margin-bottom: 16px; }
.ai-2 { height: 260px; }
.ai img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ai:hover img { transform: scale(1.04); }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p { color: var(--text-muted); font-size: 16px; line-height: 1.75; }
.founders-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.founder-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 18px 10px 10px;
}
.fc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.founder-chip strong { display: block; font-size: 14px; font-weight: 600; color: #f0ede6; }
.founder-chip span { font-size: 12px; color: rgba(240,237,230,0.4); }

/* ============================================================
   SOCIAL
   ============================================================ */
.social-section { background: var(--off-white); }
.social-platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.social-platform-card { background: var(--dark2); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.sp-icon { font-size: 28px; }
.sp-head strong { display: block; font-size: 15px; }
.sp-head span { font-size: 12px; color: var(--text-muted); }
.sp-follow-btn { margin-left: auto; padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.insta-btn { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.fb-btn { background: #1877f2; color: #fff; }
.wa-btn { background: #25d366; color: #fff; }
.sp-stats { display: flex; gap: 0; margin-bottom: 20px; border: 1px solid rgba(201,168,76,0.12); border-radius: 10px; overflow: hidden; }
.sp-stat { flex: 1; text-align: center; padding: 12px 8px; border-right: 1px solid rgba(201,168,76,0.12); }
.sp-stat:last-child { border-right: none; }
.sp-stat strong { display: block; font-size: 18px; color: var(--text); font-family: var(--font-serif); }
.sp-stat span { font-size: 11px; color: var(--text-muted); }
.insta-feed { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 14px; }
.insta-post { aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: var(--dark2); cursor: pointer; }
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-post:hover img { transform: scale(1.1); }
.fb-posts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.fb-post { display: flex; gap: 12px; align-items: center; padding: 10px; background: var(--dark); border-radius: 8px; }
.fb-post-icon { font-size: 20px; }
.fb-post-text { font-size: 13px; color: var(--text-muted); }
.wa-features { display: flex; flex-direction: column; gap: 10px; }
.wa-feat { font-size: 14px; color: rgba(240,237,230,0.65); display: flex; align-items: center; gap: 8px; }
.sp-view-all { font-size: 13px; color: var(--gold); font-weight: 600; display: block; text-align: center; }
.sp-view-all:hover { text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info .section-title { text-align: left; font-size: 32px; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cm {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 10px; transition: var(--transition);
  background: var(--dark2);
}
.cm:hover { border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow); background: var(--dark3); }
.cm-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.cm strong { display: block; font-size: 14px; font-weight: 600; }
.cm span { font-size: 13px; color: var(--text-muted); }
.contact-social-row { display: flex; gap: 10px; }
.csoc {
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: var(--transition); background: var(--dark2);
}
.csoc:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.contact-form { background: var(--dark2); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 24px; color: var(--text); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-field label { font-size: 13px; font-weight: 600; color: rgba(240,237,230,0.75); }
.cf-field input, .cf-field select, .cf-field textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 14px; transition: var(--transition);
  background: var(--dark); color: var(--text);
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.contact-success { text-align: center; padding: 60px 20px; background: var(--dark2); border-radius: var(--radius); border: 1px solid var(--border); }

/* ── Site Credits ── */
.site-credits {
  margin-top: 56px;
  padding: 0;
}
.credits-card {
  background: #111210;
  border-radius: 16px;
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.credits-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
.credits-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c9a84c;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.credits-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.credits-designer,
.credits-powered-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.credits-label {
  font-size: 11px;
  color: rgba(240,237,230,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.credits-name {
  font-size: 22px;
  font-weight: 700;
  color: #f0ede6;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
}
.credits-phones {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.credits-phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,237,230,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}
.credits-phone:hover {
  color: #c9a84c;
}
.credits-separator {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
  flex-shrink: 0;
}
.credits-sevra-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 6px 18px 6px 6px;
}
.credits-sevra-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201,168,76,0.35);
}
.credits-sevra-name {
  font-size: 16px;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.14em;
  font-family: 'Inter', system-ui, sans-serif;
}
.credits-website-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a84c, #9a7730);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  letter-spacing: 0.02em;
}
.credits-website-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, #d4b45a, #a88338);
}
@media (max-width: 480px) {
  .credits-main { gap: 16px; }
  .credits-separator { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent); }
  .credits-name { font-size: 18px; }
  .credits-website-btn { font-size: 13px; padding: 11px 22px; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--footer-bg); padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand span { font-size: 28px; }
.footer-brand strong { display: block; font-family: var(--font-serif); font-size: 20px; color: var(--gold); }
.footer-brand > div span { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; background: rgba(255,255,255,.06);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-col h4 { color: var(--footer-text-title); font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a, .footer-col span {
  display: block; color: var(--footer-text-link); font-size: 14px;
  margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; padding: 20px 0; font-size: 13px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px;
  background: var(--dark2); color: var(--text); z-index: 1101; box-shadow: -8px 0 48px rgba(0,0,0,.2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-family: var(--font-serif); font-size: 18px; }
.cart-head button { font-size: 20px; color: var(--text-muted); transition: var(--transition); }
.cart-head button:hover { color: var(--text); transform: scale(1.2); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty-state { text-align: center; padding: 40px 0; }
.cart-empty-state p { color: var(--text-muted); margin-bottom: 20px; }
.cart-item {
  display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border);
  align-items: center;
}
.ci-info { flex: 1; }
.ci-name { font-size: 14px; font-weight: 600; }
.ci-dur { font-size: 12px; color: var(--text-muted); }
.ci-price { font-size: 15px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.ci-remove { color: var(--text-muted); font-size: 18px; transition: var(--transition); }
.ci-remove:hover { color: #dc2626; transform: scale(1.2); }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-subtotal, .cart-points {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; margin-bottom: 8px;
}
.cart-subtotal span:last-child { font-size: 20px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.cart-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wa {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  background: #25d366; color: #fff; border-radius: 100px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; box-shadow: 0 4px 24px rgba(37,211,102,.4);
  font-size: 14px; font-weight: 600; transition: var(--transition);
  max-width: 220px;
}
.float-wa:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.float-wa span { white-space: nowrap; }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; background: var(--dark);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================================
   TOAST
   ============================================================ */
.site-toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: var(--white);
  padding: 12px 28px; border-radius: 100px; font-size: 14px; font-weight: 500;
  z-index: 2000; opacity: 0; transition: all .35s; pointer-events: none;
  white-space: nowrap;
}
.site-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid, .book-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-grid { grid-template-columns: 1fr 1fr; }
  .himg-3 { display: none; }
  .map-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hstat { padding: 0 12px; }
  .hstat-div { display: none; }
  .hero-image-grid { grid-template-columns: 1fr; }
  .himg-2 { display: none; }
  .why-images { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .wi-1 { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ai-badge { right: 0; }
  .cart-drawer { width: 100%; }
  .bf-row, .cf-row { grid-template-columns: 1fr; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
}
