/* ==========================================================================
   Premium Thai Spa — Design System & Site Styles
   Mobile-first. True Black + Warm Gold + Royal Purple, matched to the brand
   logo (gold Buddha silhouette + purple lotus on black). Ships in two
   selectable themes (Black / White) — see the body.theme-light block at the
   bottom, toggled from Admin → Site Settings → Appearance.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens (Black theme = default) ---------- */
:root {
  /* Surfaces — pure black page, faintly-lifted panels */
  --bg-950: #000000;
  --bg-900: #000000;
  --bg-800: #0b0b0b;
  --bg-700: #151515;
  --bg-600: #1f1f1f;
  --bg-border: #262626;

  /* Fixed ink — NEVER swapped by theme. Used for text sitting on bright
     accent surfaces (gold buttons, gold/purple avatars) and for the small
     set of sections that are intentionally always-dark regardless of theme
     (hero banner, page banners, stat/CTA bands) */
  --ink: #050505;

  /* Gold accent (headings, primary CTAs) */
  --gold-700: #a9772a;
  --gold-600: #c9962e;
  --gold-500: #f2c14e;
  --gold-400: #f7d787;
  --gold-100: #fdf0d2;

  /* Purple accent (secondary, lotus) */
  --purple-800: #34145a;
  --purple-700: #5a2690;
  --purple-600: #7a35b8;
  --purple-500: #8b3fd1;
  --purple-300: #c79bef;
  --purple-100: #ede0fb;

  --white: #ffffff;
  --ivory: #f6f1ea;

  /* Text — flip in the light theme */
  --text-heading: #ffffff;
  --gray-300: #c7c3cc;
  --gray-400: #9d97a3;
  --gray-500: #78727e;
  --gray-700: #48434c;

  --success: #34b768;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --container-max: 1320px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 30px rgba(242, 193, 78, 0.25);
  --shadow-purple: 0 10px 30px rgba(139, 63, 209, 0.3);

  /* Motion */
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;
  --header-height: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

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

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--gray-300);
  background: var(--bg-900);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  transition: background var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { color: var(--gray-400); }

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--ink); padding: 10px 18px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: 64px; }
.section-sm { padding-block: 40px; }
.section-tight { padding-block: 24px; }

/* Intentionally always-dark accent band, regardless of site theme */
.bg-dark { background: var(--ink); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: #b8b3be; }
.bg-panel { background: var(--bg-800); }
.bg-gradient-purple { background: linear-gradient(135deg, var(--purple-800), var(--ink) 70%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold-500); display: inline-block; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head h2 { margin: 10px 0 12px; }

.flourish { display: flex; align-items: center; color: var(--gold-600); }
.flourish .icon { width: 90px; height: 22px; }

.text-center { text-align: center; }
.nowrap { white-space: nowrap; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.btn .icon { width: 16px; height: 16px; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
  background: linear-gradient(120deg, var(--gold-600), var(--gold-500));
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(242, 193, 78, 0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--bg-border);
  color: var(--text-heading);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); }
.btn-outline-white {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.14); }
.btn-ghost { color: var(--gold-500); font-weight: 600; }
.btn-ghost:hover { color: var(--gold-400); }
.btn-whatsapp { background: #25d366; color: #08320f; }
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--bg-border); transition: background var(--transition-base), border-color var(--transition-base); }
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; }
.brand img { height: 56px; width: auto; }

