/* ============================================================
   RohitAvaastu — Light Editorial Design System
   Warm ivory · Ink · Terracotta · Antique gold
   Fonts: Fraunces (display) · Manrope (body)
   ============================================================ */

:root {
  --bg: #faf7f1;
  --bg-soft: #f3eee4;
  --surface: #ffffff;
  --ink: #221d15;
  --ink-soft: #57503f;
  --ink-dim: #8b8271;
  --line: #e7dfd0;
  --line-strong: #d8cdb8;

  --terra: #b4532a;
  --terra-deep: #96401d;
  --gold: #a97e2f;
  --gold-soft: #c9a45c;
  --cream: #fdfbf7;

  --grad-terra: linear-gradient(135deg, #c9662f 0%, #b4532a 55%, #96401d 100%);
  --grad-gold: linear-gradient(135deg, #c9a45c 0%, #a97e2f 100%);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(34, 29, 21, 0.05), 0 4px 12px -4px rgba(34, 29, 21, 0.08);
  --shadow-md: 0 2px 6px rgba(34, 29, 21, 0.05), 0 18px 40px -18px rgba(34, 29, 21, 0.18);
  --shadow-lg: 0 4px 10px rgba(34, 29, 21, 0.05), 0 32px 64px -24px rgba(34, 29, 21, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.72;
  font-size: 16.5px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(180, 83, 42, 0.16); }

main, footer { position: relative; z-index: 1; }
.topbar, .site-header { z-index: 50; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Paper texture backdrop ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 88% -5%, rgba(201, 164, 92, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at -8% 30%, rgba(180, 83, 42, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(201, 164, 92, 0.08), transparent 65%);
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
h3 { font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--terra); }

.section-title { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 18px; }
.section-title .gold, .hero h1 .gold, .page-hero h1 .gold, .prose h2 .gold {
  font-style: italic;
  font-weight: 480;
  color: var(--terra);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.section-sub { color: var(--ink-soft); max-width: 620px; font-size: 17px; }

.section-head { margin-bottom: 54px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 1.5px; background: var(--terra); }

section { padding: 100px 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-gold {
  background: var(--grad-terra);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(150, 64, 29, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(150, 64, 29, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--terra); color: var(--terra); }

.btn-wa {
  background: #eaf7ef;
  color: #1c7c45;
  border: 1.5px solid #bfe5cd;
}
.btn-wa:hover { transform: translateY(-2px); background: #dcf2e5; border-color: #1c7c45; }

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  background: var(--ink);
  color: #cfc7b8;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar a { color: var(--gold-soft); font-weight: 700; }
.topbar a:hover { color: #fff; }
.topbar .socials { display: flex; gap: 16px; }
.topbar .socials a { color: #cfc7b8; }
.topbar .socials a:hover { color: var(--gold-soft); }
.topbar .socials svg { width: 15px; height: 15px; display: block; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(34, 29, 21, 0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px;
  flex: none;
  color: var(--terra);
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 640;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.brand-name span { color: var(--terra); font-style: italic; }
.brand-tag {
  font-size: 10.5px;
  letter-spacing: 2.6px;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
  font-weight: 700;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.25s;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 3px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--ink); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
.nav-links .caret { width: 10px; height: 10px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 540px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.22s;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--terra); transform: translateX(3px); }
.dropdown a::before { content: "◆"; font-size: 6px; color: var(--gold); }
.dropdown.dropdown-narrow { min-width: 300px; grid-template-columns: 1fr; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: 14px; }

.nav-links > li > a { white-space: nowrap; }

/* header gets a wider canvas so the nav breathes */
.topbar .container, .site-header .container { max-width: 1340px; }
.nav-inner { gap: 40px; }
.nav-links { flex: 1; justify-content: center; }

/* medium desktops: gentle tightening only */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-inner { gap: 24px; }
  .nav-links { gap: 22px; }
  .brand-tag { display: none; }
  .nav-cta .btn { padding: 12px 20px; font-size: 13.5px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 9px 11px;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 100px;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(180, 83, 42, 0.4); }
  70% { box-shadow: 0 0 0 9px rgba(180, 83, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(180, 83, 42, 0); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--terra); font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  max-width: 560px;
  box-shadow: var(--shadow-sm);
}
.hero-stats .stat { flex: 1; text-align: center; padding: 20px 10px; position: relative; }
.hero-stats .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 24%;
  height: 52%; width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 640;
  color: var(--terra);
}
.stat-label {
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
  margin-top: 2px;
}

/* --- Compass artwork --- */
.chakra-scene {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 460px;
}
.compass-wrap {
  position: relative;
  width: min(430px, 82vw);
  aspect-ratio: 1;
}
.compass-wrap > svg { width: 100%; height: 100%; display: block; }
.spin-slow { animation: spin 120s linear infinite; transform-origin: 50% 50%; }
.spin-rev { animation: spin 80s linear infinite reverse; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-chip {
  position: absolute;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
  color: var(--ink);
}
.float-chip .ico {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(180, 83, 42, 0.09);
  color: var(--terra);
}
.float-chip .ico svg { width: 17px; height: 17px; }
.float-chip small { display: block; font-weight: 500; color: var(--ink-dim); font-size: 11.5px; }
.chip-1 { top: 4%; left: -4%; animation-delay: 0s; }
.chip-2 { bottom: 14%; right: -6%; animation-delay: 1.8s; }
.chip-3 { bottom: -4%; left: 6%; animation-delay: 3.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee strip ---------- */
.strip {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.marquee { display: flex; gap: 58px; width: max-content; animation: marquee 34s linear infinite; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 560;
  letter-spacing: 0.8px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.story-panel {
  position: relative;
  background: var(--ink);
  color: #efe9dc;
  border-radius: 24px;
  padding: 52px 46px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.story-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 16px;
  pointer-events: none;
}
.story-panel .om {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  display: block;
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 480;
  line-height: 1.35;
  color: #f7f2e7;
}
.story-quote em { color: var(--gold-soft); }
.story-meta { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.story-meta .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 18px;
}
.story-meta b { display: block; font-size: 15px; color: #fff; }
.story-meta small { color: #b3a88f; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; }

.exp-badge {
  position: absolute;
  right: 28px;
  top: -24px;
  background: var(--grad-terra);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 14px 30px -10px rgba(150, 64, 29, 0.5);
  animation: floaty 7s ease-in-out infinite;
}
.exp-badge b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1.05; }
.exp-badge small { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }

.about-quote {
  margin: 26px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--terra);
  background: var(--surface);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--terra-deep);
  box-shadow: var(--shadow-sm);
}
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 26px 0 34px; }
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.about-points li::before {
  content: "✓";
  width: 26px; height: 26px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(180, 83, 42, 0.1);
  color: var(--terra);
  font-size: 13px;
  font-weight: 800;
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease-out, box-shadow 0.35s, border-color 0.35s;
  will-change: transform;
}
.service-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-lg); }
.service-ico {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(180, 83, 42, 0.1), rgba(201, 164, 92, 0.14));
  border: 1px solid rgba(180, 83, 42, 0.18);
  color: var(--terra);
  margin-bottom: 22px;
}
.service-ico svg { width: 28px; height: 28px; }
.service-num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-dim);
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card h3 a:hover { color: var(--terra); }
.service-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }
.service-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 13px; }
.service-link svg { width: 15px; height: 15px; }

/* ---------- Feature cards ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease-out, box-shadow 0.35s, border-color 0.35s;
}
.feature-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.feature-ico {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(180, 83, 42, 0.1), rgba(201, 164, 92, 0.16));
  border: 1px solid rgba(180, 83, 42, 0.16);
  color: var(--terra);
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Tools band ---------- */
.tools-band {
  margin-top: 56px;
  padding: 42px 46px;
  border-radius: 22px;
  background: var(--ink);
  color: #efe9dc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.tools-band h3 { font-size: 24px; max-width: 380px; color: #f7f2e7; }
.tools-band h3 em { color: var(--gold-soft); }
.tools-list { display: flex; flex-wrap: wrap; gap: 10px; max-width: 620px; }
.tools-list span {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(201, 164, 92, 0.4);
  font-size: 13.5px;
  font-weight: 600;
  color: #e5d9bd;
}

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step {
  position: relative;
  padding: 40px 26px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.process-step:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -22px; left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 46px;
  font-weight: 560;
  color: var(--terra);
  opacity: 0.9;
}
.process-step h3 { font-size: 18.5px; margin: 12px 0 10px; }
.process-step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Videos ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.video-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; cursor: pointer; overflow: hidden; background: var(--bg-soft); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.video-thumb:hover img { transform: scale(1.05); }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  color: var(--terra);
  box-shadow: 0 8px 26px -6px rgba(34, 29, 21, 0.45);
  transition: transform 0.3s;
  pointer-events: none;
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.video-title { padding: 16px 20px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.5; }

.social-cta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.social-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.social-card .s-ico {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
}
.s-ico.yt { background: #cc3327; }
.s-ico.ig { background: linear-gradient(135deg, #f58529, #dd2a7b 60%, #8134af); }
.s-ico.fb { background: #3b5a9a; }
.social-card .s-ico svg { width: 23px; height: 23px; }
.social-card b { display: block; font-size: 16px; color: var(--ink); }
.social-card small { color: var(--ink-dim); font-size: 13px; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  padding: 32px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.testi-card::before {
  content: "“";
  position: absolute;
  top: 4px; right: 26px;
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  color: rgba(180, 83, 42, 0.12);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: var(--grad-terra);
  flex: none;
}
.testi-author b { font-size: 15px; display: block; color: var(--ink); }
.testi-author small { color: var(--ink-dim); font-size: 12.5px; }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.testi-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: all 0.3s;
}
.testi-nav button:hover { background: var(--grad-terra); color: #fff; border-color: transparent; transform: scale(1.06); }
.testi-nav svg { width: 18px; height: 18px; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.google-badge b { color: var(--ink); }

/* ---------- Locations ---------- */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card {
  padding: 26px 18px;
  text-align: center;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}
.loc-card:hover { transform: translateY(-5px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.loc-card .pin {
  width: 34px; height: 34px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(180, 83, 42, 0.09);
  color: var(--terra);
}
.loc-card .pin svg { width: 16px; height: 16px; }
.loc-card b { font-family: var(--font-display); font-size: 17.5px; font-weight: 600; display: block; margin-bottom: 3px; color: var(--ink); }
.loc-card small { color: var(--ink-dim); font-size: 12px; font-weight: 600; letter-spacing: 0.6px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: 28px;
  padding: 68px 56px;
  overflow: hidden;
  background: var(--ink);
  color: #efe9dc;
  border: 1px solid rgba(201, 164, 92, 0.25);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
  content: "✦";
  position: absolute;
  color: rgba(201, 164, 92, 0.5);
  font-size: 22px;
  animation: floaty 6s ease-in-out infinite;
}
.cta-band::before { top: 32px; left: 7%; }
.cta-band::after { bottom: 32px; right: 7%; animation-delay: 2.5s; }
.cta-band h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 16px; color: #f7f2e7; }
.cta-band h2 .gold { color: var(--gold-soft); font-style: italic; font-weight: 480; }
.cta-band p { color: #c9bfa8; max-width: 620px; margin: 0 auto 34px; font-size: 16.5px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
.cta-band .btn-ghost { color: #efe9dc; border-color: rgba(201, 164, 92, 0.45); }
.cta-band .btn-ghost:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 78px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% -20%, rgba(201, 164, 92, 0.14), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 4.8vw, 54px); margin-bottom: 18px; }
.page-hero p { color: var(--ink-soft); max-width: 700px; margin: 0 auto; font-size: 17px; }
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-bottom: 22px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.breadcrumb a { color: var(--terra); }
.breadcrumb span::before { content: "›"; margin-right: 10px; color: var(--ink-dim); }

/* ---------- Location / service page content ---------- */
.loc-content { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.prose h2 { font-size: 27px; margin: 42px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15.5px; }
.prose a { color: var(--terra); font-weight: 600; border-bottom: 1px solid rgba(180, 83, 42, 0.3); }
.prose a:hover { border-bottom-color: var(--terra); }
.prose ul { margin: 18px 0 22px; display: grid; gap: 12px; }
.prose ul li { display: flex; gap: 12px; color: var(--ink-soft); font-size: 15px; }
.prose ul li::before { content: "◆"; color: var(--gold); font-size: 9px; line-height: 2.6; flex: none; }
.prose strong { color: var(--ink); }

.side-card {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.side-card h3 { font-size: 22px; margin-bottom: 8px; }
.side-card > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.side-card .btn { width: 100%; margin-bottom: 12px; }
.side-links { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.side-links h4 {
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
  font-weight: 800;
}
.side-links a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.22s, padding-left 0.22s;
}
.side-links a:hover { color: var(--terra); padding-left: 6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border-radius: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--gold-soft); }
.faq-item summary {
  padding: 21px 26px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--terra);
  transition: transform 0.3s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 22px; color: var(--ink-soft); font-size: 15px; }
.faq-item .faq-a a { color: var(--terra); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 22px; }
.c-row { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.c-row:last-of-type { border-bottom: 0; }
.c-row .c-ico {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(180, 83, 42, 0.09);
  color: var(--terra);
}
.c-row .c-ico svg { width: 19px; height: 19px; }
.c-row b { display: block; font-size: 15.5px; color: var(--ink); }
.c-row a, .c-row span { color: var(--ink-soft); font-size: 14.5px; }
.c-row a:hover { color: var(--terra); }

.contact-form {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 17px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(180, 83, 42, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
footer {
  margin-top: 40px;
  background: var(--ink);
  color: #cfc7b8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 66px 0 48px;
}
.footer-brand .brand-name { color: #f7f2e7; }
.footer-brand .brand-mark { color: var(--gold-soft); }
.footer-brand p { font-size: 14px; color: #a89d86; max-width: 300px; margin-top: 16px; }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfc7b8;
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--grad-gold); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer-socials svg { width: 18px; height: 18px; }
.footer-grid h4 {
  font-size: 12.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 800;
}
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid ul a { font-size: 14px; color: #a89d86; transition: color 0.22s, padding-left 0.22s; }
.footer-grid ul a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; color: #a89d86; align-items: baseline; }
.footer-contact .fi { color: var(--gold-soft); flex: none; }
.footer-contact .fi svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8b8271;
}
.footer-bottom a { color: var(--gold-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #23b458;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(35, 180, 88, 0.6);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 29px; height: 29px; }

/* ---------- Reveal animations (JS-gated) ---------- */
.reveal-on .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-on .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .services-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .about-grid, .loc-content, .contact-grid { grid-template-columns: 1fr; }
  .chakra-scene { min-height: 400px; margin-top: 26px; }
  .side-card { position: static; }

  .nav-toggle { display: block; }
  /* backdrop-filter on the header traps fixed children inside it —
     disable it on mobile so the slide-in menu positions to the viewport */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--surface);
    padding: 86px 32px 40px;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    z-index: 70;
    overflow-y: auto;
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { font-size: 17px; padding: 12px 0; width: 100%; }
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 12px;
    display: none;
  }
  .nav-links li.dd-open .dropdown { display: grid; }
  .nav-cta .btn-gold { display: none; }
  .nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: 1.5px solid var(--line-strong);
    border-radius: 10px;
    color: var(--ink);
    padding: 8px 10px;
    display: block;
  }
  .nav-close svg { width: 20px; height: 20px; display: block; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 29, 21, 0.35);
    z-index: 65;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

@media (min-width: 1025px) { .nav-close { display: none; } }

@media (max-width: 640px) {
  section { padding: 68px 0; }
  .hero { padding: 52px 0 76px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats .stat { flex: 1 1 45%; }
  .services-grid, .videos-grid, .features-grid, .process-grid, .social-cta, .form-row { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .topbar .socials { display: none; }
  .cta-band { padding: 48px 26px; }
  .tools-band { padding: 30px 26px; }
  .story-panel { padding: 40px 28px; }
  .exp-badge { right: 14px; }
  .float-chip { display: none; }
  .brand-name { font-size: 17px; letter-spacing: 1px; }
  .process-grid { row-gap: 38px; }
}

/* ============================================================
   Featured video (home)
   ============================================================ */
.featured-video {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
  background: #000;
}
.featured-video .video-thumb { aspect-ratio: 16 / 9; }
.featured-video .video-thumb img { opacity: 0.92; }
.featured-video .fv-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(180deg, transparent, rgba(10, 8, 5, 0.85));
  color: #fff;
  pointer-events: none;
}
.featured-video .fv-caption b { font-family: var(--font-display); font-size: clamp(17px, 2.2vw, 24px); display: block; }
.featured-video .fv-caption small { color: #d8cdb8; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.featured-video .play-btn { width: 84px; height: 84px; background: var(--grad-terra); color: #fff; }
.featured-video .play-btn svg { width: 30px; height: 30px; }

/* ============================================================
   Social profile pages (FB / IG / YT look-alikes)
   ============================================================ */
.sp-shell {
  max-width: 1060px;
  margin: 40px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.sp-cover {
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-cover svg.cover-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.sp-cover.fb {
  background:
    linear-gradient(120deg, rgba(18, 48, 94, 0.82), rgba(24, 119, 242, 0.55) 60%, rgba(61, 139, 255, 0.45)),
    url("../images/gallery/workshop-stage-wide.jpg") center 32% / cover no-repeat;
}
.sp-cover.ig {
  background:
    linear-gradient(115deg, rgba(249, 206, 52, 0.55), rgba(238, 42, 123, 0.55) 52%, rgba(98, 40, 215, 0.6)),
    url("../images/gallery/workshop-stage-wide.jpg") center 32% / cover no-repeat;
}
.sp-cover.yt {
  background:
    linear-gradient(120deg, rgba(26, 10, 8, 0.82), rgba(122, 18, 16, 0.6) 55%, rgba(204, 31, 26, 0.55)),
    url("../images/gallery/workshop-stage-wide.jpg") center 32% / cover no-repeat;
}
.sp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.sp-cover .cover-title {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  text-align: center;
  padding: 0 20px;
}
.sp-head {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: 0 34px 22px;
  position: relative;
  flex-wrap: wrap;
}
.sp-avatar {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin-top: -58px;
  background: var(--cream);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--terra);
  flex: none;
}
.sp-avatar svg { width: 64%; height: 64%; }
.sp-avatar.ig-ring { position: relative; }
.sp-avatar.ig-ring::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  z-index: -1;
}
.sp-id { flex: 1; min-width: 220px; padding-top: 14px; }
.sp-id h1 { font-size: 26px; display: flex; align-items: center; gap: 8px; }
.sp-id .verified {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  flex: none;
}
.sp-id p { color: var(--ink-dim); font-size: 14px; font-weight: 600; }
.sp-actions { display: flex; gap: 10px; padding: 14px 0 0; flex-wrap: wrap; }
.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.sp-btn:hover { transform: translateY(-2px); opacity: 0.94; }
.sp-btn svg { width: 16px; height: 16px; }
.sp-btn.b-fb { background: #1877f2; }
.sp-btn.b-ig { background: linear-gradient(45deg, #ee2a7b, #6228d7); }
.sp-btn.b-yt { background: #cc1f1a; }
.sp-btn.b-soft { background: var(--bg-soft); color: var(--ink); }

.sp-tabs {
  display: flex;
  gap: 4px;
  padding: 0 26px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.sp-tabs::-webkit-scrollbar { display: none; }
.sp-tab {
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dim);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.sp-tab.active { color: var(--terra); border-bottom-color: var(--terra); }
.sp-panel { padding: 26px; }
.sp-panel[hidden] { display: none; }

.sp-stats {
  display: flex;
  gap: 26px;
  padding: 14px 0 0;
  flex-wrap: wrap;
}
.sp-stats span { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.sp-stats b { color: var(--ink); }

/* FB-style feed */
.fb-feed { max-width: 640px; margin: 0 auto; display: grid; gap: 20px; }
.fb-post {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.fb-post-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.fb-post-head .mini-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(180, 83, 42, 0.1);
  display: grid;
  place-items: center;
  color: var(--terra);
  flex: none;
}
.fb-post-head .mini-av svg { width: 24px; height: 24px; }
.fb-post-head .mini-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.fb-post-head b { font-size: 14.5px; display: block; line-height: 1.3; }
.fb-post-head small { color: var(--ink-dim); font-size: 12.5px; }
.fb-post-text { padding: 0 16px 12px; font-size: 14.5px; color: var(--ink-soft); }
.fb-post .video-thumb { border-radius: 0; }
.fb-post-foot {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
}
.fb-post-foot a {
  flex: 1;
  text-align: center;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-dim);
  transition: background 0.2s, color 0.2s;
}
.fb-post-foot a:hover { background: var(--bg-soft); color: var(--terra); }

/* IG-style grid */
.ig-highlights { display: flex; gap: 22px; padding: 6px 0 22px; overflow-x: auto; scrollbar-width: none; }
.ig-highlights::-webkit-scrollbar { display: none; }
.ig-hl { text-align: center; flex: none; width: 76px; }
.ig-hl .hl-ring {
  width: 66px; height: 66px;
  margin: 0 auto 7px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}
.ig-hl .hl-in {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--surface);
  display: grid;
  place-items: center;
  color: var(--terra);
}
.ig-hl .hl-in svg { width: 26px; height: 26px; }
.ig-hl small { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile .ig-ovl {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0);
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
.ig-tile:hover .ig-ovl { background: rgba(0,0,0,0.35); opacity: 1; }
.ig-tile .ig-ovl svg { width: 30px; height: 30px; }
.ig-tile.reel::after {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>') center/contain no-repeat;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* YT-style grid */
.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.yt-card { border-radius: 14px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.yt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.yt-card .video-title { font-size: 13.5px; padding: 12px 14px; }

/* ============================================================
   Products
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease-out, box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.product-ico {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(180, 83, 42, 0.1), rgba(201, 164, 92, 0.18));
  border: 1px solid rgba(180, 83, 42, 0.18);
  color: var(--terra);
}
.product-ico svg { width: 30px; height: 30px; }
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-card p { font-size: 13.5px; color: var(--ink-soft); flex: 1; margin-bottom: 16px; }
.product-card .p-tag {
  display: inline-block;
  margin: 0 auto 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-card .btn { padding: 11px 20px; font-size: 13.5px; }

/* ============================================================
   Reviews page
   ============================================================ */
.rating-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.rating-big {
  text-align: center;
  padding: 30px 44px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.rating-big .num { font-family: var(--font-display); font-size: 58px; font-weight: 640; color: var(--ink); line-height: 1; }
.rating-big .stars { font-size: 20px; margin: 8px 0 4px; }
.rating-big small { color: var(--ink-dim); font-weight: 600; font-size: 13px; }
.reviews-masonry { columns: 3; column-gap: 22px; }
.reviews-masonry .testi-card { display: inline-block; width: 100%; margin: 0 0 22px; flex: none; }

/* ============================================================
   Collaborate
   ============================================================ */
.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.collab-card {
  display: flex;
  gap: 20px;
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.collab-card:hover { transform: translateY(-5px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.collab-card .c-ico {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(180, 83, 42, 0.1), rgba(201, 164, 92, 0.16));
  border: 1px solid rgba(180, 83, 42, 0.16);
  color: var(--terra);
}
.collab-card .c-ico svg { width: 25px; height: 25px; }
.collab-card h3 { font-size: 20px; margin-bottom: 8px; }
.collab-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   Photo frame + gallery + lightbox
   ============================================================ */
.photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
}
.photo-frame img { width: 100%; display: block; }
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.photo-frame .pf-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 18px;
  background: linear-gradient(180deg, transparent, rgba(15, 12, 7, 0.78));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item .g-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(15, 12, 7, 0.75));
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-cap { opacity: 1; }
.g-item.g-wide { grid-column: span 2; }
.g-item.g-tall { grid-row: span 2; }

.lb-ovl {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(15, 12, 7, 0.92);
  display: none;
  place-items: center;
  padding: 30px;
}
.lb-ovl.open { display: grid; }
.lb-ovl img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.8);
}
.lb-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
}
.lb-close svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 10px; }
}

/* ============================================================
   Art figures, timeline, photo strips, blog
   ============================================================ */
.art-figure {
  margin: 34px auto;
  text-align: center;
  max-width: 560px;
}
.art-figure.wide { max-width: 860px; }
.art-figure img { width: 100%; height: auto; }
.art-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.art-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.photo-strip .photo-frame { border-radius: 18px; }

.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--terra));
  border-radius: 2px;
}
.tl-item { position: relative; padding: 0 0 34px 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -31px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--terra);
  box-shadow: 0 0 0 4px rgba(180, 83, 42, 0.12);
}
.tl-item .tl-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.tl-item h3 { font-size: 20px; margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--ink-soft); }

.defect-list { display: grid; gap: 14px; margin: 22px 0; }
.defect-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terra);
  box-shadow: var(--shadow-sm);
}
.defect-item .d-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--terra);
  flex: none;
  width: 30px;
}
.defect-item b { display: block; font-size: 15.5px; margin-bottom: 2px; }
.defect-item p { font-size: 14px; color: var(--ink-soft); margin: 0 !important; }
.defect-item p::before { display: none; }

.zones-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 24px 0; }
.zone-chip {
  padding: 12px 10px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.zone-chip b { display: block; font-size: 14px; color: var(--terra); }
.zone-chip small { font-size: 11.5px; color: var(--ink-dim); font-weight: 600; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.blog-card .b-img { aspect-ratio: 16/8; overflow: hidden; background: var(--bg-soft); }
.blog-card .b-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .b-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card .b-tag { font-size: 11.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.blog-card h3 { font-size: 21px; margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--terra); }
.blog-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.blog-card .b-meta { margin-top: 16px; font-size: 12.5px; color: var(--ink-dim); font-weight: 700; }

@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr; }
  .zones-mini { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WhatsApp-style review chats
   ============================================================ */
.wchat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.wchat {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #efe7dd;
}
.wchat-head {
  background: #075e54;
  color: #fff;
  display: flex;
  gap: 11px;
  padding: 11px 14px;
  align-items: center;
}
.wchat-head .wa-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-terra);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex: none;
}
.wchat-head b { font-size: 14.5px; display: block; line-height: 1.25; }
.wchat-head small { font-size: 11.5px; color: #b7d4cf; }
.wchat-head .wc-icons { margin-left: auto; display: flex; gap: 16px; opacity: 0.85; }
.wchat-head .wc-icons svg { width: 17px; height: 17px; }
.wchat-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.25) 0.8px, transparent 1px);
  background-size: 26px 26px;
}
.wchat-date {
  align-self: center;
  background: #e1f2fb;
  color: #5b6d75;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.wmsg {
  max-width: 88%;
  padding: 8px 12px 6px;
  border-radius: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #111b21;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.wmsg.in { background: #ffffff; align-self: flex-start; border-top-left-radius: 2px; }
.wmsg.out { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 2px; }
.wmsg .wtime {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: #7d8b91;
  margin-top: 3px;
}
.wmsg .wtick { color: #53bdeb; font-size: 12px; letter-spacing: -3px; }

/* ============================================================
   Masterclass landing page
   ============================================================ */
.lp-announce {
  background: var(--ink);
  color: #f2ecdf;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 9px 16px;
}
.lp-announce b { color: var(--gold-soft); }
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.lp-header .nav-inner { padding: 12px 0; }
.lp-hero { padding: 64px 0 80px; }
.lp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.lp-hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 18px 0 20px; }
.lp-points { display: grid; gap: 12px; margin: 24px 0 30px; }
.lp-points li { display: flex; gap: 12px; font-size: 15.5px; font-weight: 600; color: var(--ink-soft); align-items: flex-start; }
.lp-points li::before {
  content: "✓";
  width: 24px; height: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(180, 83, 42, 0.12);
  color: var(--terra);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}
.lp-when {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 26px;
}
.lp-when span { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.lp-when svg { width: 16px; height: 16px; color: var(--terra); }

.countdown { display: flex; gap: 12px; margin: 26px 0; }
.cd-box {
  min-width: 76px;
  text-align: center;
  padding: 14px 10px 10px;
  border-radius: 14px;
  background: var(--ink);
  color: #f7f2e7;
  box-shadow: var(--shadow-md);
}
.cd-box b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1; color: var(--gold-soft); }
.cd-box small { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 800; color: #a89d86; }

.lp-cta-big {
  font-size: 17px;
  padding: 19px 40px;
  box-shadow: 0 16px 40px -12px rgba(150, 64, 29, 0.65);
}
.lp-note { font-size: 13px; color: var(--ink-dim); margin-top: 12px; font-weight: 600; }

.lp-modules { display: grid; gap: 18px; max-width: 860px; margin: 0 auto; }
.lp-module {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.lp-module:hover { transform: translateX(6px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.lp-module .m-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  font-weight: 600;
  color: var(--terra);
  flex: none;
  width: 54px;
}
.lp-module h3 { font-size: 19.5px; margin-bottom: 6px; }
.lp-module p { font-size: 14.5px; color: var(--ink-soft); }

.lp-band {
  background: var(--ink);
  color: #efe9dc;
  border-radius: 26px;
  padding: 50px 46px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.lp-band h2 { color: #f7f2e7; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.lp-band h2 em { color: var(--gold-soft); }
.lp-band p { color: #c9bfa8; max-width: 640px; margin: 0 auto 28px; }

.lp-for { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-for-card {
  padding: 26px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 15px;
}
.lp-for-card .ico {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(180, 83, 42, 0.09);
  color: var(--terra);
}
.lp-for-card .ico svg { width: 24px; height: 24px; }
.lp-for-card small { display: block; font-weight: 500; color: var(--ink-dim); font-size: 12.5px; margin-top: 4px; }

.lp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -10px 30px -14px rgba(34, 29, 21, 0.3);
}
.lp-sticky.show { transform: none; }
.lp-sticky .lps-info { font-size: 13px; font-weight: 800; }
.lp-sticky .lps-info small { display: block; color: var(--ink-dim); font-weight: 600; }
.lp-sticky .btn { padding: 12px 26px; font-size: 14px; }

@media (max-width: 1024px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-for { grid-template-columns: repeat(2, 1fr); }
  .wchat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lp-for { grid-template-columns: 1fr 1fr; gap: 12px; }
  .countdown { gap: 8px; }
  .cd-box { min-width: 64px; padding: 11px 8px 8px; }
  .cd-box b { font-size: 24px; }
  .lp-band { padding: 38px 24px; }
  .lp-module { flex-direction: column; gap: 8px; padding: 22px 20px; }
  .lp-sticky .lps-info { display: none; }
}

/* ============================================================
   Vastu AI page (ChatGPT-style)
   ============================================================ */
.ai-shell {
  max-width: 880px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
}
.ai-cover {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 26px 30px 22px;
  background:
    linear-gradient(115deg, rgba(34, 29, 21, 0.92), rgba(150, 64, 29, 0.82) 55%, rgba(169, 126, 47, 0.75)),
    url("../images/gallery/workshop-stage-wide.jpg") center 30% / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ai-avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  flex: none;
  position: relative;
  padding: 3px;
  background: conic-gradient(var(--gold-soft), #fff, var(--terra), var(--gold-soft));
  animation: spin 8s linear infinite;
}
.ai-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: spin 8s linear infinite reverse;
}
.ai-id { flex: 1; min-width: 200px; }
.ai-id h1 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-id h1 .ai-spark { font-size: 20px; }
.ai-id p { font-size: 13.5px; color: #f0e2ce; font-weight: 600; }
.ai-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.ai-badges span {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.ai-badges .live { display: inline-flex; align-items: center; gap: 6px; }
.ai-badges .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }

.ai-thread {
  padding: 28px 4px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ai-msg { display: flex; gap: 12px; max-width: 100%; animation: aiIn 0.35s var(--ease); scroll-margin-top: 98px; }
@keyframes aiIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ai-msg .m-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex: none;
  overflow: hidden;
  border: 2px solid var(--gold-soft);
}
.ai-msg .m-av img { width: 100%; height: 100%; object-fit: cover; }
.ai-msg .m-body {
  flex: 1;
  min-width: 0;
  padding: 20px 26px;
  border-radius: 18px;
  font-size: 15.5px;
  line-height: 1.75;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top-left-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.ai-msg .m-body a { color: var(--terra); font-weight: 700; text-decoration: underline; }
/* buttons inside chat bubbles: keep button styling, not link styling */
.ai-msg .m-body a.btn { text-decoration: none; }
.ai-msg .m-body a.btn.btn-gold { color: #fff; }
.ai-msg .m-body a.btn.btn-wa { color: #1c7c45; }
.ai-msg .m-body a.btn.btn-ghost { color: var(--ink); }
.ai-msg.user { align-self: flex-end; flex-direction: row-reverse; max-width: 85%; }
.ai-msg.user .m-body { flex: none; padding: 13px 18px; font-size: 14.5px; line-height: 1.6; }
.ai-msg.user .m-body {
  background: var(--grad-terra);
  color: #fff;
  border: none;
  border-radius: 16px;
  border-top-right-radius: 5px;
}
.ai-typing { display: inline-flex; gap: 5px; padding: 6px 2px; }
.ai-typing i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: aiDot 1.2s infinite;
}
.ai-typing i:nth-child(2) { animation-delay: 0.15s; }
.ai-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-6px); opacity: 1; } }

.ai-suggest { display: flex; flex-wrap: wrap; gap: 9px; padding: 4px 0 8px; }
.ai-suggest button {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--terra);
  transition: all 0.22s;
}
.ai-suggest button:hover { background: var(--terra); color: #fff; border-color: var(--terra); transform: translateY(-2px); }

.ai-inputbar {
  position: sticky;
  bottom: 14px;
  z-index: 45;
  margin-top: 18px;
  padding: 14px 16px 10px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.ai-inputbar form { display: flex; gap: 10px; align-items: center; }
.ai-attach {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  color: var(--terra);
  display: grid;
  place-items: center;
  flex: none;
  transition: all 0.25s;
}
.ai-attach:hover { border-color: var(--terra); transform: scale(1.06); }
.ai-attach svg { width: 21px; height: 21px; }
.ai-mic.listening {
  background: var(--grad-terra);
  color: #fff;
  border-color: transparent;
  animation: pulse 1.2s infinite;
}
.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
}
.report-actions button {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  color: var(--terra);
  cursor: pointer;
  transition: all 0.2s;
}
.report-actions button:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.ai-preview {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 4px 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.ai-preview.show { display: flex; }
.ai-preview img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.ai-preview .pdficon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #cc3327;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.ai-preview .rm {
  margin-left: auto;
  border: none;
  background: none;
  color: var(--ink-dim);
  font-size: 18px;
  padding: 4px 8px;
}
.ai-msg .m-body img.plan-thumb { max-width: 220px; border-radius: 10px; display: block; margin-bottom: 8px; }
.ai-msg .m-body h3 { font-size: 20px; margin: 22px 0 8px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.ai-msg .m-body h3:first-child { margin-top: 0; }
.ai-msg .m-body ul { margin: 6px 0 10px 4px; display: grid; gap: 5px; }
.ai-msg .m-body ul li { display: flex; gap: 8px; }
.ai-msg .m-body ul li::before { content: "•"; color: var(--terra); font-weight: 800; }
.ai-inputbar input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
}
.ai-inputbar input:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(180, 83, 42, 0.12); }
.ai-inputbar button[type="submit"] {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--grad-terra);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.25s;
  box-shadow: 0 8px 20px -8px rgba(150, 64, 29, 0.6);
}
.ai-inputbar button[type="submit"]:hover { transform: scale(1.08); }
.ai-inputbar button svg { width: 20px; height: 20px; }
.ai-note { text-align: center; font-size: 11.5px; color: var(--ink-dim); font-weight: 600; margin-top: 9px; }

.nav-links .ai-tab {
  background: linear-gradient(120deg, rgba(180, 83, 42, 0.1), rgba(201, 164, 92, 0.16));
  border: 1px solid rgba(180, 83, 42, 0.25);
  border-radius: 100px;
  padding: 7px 16px !important;
  color: var(--terra) !important;
  font-weight: 800;
}
.nav-links .ai-tab::after { display: none; }
.nav-links .ai-tab:hover { background: rgba(180, 83, 42, 0.16); }

@media (max-width: 640px) {
  .ai-shell { margin-top: 14px; }
  .ai-cover { padding: 18px 18px 16px; border-radius: 18px; }
  .ai-avatar { width: 58px; height: 58px; }
  .ai-thread { padding: 20px 0 6px; }
  .ai-msg .m-body { padding: 16px 18px; }
  .ai-inputbar { bottom: calc(84px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   Footer newsletter
   ============================================================ */
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #f2ecdf;
  font-family: inherit;
  font-size: 14px;
}
.newsletter input::placeholder { color: #8b8271; }
.newsletter input:focus { outline: none; border-color: var(--gold-soft); }
.newsletter button {
  padding: 12px 20px;
  border-radius: 100px;
  border: none;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 800;
  font-size: 13.5px;
  transition: transform 0.25s;
}
.newsletter button:hover { transform: translateY(-2px); }
.footer-note { font-size: 12.5px; color: #7d7462; margin-top: 12px; max-width: 320px; }

/* ============================================================
   Live chat widget
   ============================================================ */
.chat-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  border: none;
  background: var(--ink);
  color: #f2ecdf;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 14px 34px -10px rgba(34, 29, 21, 0.55);
  transition: transform 0.3s var(--ease);
}
.chat-fab:hover { transform: translateY(-3px); }
.chat-fab svg { width: 19px; height: 19px; color: var(--gold-soft); }
.chat-fab .cdot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #33c46a;
  animation: pulse 2.2s infinite;
}

.chat-panel {
  position: fixed;
  left: 24px;
  bottom: 92px;
  z-index: 61;
  width: min(380px, calc(100vw - 40px));
  height: min(560px, calc(100vh - 130px));
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -20px rgba(34, 29, 21, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: all 0.32s var(--ease);
}
.chat-panel.open { opacity: 1; visibility: visible; transform: none; }
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--ink);
  color: #f2ecdf;
}
.chat-head .ch-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.chat-head .ch-av svg { width: 22px; height: 22px; }
.chat-head b { display: block; font-size: 15px; }
.chat-head small { font-size: 12px; color: #b3a88f; display: flex; align-items: center; gap: 6px; }
.chat-head small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #33c46a; }
.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #b3a88f;
  padding: 6px;
}
.chat-close svg { width: 18px; height: 18px; display: block; }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
}
.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.55;
}
.chat-msg.bot {
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.chat-msg.user {
  background: var(--grad-terra);
  color: #fff;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}
.chat-msg a { color: var(--terra); font-weight: 700; text-decoration: underline; }
.chat-msg.user a { color: #ffe3d1; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 95%; }
.chat-chip {
  padding: 8px 15px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--terra);
  transition: all 0.22s;
}
.chat-chip:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.chat-input {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.chat-input input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
}
.chat-input input:focus { outline: none; border-color: var(--terra); }
.chat-input button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--grad-terra);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.25s;
}
.chat-input button:hover { transform: scale(1.08); }
.chat-input button svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { columns: 2; }
  .collab-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .reviews-masonry { columns: 1; }
  .yt-grid { grid-template-columns: 1fr; }
  .sp-head { padding: 0 20px 18px; }
  .sp-panel { padding: 18px 14px; }
  .chat-fab { padding: 13px 15px; }
  .chat-fab .cfab-label { display: none; }

  /* topbar: phone only, centered, single line */
  .topbar .tagline { display: none; }
  .topbar-inner { justify-content: center; padding: 8px 0; }
  .topbar { font-size: 14px; }

  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .hero-sub { font-size: 16.5px; }
  .section-title { font-size: clamp(27px, 7.5vw, 34px); }
  .page-hero h1 { font-size: clamp(29px, 8.5vw, 40px); }
  .hero-stats .stat { padding: 16px 6px; }
  .stat-num { font-size: 26px; }
  .exp-badge { top: auto; bottom: -18px; right: 14px; padding: 12px 18px; }
  .exp-badge b { font-size: 24px; }
  .story-panel { margin-bottom: 26px; }
  .tools-band h3 { font-size: 20px; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 30px); }
  .sp-cover { height: 170px; }
  .sp-avatar { width: 92px; height: 92px; margin-top: -46px; }
  .sp-id h1 { font-size: 22px; }
  .sp-actions { width: 100%; }
  .sp-actions .sp-btn { flex: 1; justify-content: center; }
  .rating-hero { gap: 22px; }
  .featured-video .fv-caption { padding: 16px 16px; }
  .breadcrumb { max-width: 92vw; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .nav-inner { padding: 12px 0; }
  .brand-mark { width: 40px; height: 40px; }
}

/* ============================================================
   Mobile bottom social bar + Reels overlay (mobile only)
   ============================================================ */
.mbar { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  /* transparent floating glass pill */
  .mbar {
    display: flex;
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 64;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 8px 24px;
    box-shadow: 0 12px 34px -12px rgba(34, 29, 21, 0.35);
  }
  .mbar button {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-family: inherit;
    font-size: 9.5px;
    font-weight: 800;
    color: var(--ink-soft);
    letter-spacing: 0.2px;
  }
  .mbar .mi {
    width: 32px; height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
  }
  .mbar .mi svg { width: 17px; height: 17px; }
  .mbar .mi.fb { background: #1877f2; }
  .mbar .mi.ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
  .mbar .mi.yt { background: #cc1f1a; }

  /* mobile: WhatsApp float hidden — live agent takes its place (bottom-right) */
  .wa-float { display: none; }
  .chat-fab {
    left: auto;
    right: 16px;
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .chat-panel {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(148px + env(safe-area-inset-bottom));
    height: min(500px, calc(100vh - 180px));
  }
}

/* Reels overlay */
.reels-ovl {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #000;
  display: none;
}
.reels-ovl.open { display: block; }
/* single persistent player sits behind the scrolling posters */
#reelPlayerHost {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#reelPlayerHost iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.reels-track {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.reels-track::-webkit-scrollbar { display: none; }
.reel-slide {
  position: relative;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  overflow: hidden;
}
.reel-slide .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s;
  z-index: 1;
}
.reel-slide .poster-blur {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(24px) brightness(0.5);
  transition: opacity 0.3s;
}
/* when the shared player is live on this slide, let the video show through */
.reel-slide.live .poster,
.reel-slide.live .poster-blur { opacity: 0; }
.reel-slide .tapzone {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none;
  border: none;
}
.reel-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px calc(26px);
  background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent);
  color: #fff;
  pointer-events: none;
}
.reel-top > * { pointer-events: auto; }
.reel-back {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}
.reel-back svg { width: 20px; height: 20px; }
.reel-top b { font-size: 15.5px; font-weight: 800; }
.reel-top small { display: block; font-size: 12px; opacity: 0.85; font-weight: 600; }
.reel-follow {
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.8);
}
.reel-rail {
  position: absolute;
  right: 8px;
  bottom: 96px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.reel-rail button, .reel-rail a {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
}
.reel-rail svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55)); }
.reel-rail .rl-like.liked svg { color: #ff2d55; }
.reel-rail .rl-like.liked svg path { fill: #ff2d55; }
.reel-meta {
  position: absolute;
  left: 14px; right: 78px;
  bottom: 22px;
  z-index: 5;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.65);
}
.reel-meta b { display: flex; align-items: center; gap: 8px; font-size: 14.5px; }
.reel-meta .rm-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-terra);
  display: inline-grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.reel-meta .rm-av svg { width: 16px; height: 16px; }
.reel-meta p {
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-mute {
  position: absolute;
  top: 70px; right: 12px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}
.reel-mute svg { width: 18px; height: 18px; }
.reel-toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%);
  z-index: 95;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.reel-toast.show { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
