/* ============================================================
   KAALTRIKAAL — A Modern Approach to Vedic Science
   ============================================================ */

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

:root {
  --bg:        #1d0432;
  --bg-2:      #260b3a;
  --bg-hero:   #270b38;
  --panel:     #2a0f40;
  --panel-2:   #321549;
  --panel-3:   #2d1342;
  --line:      rgba(230,195,100,0.14);
  --line-soft: rgba(216,201,232,0.10);

  --gold:        #e6c364;
  --gold-bright: #ecd277;
  --gold-deep:   #c9a14a;
  --gold-soft:   rgba(230,195,100,0.55);

  --text:      #c8b6d8;
  --text-soft: #a895bd;
  --text-dim:  #7c688f;
  --heading:   #e6c364;
  --white:     #f3ecf7;

  --grad-gold: linear-gradient(135deg, #ecd277 0%, #d9b454 55%, #c69b3f 100%);

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: rgba(230,195,100,0.3); color: var(--white); }

/* ---------- Typography ---------- */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--heading); font-weight: 800; line-height: 1.08; }

.eyebrow {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.section {
  position: relative;
  padding: 130px 0;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.section-head p { color: var(--text-soft); font-size: 1.12rem; margin-top: 18px; }

/* ---------- Background dot texture ---------- */
.dotfield {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(230,195,100,0.10) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-weight: 700; font-size: 1.02rem; letter-spacing: 0.01em;
  padding: 17px 38px; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-gold {
  background: var(--grad-gold); color: #2c1404;
  box-shadow: 0 10px 38px -10px rgba(230,195,100,0.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -10px rgba(230,195,100,0.7); }
.btn-ghost {
  border: 1px solid rgba(230,195,100,0.4); color: var(--white);
  background: rgba(230,195,100,0.03);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(230,195,100,0.10); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 15px 0;
  background: rgba(29,4,50,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
/* ---- Text wordmark logo ---- */
.logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.logo:hover { color: var(--gold-bright); }
.nav.scrolled .logo { font-size: 1.45rem; }

/* ---- Hero logo emblem ---- */
.hero-logo { text-align: center; margin: 0 auto 34px; }
.hero-logo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .hero-logo { margin-bottom: 24px; }
  .hero-logo img { max-width: 300px; }
}
.nav-links { display: flex; gap: 38px; }
.nav-links a {
  font-weight: 600; font-size: 0.97rem; color: var(--text);
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav .btn { padding: 12px 28px; font-size: 0.95rem; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 150px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(58,24,82,0.85), transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 0%, #38104e, transparent 60%),
    var(--bg-hero);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-mantra-dev {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--gold); font-size: clamp(1.4rem, 2.8vw, 2rem); letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero-mantra-rom {
  font-size: 0.82rem; letter-spacing: 0.34em; color: var(--text-dim);
  text-transform: uppercase; line-height: 2; margin-bottom: 44px;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem); font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 34px;
}
.hero h1 em { display: block; font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--text-soft);
  max-width: 600px; margin: 0 auto 48px;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  margin-top: 88px; display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--text-dim);
}
.scroll-cue svg { width: 20px; height: 20px; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--panel-3); border-block: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; position: relative; z-index: 3;
}
.marquee-track { display: flex; width: max-content; animation: scrollx 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: 1.4rem; padding: 0 30px; white-space: nowrap; opacity: 0.92;
}
.marquee-track .dot { color: var(--gold-deep); opacity: 0.6; }
@keyframes scrollx { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================================================
   PAVAMANA MANTRA
   ============================================================ */
.pavamana { text-align: center; padding: 150px 0; overflow: hidden; }
.mantra-ring {
  position: relative; display: inline-flex; flex-direction: column; align-items: center;
  padding: 70px 30px;
}
.mantra-ring::before, .mantra-ring::after {
  content: ''; position: absolute; left: 50%; top: 50%; border-radius: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}
/* outer ring — a gold light sweeping around the circle */
.mantra-ring::before {
  width: min(540px, 92vw); height: min(540px, 92vw);
  background: conic-gradient(from 0deg,
      rgba(230,195,100,0.05) 0deg,
      rgba(230,195,100,0.05) 250deg,
      rgba(236,210,119,0.80) 350deg,
      rgba(230,195,100,0.05) 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
          mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  animation: spin 20s linear infinite;
}
/* inner ring — dashed, counter-rotating + breathing */
.mantra-ring::after  {
  width: min(400px, 70vw); height: min(400px, 70vw);
  border: 1px dashed rgba(230,195,100,0.16);
  animation: spin 40s linear infinite reverse, mantraBreathe 7s var(--ease) infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg);} }
@keyframes mantraBreathe { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

/* orbiting glow dot on the outer ring */
.mantra-orbit {
  position: absolute; left: 50%; top: 50%;
  width: min(540px, 92vw); height: min(540px, 92vw);
  transform: translate(-50%,-50%); border-radius: 50%;
  animation: spin 16s linear infinite; pointer-events: none; z-index: 1;
}
.mantra-orbit::before {
  content: ''; position: absolute; top: -4px; left: 50%; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px 4px rgba(236,210,119,0.55);
}
.mantra-orbit.inner {
  width: min(400px, 70vw); height: min(400px, 70vw);
  animation: spin 26s linear infinite reverse;
}
.mantra-orbit.inner::before {
  width: 5px; height: 5px; margin-left: -2.5px; top: -2.5px;
  background: var(--gold); box-shadow: 0 0 10px 2px rgba(230,195,100,0.5);
}
.mantra-dev {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 2.2; position: relative; z-index: 2;
}
.mantra-dev .line { display: block; opacity: 0.92; }
.mantra-rule { width: 90px; height: 1px; background: var(--gold-soft); margin: 34px auto; position: relative; z-index: 2; }
.mantra-rom {
  font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-soft);
  font-size: 1.12rem; line-height: 2; position: relative; z-index: 2;
}
.mantra-meaning {
  color: var(--text-dim); font-size: 0.95rem; line-height: 1.95; position: relative; z-index: 2;
  letter-spacing: 0.02em;
}

/* ============================================================
   CARD GRID — generic
   ============================================================ */
.grid { display: grid; gap: 26px; position: relative; z-index: 2; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,195,100,0.07); border: 1px solid var(--line);
  color: var(--gold); margin-bottom: 26px;
}
.icon-circle svg { width: 28px; height: 28px; }

/* Benefit cards */
.benefit-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 38px 32px; transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.benefit-card:hover { transform: translateY(-7px); border-color: var(--line); background: var(--panel-2); }
.benefit-card h3 { font-size: 1.45rem; color: var(--gold); margin-bottom: 12px; }
.benefit-card p { color: var(--text-soft); font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; position: relative; z-index: 2; }
.service-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 42px 38px; display: flex; flex-direction: column;
  flex: 1 1 300px; max-width: calc((100% - 52px) / 3);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s, background .4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(230,195,100,0.35); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.6); }
