/* ===================================================
 * GLAMOUR BRIDAL & MUA STUDIO — Dark Luxury Gold
 * Mobile-First · Vanilla CSS (no framework)
 * Demo Website Portfolio Wedding Vendor & MUA
 *
 * Tokens below mirror CONFIG.theme defaults so the page
 * never flashes the wrong palette before main.js boots.
 * =================================================== */

:root {
  /* Brand colours (overridden at runtime by CONFIG.theme) */
  --bg:            #0b0a0d;
  --bg-soft:       #141116;
  --surface:       rgba(255, 250, 240, 0.028);
  --surface-strong:rgba(255, 250, 240, 0.05);
  --border:        rgba(212, 175, 55, 0.14);
  --border-strong: rgba(212, 175, 55, 0.30);

  --text:          #e8e0d4;
  --heading:       #fbf5ea;
  --muted:         #a89e8c;
  --muted-2:       #807868;

  --accent:        #d4af37;   /* deep classic gold */
  --accent-2:      #f1d488;   /* light gold */
  --gold:          #e8c879;   /* bright gold */
  --gold-soft:     rgba(212, 175, 55, 0.12);
  --gold-line:     rgba(212, 175, 55, 0.42);
  --gold-glow:     rgba(212, 175, 55, 0.50);
  --gold-grad:     linear-gradient(135deg, #f8e9b8 0%, #e8c879 28%, #d4af37 58%, #b8902f 100%);

  --blush:         rgba(212, 175, 55, 0.10);
  --success:       #34d399;
  --success-soft:  rgba(52, 211, 153, 0.14);
  --success-line:  rgba(52, 211, 153, 0.30);
  --danger:        #c9796a;
  --danger-soft:   rgba(201, 121, 106, 0.14);
  --danger-line:   rgba(201, 121, 106, 0.30);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radius / shadow / motion */
  --radius-sm: 12px;
  --radius:    18px;
  --radius-xl: 26px;
  --shadow-md: 0 10px 36px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 16px 44px -12px var(--gold-glow);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(720px 480px at 84% -8%, rgba(212, 175, 55, 0.16), transparent 60%),
    radial-gradient(620px 460px at -8% 22%, rgba(232, 200, 121, 0.10), transparent 58%),
    radial-gradient(900px 640px at 50% 122%, rgba(212, 175, 55, 0.09), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* subtle warm grain/dot texture */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(251, 245, 234, 0.045) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 28%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 75% 55% at 50% 28%, #000 30%, transparent 100%);
  opacity: 0.6;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; color: inherit; }
input { font-family: var(--font-sans); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
::selection { background: var(--accent); color: #1a1408; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.18; }

.hidden { display: none !important; }
.center { text-align: center; }
.accent {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; }

.section { padding: 76px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent); }

/* =====================
   SECTION HEADINGS
   ===================== */
.section-head { margin-bottom: 42px; }
.section-head.center { text-align: center; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-label::before { content: "✦"; font-size: 10px; opacity: 0.9; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px); font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.section-title.center { text-align: center; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 600px; }
.section-sub.center { margin-left: auto; margin-right: auto; }
.section-sub.center-inline { display: inline-block; margin-bottom: 24px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 600; line-height: 1;
  border: 1px solid transparent; transition: var(--transition);
  white-space: nowrap; position: relative;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

.btn-primary {
  background: var(--gold-grad); color: #1a1408;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 54px -12px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5); }

.btn-ghost { background: var(--surface-strong); color: var(--heading); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--gold-line); background: var(--gold-soft); color: var(--gold); transform: translateY(-2px); }

.btn-outline-accent { background: var(--gold-soft); color: var(--gold); border-color: var(--gold-line); }
.btn-outline-accent:hover { background: var(--gold-grad); color: #1a1408; transform: translateY(-2px); }

.btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-whatsapp:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 20px 44px -10px rgba(37, 211, 102, 0.6), inset 0 1px 0 rgba(255,255,255,0.4); }

.btn-ghost-danger { background: var(--surface-strong); color: var(--text); border-color: var(--border-strong); }
.btn-ghost-danger:hover { border-color: var(--danger-line); color: var(--danger); }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar[data-scrolled="true"] {
  background: rgba(11, 10, 13, 0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.8);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.navbar-brand { display: flex; align-items: center; gap: 9px; }
.logo-mark {
  color: var(--gold); font-size: 18px;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.logo-text { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--heading); letter-spacing: 0.2px; }

.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--muted); border-radius: 10px; }
.nav-link:hover { color: var(--heading); }
.btn-nav-book {
  margin-left: 6px;
  background: var(--gold-grad); color: #1a1408; font-weight: 600;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-nav-book:hover { transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--heading); border-radius: 2px; transition: var(--transition); }

.mobile-menu { display: none; }

/* =====================
   HERO
   ===================== */
.hero { position: relative; padding: 132px 0 72px; overflow: hidden; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.7; }
.glow-gold { width: 520px; height: 520px; top: -170px; right: 8%; background: rgba(212, 175, 55, 0.16); }
.glow-ember { width: 420px; height: 420px; bottom: -90px; left: 10%; background: rgba(193, 122, 73, 0.10); }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.hero-content { max-width: 620px; animation: rise 0.7s cubic-bezier(0.22,1,0.36,1) both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-line);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.2vw, 54px); font-weight: 700; letter-spacing: -0.02em;
  margin: 18px 0 10px; line-height: 1.12;
}
.hero-tagline { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.hero-desc { margin-top: 16px; font-size: 17px; color: var(--text); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--muted); }
.stat-divider { width: 1px; height: 38px; background: var(--border-strong); }

/* ---- Hero ornate crest ---- */
.hero-visual { display: flex; justify-content: center; animation: rise 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.crest {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 4 / 5;
  padding: 18px; border-radius: 26px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,0.16), transparent 55%),
    var(--surface-strong);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(212,175,55,0.18), inset 0 0 70px rgba(212,175,55,0.06);
}
.crest::before { /* inner gold ring */
  content: ""; position: absolute; inset: 10px; border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.30); pointer-events: none;
}
.crest::after { /* slow shimmer sweep */
  content: ""; position: absolute; inset: -2px; border-radius: 26px; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(248,233,184,0.18) 48%, rgba(248,233,184,0.32) 50%, rgba(248,233,184,0.18) 52%, transparent 70%);
  background-size: 250% 100%; animation: shimmer 7s linear infinite; mix-blend-mode: screen;
}
.crest-corner { position: absolute; width: 34px; height: 34px; border: 0 solid var(--gold); opacity: 0.75; z-index: 2; }
.crest-tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 10px; }
.crest-tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 10px; }
.crest-bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 10px; }
.crest-br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 10px; }