.nav-desktop { flex: 1; display: flex; justify-content: center; }
.nav-desktop ul { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 10px 15px; font-weight: 500; font-size: 0.94rem; color: var(--gray-300); }
.nav-link::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-fast); }
.nav-link:hover, .nav-link.active { color: var(--text-heading); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.icon-chevron { width: 11px; height: 11px; transition: transform var(--transition-fast); }
.nav-item:hover .icon-chevron { transform: rotate(180deg); }

/* Full-width dropdown bar — attaches to the header, not a floating card */
.dropdown-mega {
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100%;
  background: var(--bg-800);
  border-top: 2px solid var(--gold-500);
  border-bottom: 1px solid var(--bg-border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 50;
}
.nav-item:hover .dropdown-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-mega-inner { max-width: var(--container-max); margin-inline: auto; padding: 22px 20px 26px; }
.dropdown-mega-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-500); font-weight: 700; margin-bottom: 14px; }
.dropdown-treatment-row { display: flex; flex-wrap: wrap; gap: 8px; }
.dropdown-treatment-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: var(--radius-full); border: 1px solid var(--bg-border); transition: background var(--transition-fast), border-color var(--transition-fast); }
.dropdown-treatment-item:hover { background: rgba(242, 193, 78, 0.08); border-color: rgba(242, 193, 78, 0.35); }
.dropdown-treatment-item strong { color: var(--text-heading); font-weight: 600; font-size: 0.88rem; white-space: nowrap; }
.service-icon-sm { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-700), var(--bg-700)); display: flex; align-items: center; justify-content: center; color: var(--gold-400); }
.service-icon-sm .icon { width: 16px; height: 16px; }
.signature-tag { display: inline-block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-500); font-weight: 700; margin-left: 4px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-icon-btn { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-300); border: 1px solid var(--bg-border); transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast); }
.header-icon-btn:hover { color: var(--gold-500); border-color: var(--gold-500); background: rgba(242,193,78,0.08); }
.header-icon-btn .icon { width: 18px; height: 18px; }
@media (max-width: 640px) { .header-icon-btn { display: none; } }
@media (max-width: 960px) { .nav-desktop { display: none; } }

.mobile-toggle { display: none; color: var(--text-heading); width: 40px; height: 40px; align-items: center; justify-content: center; }
.mobile-toggle .icon { width: 24px; height: 24px; }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.is-open .icon-menu { display: none; }
.mobile-toggle.is-open .icon-close { display: block; }
@media (max-width: 960px) { .mobile-toggle { display: flex; } }

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(360px, 88vw); height: 100vh;
  background: var(--bg-900); z-index: 300; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; transition: right var(--transition-base);
  overflow-y: auto; border-left: 1px solid var(--bg-border);
}
.mobile-nav.is-open { right: 0; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--bg-border); }
.logo-card { display: inline-flex; }
.logo-card img { height: 40px; }
.mobile-nav-close { color: var(--text-heading); width: 32px; height: 32px; }
.mobile-nav ul { padding: 10px 10px; }
.mobile-nav-link { display: flex; align-items: center; padding: 14px 10px; color: var(--text-heading); font-weight: 500; border-bottom: 1px solid var(--bg-border); border-left: 3px solid transparent; padding-left: 13px; }
.mobile-nav-link.active { color: var(--gold-500); border-left-color: var(--gold-500); }
.mobile-submenu-toggle { width: 34px; height: 34px; color: var(--gray-400); }
.mobile-submenu-toggle .icon { transition: transform var(--transition-fast); }
.mobile-submenu-toggle.is-open .icon { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height var(--transition-base); background: var(--bg-800); border-radius: 10px; }
.mobile-submenu a { display: block; padding: 10px 20px; color: var(--gray-400); }
.mobile-submenu a:hover { color: var(--gold-500); }
.mobile-nav-cta { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-contact { padding: 0 20px 24px; display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; color: var(--gray-400); }
.mobile-nav-contact a, .mobile-nav-contact span { display: flex; align-items: center; gap: 8px; }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 290; opacity: 0; visibility: hidden; transition: opacity var(--transition-base); }
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero (always a dark banner, regardless of site theme) ---------- */
.hero { position: relative; height: 92vh; min-height: 560px; max-height: 900px; overflow: hidden; background: var(--ink); }
.hero-slides-track { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.8s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-media { position: absolute; inset: 0; }
.hero-slide-media .media-box, .hero-slide-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.97) 100%), radial-gradient(circle at 20% 30%, rgba(139,63,209,0.25), transparent 55%); }
.hero-slide-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 660px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(242,193,78,0.12); border: 1px solid rgba(242,193,78,0.35); color: var(--gold-400); padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
.hero-content h1 { color: #fff; }
.hero-content h1 span { color: var(--gold-500); font-style: italic; }
.hero-content .lead { color: #d8d3de; font-size: 1.1rem; margin: 18px 0 30px; max-width: 540px; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 4; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: background var(--transition-fast), width var(--transition-fast); }
.hero-dot.is-active { background: var(--gold-500); width: 28px; border-radius: var(--radius-full); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 4; backdrop-filter: blur(6px); }
.hero-arrow:hover { background: var(--gold-500); color: var(--ink); }
.hero-arrow-prev { left: 24px; transform: translateY(-50%) rotate(180deg); }
.hero-arrow-next { right: 24px; }
@media (max-width: 720px) { .hero-arrow { display: none; } }
.hero-scroll-cue { position: absolute; bottom: 30px; right: 30px; color: #948d9c; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; z-index: 4; writing-mode: vertical-rl; }
.hero-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 3; }
.hero-divider svg { width: 100%; height: 46px; fill: var(--bg-900); }

/* ---------- Media placeholder ---------- */
.media-box { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-800); }
.media-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.media-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--gray-500); border: 1.5px dashed var(--bg-border); }
.media-placeholder .icon { width: 34px; height: 34px; opacity: 0.6; }
.media-placeholder span { font-size: 0.82rem; text-align: center; padding: 0 16px; }