.service-card.featured { background: linear-gradient(165deg, #341650, #29103f); border-color: rgba(230,195,100,0.28); }
.service-card { position: relative; }
.price-card { position: relative; }
.rec-tag {
  position: absolute; top: 20px; right: 20px; display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-gold); color: #2c1404; font-weight: 800; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.rec-tag svg { width: 12px; height: 12px; }
.service-card .kicker { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.service-card h3 { font-size: 1.85rem; margin-bottom: 18px; }
.service-card > p { color: var(--text-soft); margin-bottom: 28px; }
.service-list { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 14px; }
.service-list li { display: flex; align-items: center; gap: 13px; color: var(--text); font-size: 0.98rem; }
.service-list li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.service-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.service-link svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(6px); }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.steps::before {
  content: ''; position: absolute; top: 44px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-soft) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { text-align: center; position: relative; }
.step-icon {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 26px; position: relative;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.step-icon svg { width: 32px; height: 32px; }
.step-num {
  position: absolute; top: -6px; right: -6px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-gold); color: #2c1404; font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.4rem; margin-bottom: 12px; }
.step p { color: var(--text-soft); font-size: 0.96rem; }

/* ============================================================
   GUIDING LIGHT (Smeet)
   ============================================================ */
.guide { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.guide-photo-wrap { position: relative; display: flex; justify-content: center; }
.guide-orbit {
  position: relative; width: 440px; max-width: 100%; aspect-ratio: 1;
  border-radius: 50%; border: 1px solid rgba(230,195,100,0.12);
  display: flex; align-items: center; justify-content: center;
}
/* sweeping gold light around the outer orbit */
.guide-orbit::before {
  content: ''; position: absolute; inset: -1px; border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(230,195,100,0.04) 0deg,
      rgba(230,195,100,0.04) 250deg,
      rgba(236,210,119,0.75) 350deg,
      rgba(230,195,100,0.04) 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
          mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  animation: guideSpin 22s linear infinite; pointer-events: none;
}
/* rotating layer — dashed ring + orbiting stars */
.guide-spin {
  position: absolute; inset: 5%; border-radius: 50%;
  border: 1px dashed rgba(230,195,100,0.16);
  animation: guideSpin 34s linear infinite reverse; pointer-events: none;
}
.guide-spin::before, .guide-spin::after {
  content: '\2726'; position: absolute; left: 50%; transform: translateX(-50%);
}
.guide-spin::before { top: -12px; color: var(--gold); font-size: 1.3rem; }
.guide-spin::after  { bottom: -11px; color: var(--gold-deep); font-size: 1rem; }
@keyframes guideSpin { to { transform: rotate(360deg); } }
.guide-photo {
  width: 80%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold);
  animation: guideGlow 5.5s var(--ease) infinite;
}
@keyframes guideGlow {
  0%,100% { box-shadow: 0 0 60px -12px rgba(230,195,100,0.38); }
  50%     { box-shadow: 0 0 82px -6px rgba(230,195,100,0.6); }
}
.guide-photo image-slot { width: 100%; height: 100%; }
.guide-badge {
  position: absolute; background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px; display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--white); backdrop-filter: blur(6px);
}
.guide-badge svg { width: 16px; height: 16px; color: var(--gold); }
.guide-badge.top { top: 8%; right: 0; }
.guide-badge.bottom { bottom: 6%; left: 0; }
.guide-info .eyebrow { margin-bottom: 16px; }
.guide-info h2 { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 6px; }
.guide-role { font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 34px; }
.guide-quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; line-height: 1.5;
  color: var(--white); padding-left: 26px; border-left: 2px solid var(--gold-soft); margin-bottom: 36px;
}
.guide-tags { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.guide-tag {
  display: flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text); font-size: 0.92rem; font-weight: 600;
}
.guide-tag svg { width: 17px; height: 17px; color: var(--gold); }

/* ============================================================
   AREAS (Every Area of Life)
   ============================================================ */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 2; }