.crest-inner {
  position: relative; height: 100%; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(212,175,55,0.20), transparent 60%),
    linear-gradient(180deg, #16121b 0%, #0d0b10 100%);
}
.crest-floral {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  width: 72%; height: auto; color: var(--gold); opacity: 0.32;
}
.crest-medallion {
  position: relative; width: 158px; height: 158px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 32%, rgba(212,175,55,0.28), transparent 72%);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.55), inset 0 0 0 8px transparent, inset 0 0 0 9px rgba(212,175,55,0.22);
}
.crest-monogram {
  font-family: var(--font-display); font-size: 92px; font-weight: 700; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 26px rgba(212,175,55,0.55));
}
.crest-name {
  position: relative; font-family: var(--font-display); font-size: 17px; font-weight: 600;
  letter-spacing: 5px; color: var(--heading);
}
.crest-sub { position: relative; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }

.spark { position: absolute; color: var(--gold); font-size: 14px; opacity: 0; animation: twinkle 4s ease-in-out infinite; }
.spark-1 { top: 16%; right: 12%; animation-delay: 0.2s; }
.spark-2 { bottom: 22%; left: 10%; font-size: 11px; animation-delay: 1.6s; }
.spark-3 { top: 44%; right: 6%; font-size: 10px; animation-delay: 2.8s; }

/* =====================
   FEATURES
   ===================== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card {
  padding: 28px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(8px); transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card-accent { background: radial-gradient(120% 100% at 0% 0%, var(--gold-soft), var(--surface) 60%); border-color: var(--gold-line); }
.feature-icon {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 13px; margin-bottom: 16px;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--gold); }
.feature-card-accent .feature-icon { background: var(--gold-grad); border-color: transparent; }
.feature-card-accent .feature-icon svg { color: #1a1408; }
.feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--muted); }

/* =====================
   GALLERY
   ===================== */