/* ---------- Split feature ---------- */
.split-feature { overflow: hidden; }
.split-feature-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-feature-reverse .split-feature-grid { direction: rtl; }
.split-feature-reverse .split-feature-content { direction: ltr; }
.split-feature-media { position: relative; }
.split-feature-media .media-box { height: 100%; border-radius: 0; aspect-ratio: auto; }
.split-feature-content { direction: ltr; display: flex; flex-direction: column; justify-content: center; padding: 60px; }
@media (max-width: 900px) {
  .split-feature-grid { grid-template-columns: 1fr; min-height: 0; }
  .split-feature-media .media-box { aspect-ratio: 4/3; }
  .split-feature-content { padding: 40px 24px; }
}

.badge { display: inline-flex; align-items: center; padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-flagship { background: linear-gradient(120deg, var(--purple-600), var(--purple-800)); color: var(--purple-100); position: absolute; top: 18px; left: 18px; z-index: 2; }

.signature-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.signature-sub-item { display: flex; align-items: center; gap: 10px; color: var(--gray-300); font-size: 0.92rem; }
.signature-sub-item .icon { color: var(--gold-500); width: 18px; height: 18px; min-width: 18px; }
@media (max-width: 480px) { .signature-sub-grid { grid-template-columns: 1fr; } }

/* ---------- Stats / Counter band (always-dark accent band) ---------- */
.stats-band { background: linear-gradient(120deg, var(--purple-800), var(--ink) 75%); padding-block: 46px; position: relative; overflow: hidden; }
.stats-band::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(242,193,78,0.15), transparent 55%); }
.stats-grid { position: relative; max-width: var(--container-max); margin-inline: auto; padding-inline: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-number { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--gold-500); }
.stat-label { color: var(--purple-100); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Treatment list (services) ---------- */
.treatment-list { display: flex; flex-direction: column; border-top: 1px solid var(--bg-border); }
.treatment-row { display: flex; align-items: center; gap: 22px; padding: 24px 10px; border-bottom: 1px solid var(--bg-border); transition: background var(--transition-fast), padding-left var(--transition-fast); }
.treatment-row:hover { background: var(--bg-800); padding-left: 20px; }
.treatment-row.is-signature { background: linear-gradient(90deg, rgba(242,193,78,0.06), transparent); }
.treatment-index { font-family: var(--font-heading); font-size: 1.6rem; color: var(--bg-border); font-weight: 700; min-width: 44px; }
.treatment-row-icon { width: 54px; height: 54px; min-width: 54px; border-radius: 14px; background: var(--bg-800); display: flex; align-items: center; justify-content: center; color: var(--gold-500); }
.treatment-row-icon .icon { width: 26px; height: 26px; }
.treatment-row-body { flex: 1; }
.treatment-row-body h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.treatment-row-body .badge-flagship { position: static; }
.treatment-row-arrow { color: var(--gold-500); width: 22px; height: 22px; }

/* ---------- Cards ---------- */
.card { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 30px; transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast); }
.feature-card { text-align: center; }
.feature-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--purple-700), var(--bg-700)); color: var(--gold-400); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.feature-icon .icon { width: 26px; height: 26px; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(242,193,78,0.3); }