.area-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 34px 22px; text-align: center;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.area-card:hover { transform: translateY(-6px); border-color: rgba(230,195,100,0.3); background: var(--panel-2); }
.area-card .icon-circle { margin: 0 auto 20px; width: 56px; height: 56px; }
.area-card .icon-circle svg { width: 24px; height: 24px; }
.area-card span { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--text); }

.need-box {
  margin-top: 50px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; padding: 42px 48px; display: flex; gap: 32px; align-items: flex-start;
  position: relative; z-index: 2;
}
.need-box .icon-circle { margin: 0; flex-shrink: 0; }
.need-box h3 { font-size: 1.5rem; margin-bottom: 22px; }
.need-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 50px; list-style: none; }
.need-list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 1.02rem; }
.need-list li svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; justify-content: center; position: relative; z-index: 2; }
.price-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 40px 34px; flex: 1 1 300px; max-width: calc((100% - 52px) / 3);
  transition: transform .4s var(--ease), border-color .4s;
}
.price-card.compact { align-self: stretch; }
.price-card:hover { transform: translateY(-6px); border-color: rgba(230,195,100,0.3); }
.price-card.featured { background: linear-gradient(165deg, #341650, #29103f); border-color: rgba(230,195,100,0.28); }
.price-card .p-icon { color: var(--gold); margin-bottom: 24px; }
.price-card .p-icon svg { width: 30px; height: 30px; }
.price-card h3 { font-size: 1.75rem; margin-bottom: 8px; }
.price-card .p-sub { font-style: italic; color: var(--text-soft); font-size: 0.95rem; margin-bottom: 28px; }
.price-block-label {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
  margin: 26px 0 16px; display: flex; align-items: center; gap: 9px;
}
.price-block-label svg { width: 15px; height: 15px; }
.price-block-label:first-of-type { margin-top: 0; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: none; }
.price-row .pr-name { color: var(--text); }
.price-row .pr-name small { display: block; color: var(--text-dim); font-size: 0.78rem; margin-top: 2px; }
.price-row .pr-name svg { width: 18px; height: 18px; color: var(--gold-deep); vertical-align: middle; margin-right: 8px; }
.price-row .pr-amt { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 1.18rem; white-space: nowrap; }
.price-inset {
  margin-top: 26px; background: rgba(0,0,0,0.18); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 22px 24px;
}
.price-inset .price-block-label { margin-top: 0; color: var(--gold); }
.price-inset .price-row { padding: 10px 0; }
.price-inset .pr-amt { font-size: 1.05rem; }
.price-note { text-align: right; color: var(--text-dim); font-style: italic; font-size: 0.85rem; margin-top: 18px; }
.price-req {
  display: flex; align-items: flex-start; gap: 9px; margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line-soft); color: var(--text-soft); font-size: 0.85rem; line-height: 1.45;
}
.price-req svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.pricing-foot { text-align: center; margin-top: 56px; position: relative; z-index: 2; }
.pricing-foot p { color: var(--text-soft); font-style: italic; max-width: 620px; margin: 0 auto 34px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 2; }
.t-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 18px; padding: 38px 34px;
  transition: transform .4s var(--ease), border-color .4s;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(230,195,100,0.3); }