.gallery-toolbar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--muted); background: var(--surface-strong); border: 1px solid var(--border);
}
.filter-btn:hover { color: var(--gold); border-color: var(--gold-line); }
.filter-btn.is-active { color: #1a1408; background: var(--gold-grad); border-color: transparent; box-shadow: var(--shadow-gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(6px); transition: var(--transition);
}
.gallery-item:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-thumb {
  position: relative; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(150deg, rgba(60, 50, 40, 0.55), rgba(20, 16, 22, 0.65));
}
.ph-sunda-siger .gallery-thumb { background: linear-gradient(150deg, rgba(212,175,55,0.34), rgba(150,90,40,0.30)); }
.ph-international-look .gallery-thumb { background: linear-gradient(150deg, rgba(120,70,110,0.36), rgba(60,40,80,0.30)); }
.ph-pre-wedding .gallery-thumb { background: linear-gradient(150deg, rgba(200,130,140,0.32), rgba(150,100,90,0.30)); }
.gallery-thumb::after { /* sheen */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
}
.gallery-icon { position: relative; z-index: 1; color: var(--gold); opacity: 0.55; }
.gallery-icon svg { width: 40px; height: 40px; }
.gallery-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 500;
  color: var(--gold); background: rgba(11, 10, 13, 0.55); border: 1px solid var(--gold-line);
  backdrop-filter: blur(6px);
}
.gallery-cap { padding: 14px 16px 16px; }
.gallery-cap h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.gallery-cap p { font-size: 12.5px; color: var(--muted); }

/* =====================
   CALENDAR
   ===================== */
.calendar-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.calendar-card, .how-card {
  padding: 26px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.calendar-label { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--heading); }
.calendar-legend { display: flex; gap: 16px; font-size: 12px; color: var(--muted); }
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-available { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.dot-booked { background: var(--muted-2); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--muted-2); text-transform: uppercase; padding: 4px 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 14px; font-weight: 500; border: 1px solid transparent;
  font-variant-numeric: tabular-nums;
}
.cal-day.is-available { color: var(--gold); background: var(--gold-soft); border-color: var(--gold-line); }
.cal-day.is-booked { color: var(--muted-2); background: rgba(255,255,255,0.015); border-color: var(--border); text-decoration: line-through; opacity: 0.7; }
.calendar-note { text-align: center; font-size: 11px; color: var(--muted-2); margin-top: 14px; }

.how-card h3 { font-size: 18px; margin-bottom: 18px; }
.how-list { display: flex; flex-direction: column; gap: 14px; }
.how-list li { display: flex; gap: 12px; font-size: 14px; color: var(--muted); }
.how-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #1a1408;
  background: var(--gold-grad); border: 1px solid transparent;
}

/* =====================
   CALCULATOR
   ===================== */
.calc-card {
  padding: 30px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.pkg-list { display: flex; flex-direction: column; gap: 10px; }
.pkg-row {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.018); border: 1px solid var(--border);
  transition: var(--transition);
}
.pkg-row:hover { border-color: var(--gold-line); }
.pkg-row.is-selected { border-color: var(--gold); background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold-line), 0 8px 24px -14px var(--gold-glow); }
.pkg-row input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent);
  cursor: pointer; flex-shrink: 0;
}
.pkg-body { flex: 1; display: flex; flex-direction: column; }
.pkg-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pkg-name { font-size: 14.5px; font-weight: 600; color: var(--heading); }
.pkg-price { font-size: 14.5px; font-weight: 700; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pkg-desc { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.calc-total {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 22px; padding: 18px 22px; border-radius: var(--radius);
  background: radial-gradient(120% 120% at 0% 0%, var(--gold-soft), transparent 70%);
  border: 1px solid var(--gold-line);
}
.calc-total-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.calc-total-sub { font-size: 12px; color: var(--muted); }
.calc-total-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--heading); font-variant-numeric: tabular-nums; }

.calc-summary {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius);
  background: rgba(11, 10, 13, 0.5); border: 1px dashed var(--border-strong); font-size: 12.5px; color: var(--muted);
}
.summary-head { font-weight: 600; color: var(--text); margin-bottom: 6px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 3px 0; }
.summary-price { color: var(--gold); white-space: nowrap; }

.calc-actions { margin-top: 22px; display: flex; justify-content: center; }
.calc-actions .btn { width: 100%; }
.calc-note { text-align: center; font-size: 11px; color: var(--muted-2); margin-top: 10px; }

/* =====================
   ABOUT & TESTIMONIALS
   ===================== */