/* ---------- Why choose / benefits split ---------- */
.why-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; }
.why-icon-sm { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: var(--bg-700); color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
@media (max-width: 900px) { .why-split { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.masonry-gallery { column-count: 3; column-gap: 20px; }
.masonry-item { position: relative; break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-md); overflow: hidden; }
.masonry-item .media-box { aspect-ratio: auto; border-radius: var(--radius-md); }
.gallery-cat { position: absolute; left: 16px; bottom: 16px; background: rgba(0,0,0,0.75); color: #fff; padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(4px); }
@media (max-width: 900px) { .masonry-gallery { column-count: 2; } }
@media (max-width: 560px) { .masonry-gallery { column-count: 1; } }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.gallery-filter-btn { padding: 10px 20px; border-radius: var(--radius-full); border: 1px solid var(--bg-border); color: var(--gray-400); font-size: 0.85rem; font-weight: 600; transition: all var(--transition-fast); }
.gallery-filter-btn.is-active, .gallery-filter-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink); }

/* ---------- Testimonials ---------- */
.star-rating { display: flex; gap: 3px; margin-bottom: 14px; }
.star-rating .icon-star { width: 16px; height: 16px; color: var(--bg-border); }
.star-rating .icon-star.is-filled { color: var(--gold-500); }
.testimonial-card { position: relative; }
.icon-quote { width: 30px; height: 30px; color: var(--purple-500); margin-bottom: 14px; }
.quote-text { color: var(--gray-300); font-style: italic; margin-bottom: 20px; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-600), var(--purple-600)); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-name { color: var(--text-heading); font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

.testimonial-carousel { position: relative; max-width: 760px; margin-inline: auto; }
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s ease; }
.testimonial-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.testimonial-spotlight { text-align: center; padding: 20px; }
.spotlight-quote { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-heading); margin-bottom: 24px; font-style: italic; }
.spotlight-avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-600), var(--purple-600)); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 10px; }
.spotlight-name { color: var(--text-heading); font-weight: 700; }
.spotlight-role { font-size: 0.8rem; color: var(--gray-500); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testimonial-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-border); }
.testimonial-dot.is-active { background: var(--gold-500); width: 22px; border-radius: var(--radius-full); }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.empty-state .icon { width: 46px; height: 46px; margin: 0 auto 16px; opacity: 0.5; }
.empty-state h3 { color: var(--gray-300); margin-bottom: 8px; }