.t-stars { color: var(--gold); letter-spacing: 4px; font-size: 1.1rem; margin-bottom: 22px; }
.t-quote-mark { font-family: 'Playfair Display', serif; color: rgba(230,195,100,0.3); font-size: 2.6rem; line-height: 0.5; margin-bottom: 6px; display: block; }
.t-text { font-family: 'Playfair Display', serif; font-style: italic; color: var(--text); font-size: 1.08rem; line-height: 1.6; margin-bottom: 30px; }
.t-foot { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; border-top: 1px solid var(--line-soft); padding-top: 22px; }
.t-name { color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
.t-loc { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.t-loc svg { width: 14px; height: 14px; flex-shrink: 0; }
.t-tags { display: flex; flex-wrap: wrap; gap: 6px; width: 100%; }
.t-tag { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }

/* --- Reviews Carousel --- */
.reviews-carousel {
  position: relative; z-index: 2;
  margin-bottom: 56px;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reviews-track .t-card {
  flex: 0 0 calc(33.333% - 18px);
  margin: 0 13px;
  box-sizing: border-box;
}
.reviews-nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 36px;
}
.reviews-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s, border-color .3s, transform .3s;
}
.reviews-arrow:hover { border-color: var(--gold); background: rgba(230,195,100,0.08); transform: scale(1.08); }
.reviews-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }
.reviews-arrow svg { width: 20px; height: 20px; }
.reviews-dots { display: flex; gap: 10px; }
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  transition: background .3s, transform .3s;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.25); }
.reviews-dot:hover { background: var(--gold-soft); }

@media (max-width: 1080px) {
  .reviews-track .t-card { flex: 0 0 calc(50% - 16px); margin: 0 8px; }
}
@media (max-width: 600px) {
  .reviews-track .t-card { flex: 0 0 calc(100% - 16px); margin: 0 8px; }
}

/* --- Review Form --- */
.review-form-wrap {
  max-width: 740px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.review-form-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(230,195,100,0.08), transparent 60%);
  pointer-events: none;
}
.review-form-header {
  display: flex; align-items: center; gap: 18px; margin-bottom: 34px;
}
.review-form-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-gold); color: #2c1404;
  box-shadow: 0 8px 26px -8px rgba(230,195,100,0.5);
}
.review-form-icon svg { width: 24px; height: 24px; }
.review-form-header h3 {
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.5rem; font-weight: 700; margin-bottom: 2px;
}
.review-form-header p { color: var(--text-soft); font-size: 0.92rem; }