.about-card {
  background: var(--surface-strong); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px; display: flex; flex-direction: column; gap: 28px; position: relative; overflow: hidden;
}
.about-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-grad); }
.about-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); color: var(--heading); margin-bottom: 14px; }
.about-desc { color: var(--text); line-height: 1.8; font-size: 1.05rem; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.stat-box { display: flex; flex-direction: column; gap: 4px; }
.stat-box-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.stat-box-label { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 18px; transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.1em; }
.testi-text { color: var(--text); line-height: 1.7; font-style: italic; flex: 1; }
.testi-author { display: flex; flex-direction: column; }
.testi-name { font-weight: 600; color: var(--heading); }
.testi-role { font-size: 0.85rem; color: var(--muted); }

/* =====================
   VIP GATE / PORTAL
   ===================== */
.vip-gate {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 26px; padding: 30px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.vip-gate-note { font-size: 11.5px; color: var(--muted-2); max-width: 360px; }
.vip-gate-note code { padding: 2px 8px; border-radius: 6px; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); }
.vip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vip-item .gallery-thumb { aspect-ratio: 1; }

/* =====================
   FAQ
   ===================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  padding: 18px 22px; border-radius: var(--radius);
  background: var(--surface-strong); border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--gold-line); box-shadow: 0 0 0 1px var(--gold-line), var(--shadow-md); }
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--heading);
  list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 14px; height: 14px; flex-shrink: 0; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: var(--transition);
}
.faq-item[open] summary::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") no-repeat center / contain;
}
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* =====================
   CTA
   ===================== */
.cta-section { background: radial-gradient(100% 120% at 50% 0%, rgba(212,175,55,0.08), transparent 60%); }

/* =====================
   VIP MODAL
   ===================== */
.vip-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vip-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.74); backdrop-filter: blur(8px); }
.vip-dialog {
  position: relative; width: 100%; max-width: 400px; padding: 32px;
  border-radius: var(--radius-xl); background: rgba(15, 12, 18, 0.97);
  border: 1px solid var(--gold-line); box-shadow: var(--shadow-lg);
}
.vip-dialog-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.vip-dialog-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 11px; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold);
}
.vip-dialog-head h3 { font-family: var(--font-display); font-size: 20px; }
.vip-dialog-text { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.field { display: block; margin-bottom: 6px; }
.field-label { display: block; font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.field input, .vip-dialog input[type="password"] {
  width: 100%; padding: 12px 15px; border-radius: 11px; font-size: 14px; color: var(--heading);
  background: rgba(11, 10, 13, 0.6); border: 1px solid var(--border-strong); outline: none; transition: var(--transition);
}
.field input:focus, .vip-dialog input[type="password"]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.vip-dialog input.shake { border-color: var(--danger); animation: shake 0.4s; }
.vip-error { font-size: 12px; color: var(--danger); margin-top: 8px; }
.vip-dialog-actions { display: flex; gap: 10px; margin-top: 22px; }
.vip-dialog-actions .btn { flex: 1; }

/* =====================
   FOOTER
   ===================== */
.footer { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); border-top: 1px solid var(--border); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand .logo-text { font-size: 18px; }
.footer-tagline { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 340px; }
.footer-meta { font-size: 13px; color: var(--muted-2); margin-top: 4px; }
.footer-col h4 { font-size: 14px; margin-bottom: 12px; color: var(--heading); letter-spacing: 0.02em; }
.footer-link { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted-2);
}
.footer-credit a { color: var(--gold); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* =====================
   FLOATING WHATSAPP
   ===================== */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.floating-wa:hover { transform: translateY(-3px) scale(1.05); }
.floating-wa svg { width: 28px; height: 28px; fill: #fff; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -50% 0; } }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(0.6); } 50% { opacity: 0.9; transform: scale(1); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }

/* =====================
   RESPONSIVE
   ===================== */
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .vip-grid { grid-template-columns: repeat(4, 1fr); }
  .calc-actions .btn { width: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 56px; }
  .section { padding: 92px 0; }
  .calendar-layout { grid-template-columns: 1.2fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================
   MOBILE NAV
   ===================== */
@media (max-width: 860px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 14px 20px 22px; background: rgba(11, 10, 13, 0.97);
    backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: var(--transition);
  }
  .mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-link { padding: 12px 8px; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--border); }
  .mobile-link.mobile-book { color: var(--gold); font-weight: 600; border-bottom: none; }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .hero-stats { gap: 12px; }
  .stat-divider { display: none; }
  .calc-total { flex-direction: column; align-items: flex-start; gap: 6px; }
  .calc-total-value { font-size: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { padding: 32px; }
  .crest-monogram { font-size: 76px; }
}

/* =====================
   REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