/* ---------- Blog cards ---------- */
.project-card { overflow: hidden; padding: 0; }
.project-media { aspect-ratio: 4/3; }
.project-media .media-box { border-radius: 0; height: 100%; aspect-ratio: auto; }
.project-body { padding: 24px; }
.project-meta { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.card-link { color: var(--gold-500); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; }
.blog-category-tag { display: inline-block; background: rgba(139,63,209,0.18); color: var(--purple-300); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: 10px; }

.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.category-pill { padding: 9px 20px; border-radius: var(--radius-full); border: 1px solid var(--bg-border); color: var(--gray-400); font-size: 0.85rem; font-weight: 600; }
.category-pill.is-active, .category-pill:hover { background: var(--purple-600); border-color: var(--purple-600); color: #fff; }

.blog-content { max-width: 760px; margin-inline: auto; font-size: 1.02rem; }
.blog-content p { margin-bottom: 18px; }
.blog-content h2, .blog-content h3 { margin: 30px 0 14px; }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; list-style: revert; }
.blog-content blockquote { border-left: 3px solid var(--gold-500); padding-left: 18px; font-style: italic; color: var(--gray-300); margin: 24px 0; }
.blog-content a { color: var(--gold-500); text-decoration: underline; }
.blog-content img { border-radius: var(--radius-md); margin: 20px 0; }

/* ---------- Page hero / breadcrumb (always a dark banner) ---------- */
.page-header {
  position: relative;
  padding: 150px 0 70px;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  color: #fff;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header .lead { max-width: 620px; color: #d8d3de; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #948d9c; margin-bottom: 18px; }
.breadcrumb a { color: #b6afbe; }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb .sep { opacity: 0.5; }
.service-hero { min-height: 420px; display: flex; align-items: center; }

/* ---------- Process steps ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { text-align: center; position: relative; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); color: var(--ink); font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- CTA immersive (always-dark accent band) ---------- */
.cta-immersive { background: radial-gradient(circle at 50% 0%, var(--purple-800), var(--ink) 70%); padding-block: 80px; text-align: center; }
.cta-immersive h2 { color: #fff; margin-bottom: 14px; }
.cta-immersive p { color: #c7c1cd; max-width: 560px; margin: 0 auto 30px; }
.cta-immersive .btn-row { justify-content: center; }

/* ---------- Footer (asymmetric, not a centered brand band) ---------- */
.site-footer { background: var(--bg-950); border-top: 1px solid var(--bg-border); }
.footer-top { padding: 60px 0 40px; }
.footer-grid-new { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand-col img { height: 48px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-heading); font-style: italic; color: var(--gold-400); font-size: 1.05rem; margin-bottom: 10px; }
.footer-desc { font-size: 0.9rem; max-width: 320px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-800); border: 1px solid var(--bg-border); color: var(--gray-400); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { color: var(--gold-500); border-color: var(--gold-500); }
.footer-col h4 { color: var(--text-heading); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--gray-400); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-400); font-size: 0.9rem; }
.footer-contact .icon { color: var(--gold-500); min-width: 16px; margin-top: 3px; }
@media (max-width: 900px) { .footer-grid-new { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid-new { grid-template-columns: 1fr; } }
.footer-bottom { border-top: 1px solid var(--bg-border); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: var(--gray-500); }

/* ---------- Floating widgets ---------- */
/* WhatsApp sits bottom-right, back-to-top bottom-left. Both read a
   --float-bottom-offset (set from JS) so they lift clear of the footer
   instead of floating on top of its text once it scrolls into view. */
.whatsapp-float {
  position: fixed; bottom: var(--float-bottom-offset, 26px); right: 26px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: bottom var(--transition-fast), transform var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float .icon { width: 28px; height: 28px; position: relative; z-index: 2; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  75% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float::before { animation: none; display: none; } }

.back-to-top {
  position: fixed; bottom: var(--float-bottom-offset, 26px); left: 26px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold-500); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), bottom var(--transition-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top .icon { transform: rotate(-90deg); }

/* ---------- Forms ---------- */
.form-group label { display: block; margin-bottom: 8px; font-size: 0.88rem; font-weight: 600; color: var(--gray-300); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; background: var(--bg-800); border: 1px solid var(--bg-border);
  border-radius: 10px; color: var(--text-heading); transition: border-color var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold-500); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-500); }
.form-note { font-size: 0.78rem; color: var(--gray-500); }
.contact-form-card { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: 40px; }
.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; font-size: 0.92rem; }
.alert-success { background: rgba(52,183,104,0.12); border: 1px solid rgba(52,183,104,0.4); color: #6fe39a; }
.alert-error { background: rgba(220,80,80,0.12); border: 1px solid rgba(220,80,80,0.4); color: #f39494; }

/* ---------- Lead / booking modal (always a dark overlay) ---------- */
.lead-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(4px); z-index: 400; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity var(--transition-base); padding: 20px; }
.lead-modal.is-open { opacity: 1; visibility: visible; }
.booking-card { position: relative; width: min(440px, 100%); background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform var(--transition-base); }
.lead-modal.is-open .booking-card { transform: translateY(0); }
.booking-close { position: absolute; top: 18px; right: 18px; color: var(--gray-500); width: 30px; height: 30px; }
.booking-close:hover { color: var(--gold-500); }
.booking-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--purple-700), var(--bg-700)); color: var(--gold-400); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.booking-card h3 { margin-bottom: 8px; }
.booking-intro { font-size: 0.9rem; margin-bottom: 24px; }

/* ---------- Video ---------- */
.video-card { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.video-thumb { position: relative; aspect-ratio: 16/9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.video-play .icon { width: 56px; height: 56px; }
.video-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.is-open { display: flex; }
.video-modal iframe { width: min(900px, 100%); aspect-ratio: 16/9; border-radius: var(--radius-md); }
.video-modal-close { position: absolute; top: 26px; right: 26px; color: #fff; width: 40px; height: 40px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }

/* ---------- Related services ---------- */
.related-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .related-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-services-grid { grid-template-columns: 1fr; } }
.related-service-card { display: block; padding: 0; overflow: hidden; }
.related-service-card .project-body { padding: 22px; }

/* ==========================================================================
   Homepage-only section layouts — each one deliberately laid out differently
   from the shared listing/detail-page components above, and from each other,
   so the homepage doesn't read as a repeat of the same card/list pattern.
   ========================================================================== */

/* ---------- Hero: split-screen (dark content panel + image panel) ---------- */
.hero-split { position: relative; min-height: 640px; background: var(--ink); overflow: hidden; }
.hero-split .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.8s ease; }
.hero-split .hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 640px; }
.hero-slide-content { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(24px, 6vw, 90px); position: relative; z-index: 2; }
.hero-slide-content .hero-badge { margin-bottom: 22px; }
.hero-slide-content h1 { color: #fff; }
.hero-slide-content h1 span { color: var(--gold-500); font-style: italic; }
.hero-slide-content .lead { color: #cfc8d6; font-size: 1.08rem; margin: 18px 0 30px; max-width: 480px; }
.hero-slide-media { position: relative; overflow: hidden; min-height: 280px; }
.hero-slide-media .media-box, .hero-slide-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.6), transparent 26%); }
.hero-split-dots { display: flex; gap: 10px; position: absolute; left: clamp(24px, 6vw, 90px); bottom: 34px; z-index: 5; }
.hero-split-dots .hero-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-border); transition: background var(--transition-fast), width var(--transition-fast); }
.hero-split-dots .hero-dot.is-active { background: var(--gold-500); width: 26px; border-radius: var(--radius-full); }
@media (max-width: 900px) {
  .hero-split { min-height: auto; }
  .hero-slide-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-slide-media { min-height: 260px; order: -1; }
  .hero-slide-content { padding: 40px 24px; }
}