.review-form { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.form-group .req { color: #e06060; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  color: var(--white); font-family: 'Mulish', sans-serif; font-size: 0.98rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,195,100,0.15);
}
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a895bd' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--panel); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---- Multi-select (Consultation Service) ---- */
.multiselect { position: relative; }
.ms-control {
  width: 100%; min-height: 52px; padding: 8px 44px 8px 10px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; cursor: pointer;
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.ms-control:hover { border-color: var(--gold-soft); }
.ms-control:focus,
.multiselect.open .ms-control {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,195,100,0.15);
}
.multiselect.invalid .ms-control {
  border-color: #e06060; box-shadow: 0 0 0 3px rgba(224,96,96,0.15);
}
.ms-tags { display: flex; flex-wrap: wrap; gap: 7px; flex: 1; min-width: 0; }
.ms-placeholder { color: var(--text-dim); font-size: 0.98rem; padding: 6px 8px; }
.ms-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(230,195,100,0.12); border: 1px solid var(--gold-soft);
  color: var(--gold-bright); border-radius: 999px; padding: 5px 6px 5px 13px;
  font-size: 0.82rem; font-weight: 600; line-height: 1.2; max-width: 100%;
  animation: msChipIn .18s var(--ease);
}
.ms-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ms-chip-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(230,195,100,0.18); color: var(--gold-bright);
  font-size: 0.95rem; line-height: 1; padding: 0; flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.ms-chip-x:hover { background: #e06060; color: #fff; transform: rotate(90deg); }
.ms-chip-x:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
@keyframes msChipIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.ms-arrow {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--text-soft); pointer-events: none;
  transition: transform .3s var(--ease), color .3s;
}
.multiselect.open .ms-arrow { transform: translateY(-50%) rotate(180deg); color: var(--gold); }
.ms-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 30;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 6px; margin: 0; list-style: none;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45); max-height: 260px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.multiselect.open .ms-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.ms-option {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px;
  border-radius: 9px; cursor: pointer; color: var(--white); font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.ms-option:hover,
.ms-option.active { background: rgba(230,195,100,0.10); }
.ms-check {
  width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid var(--line);
  flex-shrink: 0; position: relative; transition: background .2s, border-color .2s;
}
.ms-option[aria-selected="true"] { color: var(--gold-bright); }
.ms-option[aria-selected="true"] .ms-check { background: var(--gold); border-color: var(--gold); }
.ms-option[aria-selected="true"] .ms-check::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid #2a1640; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Star rating */
.star-rating { display: flex; gap: 6px; }
.star-rating .star {
  font-size: 1.7rem; color: var(--line); cursor: pointer;
  transition: color .2s, transform .2s;
}
.star-rating .star:hover,
.star-rating .star.active { color: var(--gold); transform: scale(1.15); }
.star-rating .star.hover-fill { color: var(--gold-soft); }

.review-submit-btn { width: 100%; margin-top: 8px; }

/* Success message */
.review-success {
  display: none; text-align: center; padding: 40px 20px;
}
.review-success svg { width: 56px; height: 56px; color: var(--gold); margin-bottom: 16px; }
.review-success p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }

/* No reviews message */
.no-reviews-msg { position: relative; z-index: 2; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background: var(--grad-gold); color: #3a1d05; padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
.stat-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.stat-icon svg { width: 30px; height: 30px; color: #5a3410; }
.stat-num { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: #3a1d05; }
.stat-label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b4112; margin-top: 10px; }

/* ============================================================
   JOURNAL
   ============================================================ */
.journal-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; position: relative; z-index: 2; }
.journal-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.journal-head .eyebrow { margin-bottom: 14px; }
.view-all { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; }
.view-all svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.view-all:hover svg { transform: translateX(6px); }
.j-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s; display: flex; flex-direction: column;
}
.j-card:hover { transform: translateY(-8px); border-color: rgba(230,195,100,0.3); }
.j-thumb {
  height: 170px; background: linear-gradient(160deg, #311548, #271038);
  display: flex; align-items: center; justify-content: center; color: rgba(230,195,100,0.4);
  border-bottom: 1px solid var(--line-soft);
}
.j-thumb svg { width: 42px; height: 42px; }
.j-body { padding: 30px 30px 28px; display: flex; flex-direction: column; flex: 1; }
.j-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.j-cat { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
.j-read { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 0.76rem; }
.j-read svg { width: 14px; height: 14px; }
.j-card h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 14px; color: var(--gold); }
.j-card p { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 26px; }
.j-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-soft); padding-top: 20px; }
.j-date { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.j-more { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; }
.j-more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.j-card:hover .j-more svg { transform: translateX(5px); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center; padding: 150px 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(58,24,82,0.6), transparent 70%);
}
.final-mark {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 40px;
  background: rgba(230,195,100,0.07); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.final-mark svg { width: 32px; height: 32px; }
.final h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 26px; }
.final h2 em { font-style: italic; font-weight: 600; display: block; }
.final p { color: var(--text-soft); font-size: 1.2rem; max-width: 560px; margin: 0 auto 44px; }
.final-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.final-note { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 90px 0 0; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 70px; }
.footer .logo { display: inline-block; margin-bottom: 18px; }
.foot-tag { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 22px; }
.footer p.desc { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 28px; max-width: 340px; }
.foot-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.foot-meta div { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 0.94rem; }
.foot-meta svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.foot-social { display: flex; gap: 14px; }
.foot-social a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(230,195,100,0.06);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); transition: all .3s var(--ease);
}
.foot-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.foot-social svg { width: 18px; height: 18px; }
.footer h4 { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-links a { color: var(--text-soft); font-size: 0.96rem; transition: color .25s; }
.foot-links a:hover { color: var(--gold); }
.news p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 22px; }
.news-input { position: relative; margin-bottom: 14px; }
.news-input svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-dim); }
.news-input input {
  width: 100%; background: rgba(0,0,0,0.22); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 16px 15px 46px; color: var(--white); font-family: inherit; font-size: 0.95rem;
}
.news-input input::placeholder { color: var(--text-dim); }
.news-input input:focus { outline: none; border-color: var(--gold-soft); }
.news .btn { width: 100%; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; }
.news-cta { margin-top: 28px; }
.news-cta small { color: var(--text-dim); font-size: 0.84rem; display: block; margin-bottom: 10px; }
.news-cta a { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.news-cta a svg { width: 16px; height: 16px; }
.foot-mantra { text-align: center; padding: 30px 0; border-top: 1px solid var(--line); font-family: 'Playfair Display', serif; color: var(--gold-deep); font-size: 0.95rem; letter-spacing: 0.04em; opacity: 0.7; }
.foot-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.foot-bar, .foot-bar a { color: var(--text-dim); font-size: 0.86rem; }
.foot-bar-links { display: flex; gap: 30px; }
.foot-bar-links a:hover { color: var(--gold); }
.foot-made { display: flex; align-items: center; gap: 7px; }
.foot-made svg { width: 15px; height: 15px; color: var(--gold-deep); }

/* ============================================================
   WORDS OF THE WISE (quotes)
   ============================================================ */
.quotes { background: var(--bg-2); border-block: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
.quote-item {
  text-align: center; padding: 16px 18px; position: relative;
}
.quote-item:not(:last-child)::after {
  content: ''; position: absolute; right: -15px; top: 16%; bottom: 16%; width: 1px;
  background: var(--line);
}
.quote-mark-lg { font-family: 'Playfair Display', serif; color: rgba(230,195,100,0.35); font-size: 3rem; line-height: 0.4; display: block; margin-bottom: 18px; }
.quote-text {
  font-family: 'Playfair Display', serif; font-style: italic; color: var(--white);
  font-size: 1.22rem; line-height: 1.55; margin-bottom: 20px;
}
.quote-author { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ============================================================
   SMEET CREDENTIALS
   ============================================================ */
.guide-lineage {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(230,195,100,0.28);
  background: rgba(230,195,100,0.05); color: var(--gold); font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.06em;
}
.guide-lineage svg { width: 16px; height: 16px; }
.guide-creds { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; margin-bottom: 36px; }
.guide-creds li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 0.97rem; line-height: 1.45; }
.guide-creds li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* Areas note */
.areas-note {
  margin-top: 32px; text-align: center; position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
}
.areas-note span {
  display: inline-flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 0.95rem;
}
.areas-note svg { width: 18px; height: 18px; color: var(--gold); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .mantra-ring::before, .mantra-ring::after, .mantra-orbit, .guide-orbit::before, .guide-spin, .guide-photo, .scroll-cue svg { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Laptop / large tablet ---- */
@media (max-width: 1080px) {
  :root { --maxw: 920px; }
  .section { padding: 110px 0; }
  .grid-4, .areas { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .t-grid, .grid-3 { grid-template-columns: 1fr; }
  .service-card, .price-card { max-width: calc((100% - 26px) / 2); }
  .service-grid, .price-grid { max-width: 720px; margin: 0 auto; }
  .steps::before { display: none; }
  .guide { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .guide-info .guide-tags { justify-content: center; }
  .guide-quote { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 50px; }
}

/* ---- Tablet ---- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); color: var(--gold); }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(29,4,50,0.97); backdrop-filter: blur(14px); padding: 16px 22px 24px; border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 12px 0; font-size: 1.05rem; }
  .nav .btn { padding: 11px 22px; font-size: 0.9rem; }
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  :root { --maxw: 100%; }
  .section { padding: 76px 0; }
  .wrap { padding: 0 20px; }
  .section-head { margin-bottom: 48px; }
  .section-head p { font-size: 1rem; }
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.26em; }

  .grid-4, .areas, .steps, .need-list, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .review-form-wrap { padding: 30px 22px; }
  .quote-grid, .guide-creds { grid-template-columns: 1fr; gap: 30px; }
  .quote-item:not(:last-child)::after { display: none; }
  .quote-item:not(:last-child) { border-bottom: 1px solid var(--line); padding-bottom: 30px; }
  .service-card, .price-card { max-width: 100%; flex-basis: 100%; }
  .service-grid, .price-grid { max-width: 440px; }
  .stats-grid { gap: 40px; }
  .stats { padding: 56px 0; }

  /* Hero */
  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero-mantra-dev { font-size: 1.3rem; }
  .hero-mantra-rom { font-size: 0.72rem; letter-spacing: 0.24em; margin-bottom: 36px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); margin-bottom: 28px; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 38px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-cta .btn, .final-cta .btn { width: 100%; }
  .scroll-cue { margin-top: 56px; }
  .btn { padding: 16px 30px; font-size: 0.98rem; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-track span { font-size: 1.1rem; padding: 0 18px; }

  /* Mantra */
  .pavamana { padding: 90px 0; }
  .mantra-ring { padding: 40px 10px; }
  .mantra-dev { font-size: clamp(1.1rem, 5.5vw, 1.5rem); line-height: 2; }
  .mantra-rom { font-size: 1rem; }

  /* Cards */
  .benefit-card, .service-card, .price-card { padding: 30px 26px; }
  .service-card h3 { font-size: 1.6rem; }
  .need-box { flex-direction: column; gap: 20px; padding: 30px 26px; }
  .need-list { gap: 14px; }
  .area-card { padding: 28px 18px; }

  /* Guide */
  .guide { gap: 44px; }
  .guide-orbit { width: 290px; }
  .guide-quote { font-size: 1.3rem; }
  .guide-info h2 { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .guide-tags { gap: 10px; }
  .guide-tag { font-size: 0.85rem; padding: 10px 16px; }
  .guide-info .btn { width: 100%; }

  /* Pricing */
  .price-grid { max-width: 100%; }
  .pricing-foot { margin-top: 44px; }
  .pricing-foot .btn { width: 100%; }
  .price-note { text-align: left; }

  /* Journal */
  .journal-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 40px; }
  .j-card h3 { font-size: 1.3rem; }

  /* Final */
  .final { padding: 90px 0; }
  .final h2 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .final p { font-size: 1.08rem; }

  /* Footer */
  .footer { padding: 64px 0 0; }
  .footer-grid { gap: 44px; padding-bottom: 50px; }
  .foot-mantra { font-size: 0.78rem; line-height: 1.8; }
  .foot-bar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .foot-bar-links { gap: 22px; flex-wrap: wrap; }
}

/* ---- Small phone ---- */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 2.2rem; }
  .guide-orbit { width: 240px; }
  .service-card h3, .price-card h3 { font-size: 1.45rem; }
}