/* ---------- About: highlight split with floating badge + bullet points ---------- */
.about-highlight { padding-block: 74px; }
.about-highlight-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-highlight-media { position: relative; }
.about-highlight-media .media-box { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.about-floating-badge { position: absolute; left: -20px; bottom: -20px; background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center; }
.about-floating-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--gold-500); display: block; }
.about-floating-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
.about-points { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.about-point { display: flex; align-items: center; gap: 10px; color: var(--gray-300); font-weight: 600; font-size: 0.92rem; }
.about-point .icon { color: var(--gold-500); width: 18px; height: 18px; min-width: 18px; }
@media (max-width: 900px) {
  .about-highlight-grid { grid-template-columns: 1fr; }
  .about-floating-badge { left: 16px; bottom: 16px; }
}

/* ---------- Our Services: card grid with overlapping icon badge ---------- */
.services-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card-home { display: block; background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast); }
.service-card-home:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(242,193,78,0.3); }
.service-card-media { aspect-ratio: 4 / 3; position: relative; }
.service-card-media .media-box { border-radius: 0; height: 100%; aspect-ratio: auto; }
.service-card-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-700), var(--bg-700)); color: var(--gold-400); display: flex; align-items: center; justify-content: center; margin: -32px 0 0 18px; border: 4px solid var(--bg-800); position: relative; z-index: 2; }
.service-card-icon .icon { width: 22px; height: 22px; }
.service-card-body { padding: 10px 20px 22px; }
.service-card-body h3 { font-size: 1.05rem; margin: 10px 0 6px; }
.service-card-body p { font-size: 0.88rem; }
@media (max-width: 960px) { .services-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid-home { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us: bento (one feature + small grid) ---------- */
.why-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-bento-feature { background: linear-gradient(160deg, var(--purple-800), var(--bg-800)); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.why-bento-feature-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold-400); margin-bottom: 20px; }
.why-bento-feature-icon .icon { width: 26px; height: 26px; }
.why-bento-feature h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.why-bento-feature p { color: #d8d0e0; }
.why-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-bento-item { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 22px; }
.why-bento-item-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-700); color: var(--gold-500); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.why-bento-item-icon .icon { width: 18px; height: 18px; }
.why-bento-item h4 { font-size: 0.95rem; color: var(--text-heading); margin-bottom: 4px; font-family: var(--font-heading); }
.why-bento-item p { font-size: 0.84rem; }
@media (max-width: 900px) { .why-bento { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .why-bento-grid { grid-template-columns: 1fr; } }

/* ---------- Counter: individual cards, not a gradient band ---------- */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-card { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; position: relative; overflow: hidden; }
.counter-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(139,63,209,0.16), transparent 60%); }
.counter-icon { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-700); color: var(--gold-500); align-items: center; justify-content: center; margin-bottom: 14px; position: relative; }
.counter-icon .icon { width: 20px; height: 20px; }
.counter-number { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--text-heading); position: relative; }
.counter-label { font-size: 0.8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; position: relative; }
@media (max-width: 720px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Spa Benefits: horizontal scroll-snap strip ---------- */
.benefits-scroll-track { display: flex; gap: 18px; overflow-x: auto; padding: 6px 20px 20px; scroll-snap-type: x mandatory; max-width: var(--container-max); margin-inline: auto; }
.benefits-scroll-track::-webkit-scrollbar { height: 6px; }
.benefits-scroll-track::-webkit-scrollbar-thumb { background: var(--bg-border); border-radius: 999px; }
.benefit-scroll-card { min-width: 250px; scroll-snap-align: start; background: var(--bg-900); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 26px; border-top: 3px solid var(--gold-500); }
.benefit-icon { display: inline-flex; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-700); color: var(--gold-500); align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon .icon { width: 22px; height: 22px; }
.benefit-scroll-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.benefit-scroll-card p { font-size: 0.88rem; }

/* ---------- Gallery preview: bento grid ---------- */
.gallery-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; grid-auto-flow: dense; gap: 14px; }
.gallery-bento-item { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.gallery-bento-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-bento-item .media-box { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
@media (max-width: 900px) { .gallery-bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-bento { grid-template-columns: 1fr; grid-auto-rows: 200px; } .gallery-bento-item:first-child { grid-column: span 1; grid-row: span 1; } }

/* ---------- Testimonials: featured quote + mini list, no carousel ---------- */
.testimonial-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: stretch; }
.testimonial-featured { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.testimonial-featured .icon-quote { width: 38px; height: 38px; }
.testimonial-featured-text { font-family: var(--font-heading); font-size: 1.45rem; font-style: italic; color: var(--text-heading); margin: 18px 0 26px; line-height: 1.4; }
.testimonial-mini-list { display: flex; flex-direction: column; gap: 14px; }
.testimonial-mini { background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; }
.testimonial-mini-avatar { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-600), var(--purple-600)); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; }
.testimonial-mini-name { font-size: 0.85rem; font-weight: 700; color: var(--text-heading); }
.testimonial-mini-text { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }
@media (max-width: 900px) { .testimonial-split { grid-template-columns: 1fr; } }

/* ---------- Blog preview: magazine feature + list ---------- */
.blog-feature-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; }
.blog-feature-main { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-800); border: 1px solid var(--bg-border); }
.blog-feature-main .project-media { aspect-ratio: 16 / 10; }
.blog-feature-main .project-body { padding: 28px; }
.blog-feature-main h3 { font-size: 1.4rem; }
.blog-feature-list { display: flex; flex-direction: column; gap: 16px; }
.blog-feature-item { display: flex; gap: 14px; background: var(--bg-800); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 14px; align-items: center; }
.blog-feature-item-media { width: 88px; height: 88px; min-width: 88px; border-radius: 10px; overflow: hidden; }
.blog-feature-item-media .media-box { width: 100%; height: 100%; border-radius: 10px; aspect-ratio: auto; }
.blog-feature-item h4 { font-size: 0.92rem; color: var(--text-heading); margin-bottom: 4px; }
.blog-feature-item .project-meta { margin-bottom: 0; }
@media (max-width: 900px) { .blog-feature-grid { grid-template-columns: 1fr; } }

/* ---------- CTA: split two-column, not centered ---------- */
.cta-split { background: radial-gradient(circle at 12% 30%, var(--purple-800), var(--ink) 65%); padding-block: 70px; overflow: hidden; }
.cta-split-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.cta-split-content h2 { color: #fff; margin-bottom: 14px; }
.cta-split-content p { color: #c7c1cd; max-width: 480px; margin-bottom: 26px; }
.cta-split-visual { display: flex; align-items: center; justify-content: center; }
.cta-split-icon-ring { width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.cta-split-icon-ring .icon { width: 76px; height: 76px; color: var(--gold-500); }
@media (max-width: 900px) { .cta-split-grid { grid-template-columns: 1fr; text-align: center; } .cta-split-content p { margin-inline: auto; } .cta-split-visual { order: -1; } .cta-split-icon-ring { width: 140px; height: 140px; } .cta-split-icon-ring .icon { width: 56px; height: 56px; } }

/* ==========================================================================
   White theme — activated by body.theme-light (set from Admin → Site
   Settings → Appearance). Only the neutral surface/text tokens flip; the
   gold/purple brand accents and the intentionally-dark banner sections
   (hero, page headers, stats band, CTA band, --ink) stay the same in both.
   ========================================================================== */
body.theme-light {
  --bg-950: #ffffff;
  --bg-900: #ffffff;
  --bg-800: #f8f6fb;
  --bg-700: #f0ebf6;
  --bg-600: #e7dff0;
  --bg-border: #e3dcec;

  --text-heading: #171220;
  --gray-300: #423c4d;
  --gray-400: #665f72;
  --gray-500: #857e90;
  --gray-700: #b9b2c2;
}
body.theme-light .site-header { background: rgba(255, 255, 255, 0.92); }
body.theme-light .hero-divider svg { fill: #ffffff; }
body.theme-light .btn-outline { color: var(--text-heading); }
body.theme-light .mobile-nav-overlay { background: rgba(20, 15, 25, 0.45); }
