/* ══════════════════════════════════════════════
   Ceylon Breathe Ayurveda — style.css
   ══════════════════════════════════════════════ */

:root {
  --pink:       #e8356b;
  --violet:     #7b3ab5;
  --indigo:     #4a3591;
  --teal-lt:    #5dcfce;
  --grad-main:  linear-gradient(135deg, #e8356b 0%, #9b35a0 45%, #4a3591 100%);
  --grad-dark:  linear-gradient(160deg, #1a0a2e 0%, #2d1050 40%, #0e1a3a 100%);
  --cream:      #fdf8fc;
  --ink:        #1a1020;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 28px;
  background: rgba(8, 3, 20, 0.5);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 200;
  transition: transform 0.4s ease;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;

  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.logo-text-block { display: flex; flex-direction: column; line-height: 1.25; }
.logo-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .12em;
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub { font-size: 9px; font-weight: 400; letter-spacing: .14em; color: rgba(255,255,255,.5); }

/* Nav links */
.nav-links { display: flex; gap: 0; }
.nav-links a {
  font-size: 10.5px; font-weight: 600; letter-spacing: .07em;
  padding: 7px 10px; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn-book {
  font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .09em;
  padding: 9px 18px; border-radius: 6px;
  background: var(--grad-main); color: #fff; border: none; cursor: pointer;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(200,48,110,.4);
  transition: opacity .2s, transform .2s;
}
.btn-book:hover { opacity: .88; transform: translateY(-1px); }
.btn-book:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Mobile nav toggle (hamburger) — hidden on desktop, shown <=768px below */
.nav-toggle {
  display: none;
  width: 40px; height: 40px; flex-shrink: 0;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; position: relative; z-index: 260;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; border-radius: 4px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop shown behind the slide-in mobile menu.
   NOTE: .nav has its own stacking context (position:fixed + z-index:200),
   so this must stay below 200 or it will render on top of the header
   and the slide-in menu, blocking taps on the menu links. */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(8,3,20,.55);
  opacity: 0; transition: opacity .3s ease;
}
.nav-overlay.show { display: block; opacity: 1; }


/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 640px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.16); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,3,20,.88) 0%,
    rgba(8,3,20,.6)  45%,
    rgba(8,3,20,.15) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 80px 0 60px 6%;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero h1        { animation: heroRise .9s ease both; }
.hero-sub       { animation: heroRise .9s ease .15s both; }
.hero-divider   { animation: heroRise .9s ease .3s both; }
.hero-desc      { animation: heroRise .9s ease .45s both; }
.hero-btns      { animation: heroRise .9s ease .6s both; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 500; line-height: 1.1; color: #fff;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--pink); }

.hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.85);
  line-height: 1.6; margin-bottom: 18px;
}
.hero-divider {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.3); font-size: 14px; margin-bottom: 18px;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 0 0 60px; height: 1px; background: rgba(255,255,255,.25);
}
.hero-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6);
  line-height: 1.85; margin-bottom: 32px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; }

.btn-primary {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 14px 26px; border-radius: 6px;
  background: var(--grad-main); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,48,110,.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,48,110,.6); }

.btn-primary-outline {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 13px 22px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-primary-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }


/* ════════════════════════════════════════════════
   FEATURES STRIP
   ════════════════════════════════════════════════ */
.features-strip {
  background: linear-gradient(90deg, #4a3591 0%, #7b3ab5 50%, #c0306e 100%);
  display: flex; justify-content: stretch;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px; flex: 1; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.15); color: #fff;
  min-width: 0;
}
.feature-item:last-child { border-right: none; }
.feat-icon { font-size: 22px; flex-shrink: 0; }
.feat-label { font-size: 12px; font-weight: 500; letter-spacing: .03em; line-height: 1.4; }


/* ════════════════════════════════════════════════
   SECTION COMMON
   ════════════════════════════════════════════════ */
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 500; line-height: 1.2;
  color: var(--indigo); margin-bottom: 16px;
}
.title-pink { color: var(--pink); }
.section-body { font-size: 14px; font-weight: 300; line-height: 1.9; color: #4a4055; }


/* ════════════════════════════════════════════════
   WELCOME
   ════════════════════════════════════════════════ */
.welcome { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }

.welcome-text {
  padding: 80px 7%;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff;
  /* subtle pink lotus watermark */
  position: relative;
}
.welcome-text::before {
  content: '';
  position: absolute; bottom: 30px; left: 6%;
  width: 120px; height: 120px; opacity: .04; pointer-events: none;
  background-color: var(--violet);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
}

.welcome-quote {
  font-family: var(--font-display); font-size: 16px; font-style: italic;
  color: var(--violet); border-left: 3px solid var(--pink); padding-left: 16px;
  margin: 16px 0; line-height: 1.65;
}

.welcome-image { overflow: hidden; min-height: 460px; }
.welcome-image img { width: 100%; height: 100%; object-fit: cover; }


/* ════════════════════════════════════════════════
   PHILOSOPHY BANNER — 3 image columns
   ════════════════════════════════════════════════ */
.phil-banner {
  display: flex; align-items: flex-end; gap: 22px;
  padding: 70px 6% 90px; background: var(--cream);
  counter-reset: philnum;
}

.phil-card {
  position: relative; flex: 1; min-height: 440px;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 22px 50px rgba(30,10,60,.16);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
  counter-increment: philnum;
}
.phil-card:hover { transform: translateY(-10px); box-shadow: 0 30px 64px rgba(30,10,60,.24); }
.phil-card-mid { min-height: 500px; }

/* number badge */
.phil-card::before {
  content: counter(philnum, decimal-leading-zero);
  position: absolute; top: 22px; right: 24px; z-index: 6;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: .18em; color: rgba(255,255,255,.6);
}

.phil-col {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.phil-card:hover .phil-col { transform: scale(1.08); }

.phil-col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,10,70,.93) 0%, rgba(20,5,50,.65) 50%, rgba(10,2,30,.35) 100%);
}
.phil-col-content {
  position: relative; z-index: 2;
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 6px;
}
.phil-icon {
  width: 48px; height: 48px; font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  margin-bottom: 14px;
}
.phil-label {
  display: inline-block; align-self: flex-start;
  font-size: 9.5px; font-weight: 700; letter-spacing: .22em;
  color: #fff; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(232,53,107,.55), rgba(155,53,160,.55));
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 6px;
}
.phil-col-content h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  color: #fff; line-height: 1.25; margin-top: 4px;
}
.phil-col-content p {
  font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.8); line-height: 1.75;
  margin-top: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s ease .05s, transform .45s ease .05s;
}
.phil-card.visible .phil-col-content p { opacity: 1; transform: none; }
.phil-card:not(.reveal) .phil-col-content p { opacity: 1; transform: none; }


/* ════════════════════════════════════════════════
   WHY CHOOSE — light bg with bordered grid
   ════════════════════════════════════════════════ */
.why-section {
  padding: 72px 6%;
  background: #f5f0fb;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(249,245,240,.90), rgba(249,245,240,.90)),
    url('../assets/images/bg_image_index.png') no-repeat center center / cover;
  z-index: 0;
}
.why-header, .why-feature-banner, .why-grid { position: relative; z-index: 1; }

.why-header {
  text-align: center; margin-bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.why-divider-line {
  display: flex; align-items: center; gap: 12px;
  color: var(--pink); font-size: 15px; width: 100%; justify-content: center;
}
.why-divider-line::before, .why-divider-line::after {
  content: ''; flex: 0 0 80px; height: 1px; background: rgba(200,48,110,.3);
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px); font-weight: 500;
  letter-spacing: .05em; color: var(--indigo);
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1100px; margin: 0 auto;
  counter-reset: whynum;
}
.why-card {
  position: relative;
  padding: 34px 28px 30px; text-align: left; background: #fff;
  border: 1px solid rgba(123,58,181,.1);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(74,53,145,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  counter-increment: whynum;
}
.why-card::after {
  content: counter(whynum, decimal-leading-zero);
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; color: rgba(123,58,181,.22);
}
.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(123,58,181,.18);
  border-color: rgba(123,58,181,.22);
}

.why-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px; color: #fff;
  border-radius: 15px;
  background: var(--grad-main);
  box-shadow: 0 10px 22px rgba(155,53,160,.32);
}
.why-card h4 {
  font-family: var(--font-display); font-size: 16.5px; font-weight: 600;
  color: var(--indigo); margin-bottom: 9px; line-height: 1.3; padding-right: 20px;
}
.why-card p { font-size: 12.5px; color: #6a5f75; font-weight: 300; line-height: 1.75; }

/* Feature banner — "Authentic Sri Lankan Ayurveda", now its own intro strip */
.why-feature-banner {
  max-width: 900px; margin: 0 auto 54px;
  background: var(--grad-dark); border-radius: 24px;
  padding: 34px 40px;
  display: flex; align-items: center; gap: 26px;
  box-shadow: 0 20px 50px rgba(20,10,50,.25);
}
.why-feature-banner .why-icon {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: none; flex-shrink: 0;
}
.why-feature-banner h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.why-feature-banner p { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.72); margin: 0; }

/* Spoke lines — only drawn in the large-desktop radial wheel */
.wheel-spoke { display: none; }

/* ════════════════════════════════════════════════
   THE WHEEL, DEFAULT STATE — a vertical spine
   (works from phone up through tablet). The 8
   reasons alternate off a central line, with the
   lotus as its source at the top.
   ════════════════════════════════════════════════ */
.lotus-wheel.why-grid {
  display: block; position: relative;
  max-width: 640px; margin: 0 auto; padding-top: 4px;
}
.lotus-wheel::before {
  content: '';
  position: absolute; top: 96px; bottom: 8px; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(155,53,160,0), rgba(155,53,160,.32) 10%, rgba(155,53,160,.32) 90%, rgba(155,53,160,0));
  z-index: 0;
}
.wheel-center {
  position: relative; z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 44px;
  box-shadow: 0 14px 30px rgba(155,53,160,.35);
}
.wheel-center::before {
  content: '';
  position: absolute; inset: -26px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,53,107,.22) 0%, rgba(155,53,160,.1) 45%, rgba(155,53,160,0) 72%);
  z-index: -1; animation: hubGlow 5s ease-in-out infinite;
}
.wheel-center::after {
  content: '';
  position: absolute; inset: -13px; border-radius: 50%;
  border: 1px dashed rgba(155,53,160,.4);
  z-index: -1; animation: hubSpin 40s linear infinite;
}
@keyframes hubGlow {
  0%, 100% { transform: scale(1);   opacity: .75; }
  50%      { transform: scale(1.1); opacity: 1; }
}
@keyframes hubSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lotus-wheel .why-card {
  position: relative; z-index: 1;
  width: calc(50% - 28px); margin-bottom: 30px;
}
.lotus-wheel .why-card::before {
  content: ''; position: absolute; top: 28px; width: 28px; height: 2px;
  background: rgba(155,53,160,.35);
}
.lotus-wheel .why-card.spine-left  { margin-left: 0; margin-right: auto; }
.lotus-wheel .why-card.spine-left::before  { right: -28px; }
.lotus-wheel .why-card.spine-right { margin-left: auto; margin-right: 0; }
.lotus-wheel .why-card.spine-right::before { left: -28px; }

@media (max-width: 600px) {
  .lotus-wheel::before { left: 22px; }
  .wheel-center { margin-left: 22px; margin-right: auto; }
  .lotus-wheel .why-card,
  .lotus-wheel .why-card.spine-left,
  .lotus-wheel .why-card.spine-right {
    width: calc(100% - 56px); margin-left: 56px; margin-right: 0;
  }
  .lotus-wheel .why-card.spine-left::before,
  .lotus-wheel .why-card.spine-right::before { left: -28px; right: auto; }
}

/* ════════════════════════════════════════════════
   LOTUS WHEEL — the spine blooms into a full radial
   mandala on generous screens only. Everything above
   still applies below 1300px, untouched.
   ════════════════════════════════════════════════ */
@media (min-width: 1300px) {
  .lotus-wheel.why-grid {
    width: 900px; height: 900px; max-width: none; margin: 10px auto 0; padding-top: 0;
  }
  .lotus-wheel::before { display: none; }
  .lotus-wheel .wheel-spoke {
    display: block; position: absolute; top: 50%; left: 50%;
    width: 320px; height: 1px;
    background: linear-gradient(to right, rgba(155,53,160,.4), rgba(155,53,160,0) 88%);
    transform-origin: 0 50%; transform: rotate(var(--angle));
    z-index: 1;
  }
  .wheel-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 150px; height: 150px; font-size: 40px; margin: 0; z-index: 3;
  }
  .lotus-wheel .why-card,
  .lotus-wheel .why-card.reveal,
  .lotus-wheel .why-card.reveal.visible {
    position: absolute; top: 50%; left: 50%; width: 190px; z-index: 2;
    margin: 0;
    transform: rotate(var(--angle)) translate(320px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
  }
  .lotus-wheel .why-card::before { display: none; }
  .lotus-wheel .why-card:hover,
  .lotus-wheel .why-card.reveal:hover,
  .lotus-wheel .why-card.reveal.visible:hover {
    transform: rotate(var(--angle)) translate(320px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%) scale(1.07);
    box-shadow: 0 22px 44px rgba(123,58,181,.24);
    z-index: 4;
  }
  .lotus-wheel .why-card::after { top: 16px; right: 16px; }
  .lotus-wheel .why-card h4 { font-size: 14px; padding-right: 12px; }
  .lotus-wheel .why-card p { font-size: 11.5px; }
}


/* ════════════════════════════════════════════════
   CONTACT SECTION — 3 columns
   ════════════════════════════════════════════════ */
.contact-section {
  display: grid; grid-template-columns: 1.15fr 0.6fr 0.85fr;
  min-height: 440px;
}

/* Left: image + content */
.contact-left { position: relative; overflow: hidden; }
.contact-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.contact-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,8,70,.9) 0%, rgba(15,4,50,.75) 100%);
}
.contact-left-content {
  position: relative; z-index: 2;
  padding: 52px 40px;
  height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.contact-left-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px); font-weight: 500;
  color: #fff; line-height: 1.25;
}
.contact-left-content p {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.75;
}

/* Middle: contact info */
.contact-middle {
  background: linear-gradient(160deg, #1e0848 0%, #0f0432 100%);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: 48px 28px;
  border-left: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
}
.contact-detail-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.8); font-weight: 300; line-height: 1.55;
}
.contact-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
a.contact-detail-row { text-decoration: none; transition: color .2s ease; }
a.contact-detail-row:hover { color: #25D366; }
a.contact-detail-row:hover .contact-icon { color: #25D366; }

/* Right: form */
.contact-right {
  background: linear-gradient(160deg, #1a0640 0%, #0e0330 100%);
  padding: 48px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right .form-group { margin-bottom: 12px; }
.contact-right .form-group input,
.contact-right .form-group textarea {
  font-family: var(--font-body); font-size: 13px; font-weight: 300;
  width: 100%; padding: 11px 14px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06); color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.contact-right .form-group input::placeholder,
.contact-right .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-right .form-group input:focus,
.contact-right .form-group textarea:focus {
  border-color: var(--pink); background: rgba(255,255,255,.1);
}
.contact-right .form-group textarea { resize: vertical; min-height: 88px; }

.form-submit {
  width: 100%; padding: 13px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: #fff; background: var(--grad-main);
  border: none; border-radius: 6px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(200,48,110,.4);
  transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(200,48,110,.55); }


/* ════════════════════════════════════════════════
   QUOTE BANNER
   ════════════════════════════════════════════════ */
.quote-banner {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1050 50%, #0e1840 100%);
  padding: 56px 8%;
  display: flex; align-items: center; justify-content: center; gap: 22px;
  text-align: center;
}
.quote-lotus { font-size: 26px; opacity: .55; display: inline-flex; animation: lotusBreathe 5s ease-in-out infinite; }
@keyframes lotusBreathe {
  0%, 100% { transform: scale(1);    opacity: .5; }
  50%      { transform: scale(1.15); opacity: .85; }
}
.quote-banner blockquote {
  font-family: var(--font-display); font-size: clamp(15px, 1.8vw, 22px);
  font-style: italic; color: rgba(255,255,255,.88); line-height: 1.65;
  max-width: 680px;
}


/* ════════════════════════════════════════════════
   FOOTER — minimal luxury
   ════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: linear-gradient(175deg, #150c22 0%, #0e0818 55%, #0a0613 100%);
  color: rgba(255,255,255,.82);
  padding: 0 8% 0;
  margin-top: 1px;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
}
.sf-inner { max-width: 1360px; margin: 0 auto; position: relative; }

/* Crest — a quiet seal straddling the top hairline */
.sf-crest { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.sf-crest-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(160deg, #241234 0%, #170a26 100%);
  border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.sf-crest-icon svg { width: 20px; height: 20px; color: var(--pink); opacity: .9; }

.sf-grid {
  display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.2fr;
  gap: 56px;
  padding: 92px 0 64px;
}

/* Brand column */
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.sf-tagline {
  font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 500;
  color: rgba(255,255,255,.62); margin-bottom: 14px; letter-spacing: .01em;
}
.sf-desc { font-size: 12.5px; opacity: .4; font-weight: 300; line-height: 1.85; max-width: 300px; margin-bottom: 26px; }

.sf-contact-list { display: flex; flex-direction: column; gap: 13px; }
.sf-contact-row {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.sf-contact-row svg { flex-shrink: 0; margin-top: 1px; width: 15px; height: 15px; opacity: .55; }
a.sf-contact-row:hover { color: var(--pink); }
a.sf-contact-row:hover svg { opacity: .9; }

/* Nav columns */
.sf-col h4 {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; color: rgba(255,255,255,.42); margin-bottom: 22px;
}
.sf-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.sf-col li a {
  font-family: var(--font-display); font-size: 15px; font-weight: 500; font-style: normal;
  color: rgba(255,255,255,.72); transition: color .2s, padding-left .2s; display: inline-block;
}
.sf-col li a:hover { color: var(--pink); padding-left: 3px; }

/* Connect column */
.sf-newsletter-desc { font-size: 12.5px; opacity: .45; font-weight: 300; line-height: 1.8; margin-bottom: 18px; max-width: 260px; }
.sf-newsletter-form {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 10px; margin-bottom: 28px;
  transition: border-color .25s;
}
.sf-newsletter-form:focus-within { border-color: var(--pink); }
.sf-newsletter-form input {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 12.5px;
  border: none; background: transparent; color: #fff; outline: none;
}
.sf-newsletter-form input::placeholder { color: rgba(255,255,255,.32); }
.sf-newsletter-form button {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s;
}
.sf-newsletter-form button svg { width: 13px; height: 13px; }
.sf-newsletter-form button:hover { border-color: var(--pink); background: rgba(232,53,107,.12); transform: translateX(2px); }

.sf-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.sf-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: border-color .25s, color .25s, transform .25s;
}
.sf-social-btn svg { width: 14px; height: 14px; }
.sf-social-btn:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* Bottom bar */
.sf-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0 30px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.sf-copy {
  font-size: 11px; font-weight: 300; letter-spacing: .03em; opacity: .38;
}
.sf-crafted {
  font-family: var(--font-display); font-style: italic; font-size: 12.5px;
  opacity: .35; letter-spacing: .01em;
}
.sf-madeby {
  font-size: 11px; font-weight: 300; letter-spacing: .02em; opacity: .38;
  order: 2;
}
.sf-madeby strong { font-weight: 600; opacity: .9; }
.sf-back-top {
  font-size: 10px; font-weight: 600; letter-spacing: .16em; color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: 9px;
  transition: color .2s;
}
.sf-bt-arrow {
  width: 25px; height: 25px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  transition: border-color .25s, transform .25s, color .25s;
}
.sf-back-top:hover { color: #fff; }
.sf-back-top:hover .sf-bt-arrow { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }


/* ════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .phil-banner { flex-direction: column; align-items: stretch; padding: 56px 6% 70px; }
  .phil-card, .phil-card-mid { min-height: 340px; width: 100%; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-middle { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .sf-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .sf-col-brand { grid-column: 1 / -1; }
  .sf-col-connect { grid-column: 1 / -1; }
  .sf-desc { max-width: 420px; }
  .why-card-feature { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .welcome { grid-template-columns: 1fr; }
  .welcome-image { min-height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px); height: 100vh; height: 100dvh;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    background: linear-gradient(160deg, #1e0848 0%, #0f0432 100%);
    padding: 96px 30px 40px; overflow-y: auto;
    box-shadow: -12px 0 40px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 240;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    width: 100%; padding: 15px 6px; font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .features-strip { flex-wrap: wrap; }
  .feature-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.12); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card-feature { grid-column: 1; }
  .quote-banner { flex-direction: column; gap: 12px; }
  .sf-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px; row-gap: 40px;
    padding: 64px 0 44px;
  }
  .sf-col-brand, .sf-col-connect { grid-column: 1 / -1; }
  .sf-desc { max-width: 100%; }
  .sf-bottom { flex-direction: column; align-items: flex-start; }
  .sf-crafted { order: 3; }
}
@media (max-width: 460px) {
  .sf-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .sf-col-brand, .sf-col-connect { grid-column: 1; }
}


/* ════════════════════════════════════════════════
   PHASE NAV — sticky journey tracker
   ════════════════════════════════════════════════ */
.phase-nav {
  position: sticky; top: 66px; z-index: 150;
  background: rgba(253,248,252,.97);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(123,58,181,.1);
  box-shadow: 0 4px 18px rgba(74,53,145,.08);
  transition: top .35s ease;
}
.phase-nav-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 6%; gap: 4px;
}
.phase-link {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 30px;
  transition: background .25s;
  flex: 1; justify-content: center;
}
.phase-link:hover { background: rgba(123,58,181,.06); }
.phase-num {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  background: rgba(123,58,181,.1); color: var(--violet);
  transition: background .25s, color .25s;
}
.phase-text {
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em; color: var(--indigo);
  line-height: 1.3; text-align: left; white-space: nowrap;
}
.phase-text small { display: block; font-size: 9.5px; font-weight: 400; opacity: .55; letter-spacing: .06em; }
.phase-link.active .phase-num { background: var(--grad-main); color: #fff; }
.phase-link.active .phase-text { color: var(--pink); }
.phase-line { width: 34px; height: 1px; background: rgba(123,58,181,.2); flex-shrink: 0; }
@media (max-width: 700px) {
  .phase-nav-inner { gap: 0; }
  .phase-text small { display: none; }
  .phase-line { width: 14px; }
  .phase-link { padding: 6px 6px; gap: 6px; }
}
@media (max-width: 520px) {
  .phase-text { display: none; }
}


/* ════════════════════════════════════════════════
   PAGE HERO (subpages, e.g. Treatments / Panchakarma)
   ════════════════════════════════════════════════ */
.page-hero {
  height: 56vh; min-height: 380px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 100px 0 40px 6%;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500; line-height: 1.12; color: #fff;
  margin-bottom: 14px;
}
.page-hero-content .section-tag { color: var(--pink); }
.page-hero-content .hero-desc { color: rgba(255,255,255,.7); max-width: 540px; }


/* Pradhana Karma — alternating showcase rows */
.pradhana-showcase {
  max-width: 1020px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 56px;
}
.pradhana-row {
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 48px; align-items: center;
}
.pradhana-row-rev { grid-template-columns: 1fr 0.85fr; }
.pradhana-row-rev .pradhana-img { order: 2; }
.pradhana-row-rev .pradhana-content { order: 1; }

.pradhana-img {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 5/4; box-shadow: 0 18px 40px rgba(74,53,145,.14);
}
.pradhana-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pradhana-row:hover .pradhana-img img { transform: scale(1.06); }

.pradhana-content { position: relative; padding: 8px 6px; }
.pradhana-num {
  font-family: var(--font-display); font-size: 46px; font-weight: 500;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; display: block; margin-bottom: 8px; opacity: .85;
}
.pradhana-content h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--indigo); margin-bottom: 12px;
}
.pradhana-content p { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #6a5f75; }

@media (max-width: 800px) {
  .pradhana-row, .pradhana-row-rev { grid-template-columns: 1fr; gap: 22px; }
  .pradhana-row-rev .pradhana-img, .pradhana-row-rev .pradhana-content { order: initial; }
}


/* Paschath Karma — grouped compact cards */
.paschath-group { max-width: 1180px; margin: 0 auto 56px; }
.paschath-group:last-child { margin-bottom: 0; }
.paschath-group-title {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  color: var(--indigo); margin-bottom: 24px;
}
.paschath-group-title::after {
  content: ''; flex: 1; height: 1px; background: rgba(123,58,181,.15);
}
.compact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.compact-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid rgba(123,58,181,.1); border-radius: 14px;
  padding: 10px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.compact-card:hover {
  transform: translateY(-3px); box-shadow: 0 10px 24px rgba(74,53,145,.1);
  border-color: rgba(123,58,181,.2);
}
.compact-img { width: 58px; height: 58px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #f3e9f7; }
.compact-img img { width: 100%; height: 100%; object-fit: cover; }
.compact-text h5 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--indigo); margin-bottom: 3px; }
.compact-text p { font-size: 11px; font-weight: 300; line-height: 1.5; color: #6a5f75; }

@media (max-width: 900px) {
  .compact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .compact-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════
   FLORAL ORBIT GALLERY — Recovery & Rejuvenation
   A blooming, slowly-spinning wheel of treatment
   images on generous screens; a smooth horizontal
   scroll gallery of the same round portraits on
   phones & tablets.
   ════════════════════════════════════════════════ */
.floral-orbit-wrap { display: flex; flex-direction: column; align-items: center; margin: 6px 0 54px; }
.floral-orbit-wrap:last-child { margin-bottom: 6px; }
.floral-orbit { position: relative; width: 100%; max-width: 560px; }

.orbit-swipe-hint {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 10.5px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: #9b8fae; margin-bottom: 10px;
}
.orbit-swipe-hint svg { width: 12px; height: 12px; }

.floral-orbit-center {
  position: relative; z-index: 3;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 3px;
  margin: 0 auto 6px;
  box-shadow: 0 14px 30px rgba(155,53,160,.35);
}
.orbit-center-icon { font-size: 21px; line-height: 1; }
.orbit-center-text { font-family: var(--font-display); font-size: 12px; font-weight: 600; line-height: 1.25; }
.floral-orbit-center::before {
  content: ''; position: absolute; inset: -22px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,53,107,.2) 0%, rgba(155,53,160,.08) 45%, rgba(155,53,160,0) 72%);
  z-index: -1; animation: hubGlow 5s ease-in-out infinite;
}
.floral-orbit-center::after {
  content: ''; position: absolute; inset: -11px; border-radius: 50%;
  border: 1px dashed rgba(155,53,160,.4);
  z-index: -1; animation: hubSpin 40s linear infinite;
}

/* Default (phone/tablet): horizontal scroll gallery of round portraits,
   with the short description shown plainly under each label. */
.floral-orbit-ring {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 20px 18px;
  scroll-snap-type: x mandatory; scroll-padding-inline: 20px; -webkit-overflow-scrolling: touch;
}
.orbit-petal { position: static; flex: 0 0 auto; scroll-snap-align: center; }
.orbit-petal-inner { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 112px; }
.orbit-img {
  width: 86px; height: 86px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 3px solid #fff; box-shadow: 0 10px 22px rgba(74,53,145,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.orbit-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orbit-label { font-size: 11.5px; font-weight: 600; color: var(--indigo); text-align: center; line-height: 1.3; }
.orbit-desc {
  font-size: 10.5px; font-weight: 300; color: #8a8094; text-align: center; line-height: 1.5;
}
.orbit-petal:hover .orbit-img { transform: scale(1.1); box-shadow: 0 14px 26px rgba(155,53,160,.3); }
.orbit-petal:hover .orbit-label { color: var(--pink); }

@media (max-width: 480px) {
  .floral-orbit-ring { gap: 12px; padding: 4px 16px 16px; }
  .orbit-petal-inner { width: 92px; gap: 6px; }
  .orbit-img { width: 72px; height: 72px; border-width: 2px; }
  .orbit-label { font-size: 11px; }
  .orbit-desc { font-size: 10px; }
}

/* Generous screens: the gallery blooms into a slow spinning wheel;
   descriptions tuck away into a tooltip that appears on hover. */
@media (min-width: 1100px) {
  .orbit-swipe-hint { display: none; }
  .floral-orbit-wrap { margin: 14px 0 64px; }
  .floral-orbit { width: 560px; height: 560px; max-width: none; }
  .floral-orbit-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0; }
  .floral-orbit-ring {
    display: block; position: absolute; inset: 0; overflow: visible; padding: 0;
    animation: orbitSpin 70s linear infinite;
  }
  .floral-orbit:hover .floral-orbit-ring,
  .floral-orbit:hover .orbit-petal-inner { animation-play-state: paused; }
  .orbit-petal {
    position: absolute; top: calc(50% + var(--dy)); left: calc(50% + var(--dx));
    transform: translate(-50%, -50%);
  }
  .orbit-petal-inner { position: relative; animation: counterSpin 70s linear infinite; }
  .orbit-img { width: 100px; height: 100px; }
  .orbit-petal:hover .orbit-img { transform: scale(1.15); box-shadow: 0 16px 30px rgba(155,53,160,.35); }
  .orbit-petal:hover { z-index: 5; }

  /* Description becomes a floating tooltip above the portrait */
  .orbit-desc {
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    width: 180px; background: #1a1020; color: rgba(255,255,255,.92);
    font-size: 11.5px; font-weight: 300; line-height: 1.6;
    padding: 12px 14px; border-radius: 10px;
    opacity: 0; pointer-events: none; z-index: 10;
    box-shadow: 0 14px 30px rgba(20,10,40,.28);
    transform: translate(-50%, 6px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .orbit-desc::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: #1a1020;
  }
  .orbit-petal:hover .orbit-desc { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes orbitSpin   { from { transform: rotate(0deg);    } to { transform: rotate(360deg);  } }
@keyframes counterSpin { from { transform: rotate(0deg);    } to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .floral-orbit-ring, .orbit-petal-inner, .floral-orbit-center::after { animation: none !important; }
  .nav-links, .nav-overlay, .nav-toggle span, .hero-img { transition: none !important; animation: none !important; }
}


/* ════════════════════════════════════════════════
   KARMA SECTIONS (Purwa / Pradhana / Paschath Karma)
   ════════════════════════════════════════════════ */
.karma-section {
  padding: 80px 6%;
  background: #fff;
}
.karma-section-alt {
  background: linear-gradient(180deg, #fdf6ff 0%, #fdf8fc 100%);
}

.karma-header {
  max-width: 720px; margin: 0 auto 48px; text-align: center;
}
.karma-header .why-divider-line { margin: 0 auto 14px; }
.karma-header .section-tag { margin-bottom: 8px; }
.karma-intro {
  font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #6a5f75;
  margin-top: 14px;
}

/* Treatment card grids */
.treatment-grid {
  display: grid; gap: 22px;
  max-width: 1180px; margin: 0 auto;
}
.treatment-grid-7  { grid-template-columns: repeat(4, 1fr); }
.treatment-grid-5  { grid-template-columns: repeat(5, 1fr); }

.treatment-card {
  background: #fff;
  border: 1px solid rgba(123,58,181,.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(74,53,145,.06);
  transition: transform .25s, box-shadow .25s;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(74,53,145,.13); }

.treatment-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f3e9f7; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; }

.treatment-card h4 {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 600;
  color: var(--indigo); margin: 16px 16px 6px;
}
.treatment-card p {
  font-size: 12px; font-weight: 300; line-height: 1.65; color: #6a5f75;
  margin: 0 16px 18px;
}


/* ════════════════════════════════════════════════
   OUR APPROACH
   ════════════════════════════════════════════════ */
.approach-section {
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1050 50%, #0e1840 100%);
  padding: 80px 8%;
}
.approach-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.approach-head .section-tag { color: var(--pink); }
.approach-head h2 {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 500;
  color: #fff; margin-top: 10px; line-height: 1.25;
}
.approach-inner { max-width: 640px; }
.approach-text {
  font-size: 13.5px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.72); margin-top: 12px;
}

.approach-steps {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.approach-step {
  flex: 1; max-width: 260px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.approach-step-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: .15em; color: var(--pink); margin-bottom: 4px;
}
.approach-step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px); margin-bottom: 8px;
}
.approach-step h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff;
}
.approach-step p { font-size: 12.5px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.68); }
.approach-connector {
  flex: 0 0 auto; width: 60px; height: 1px; margin-top: 30px;
  background: linear-gradient(90deg, rgba(232,53,107,.5), rgba(155,53,160,.2));
}
@media (max-width: 800px) {
  .approach-steps { flex-direction: column; align-items: center; gap: 32px; }
  .approach-connector { display: none; }
}


/* ════════════════════════════════════════════════
   CTA BANNER (final call-to-action on subpages)
   ════════════════════════════════════════════════ */
.cta-banner {
  background: #fdf6ff;
  padding: 90px 8%;
  display: flex; justify-content: center;
}
.cta-inner {
  max-width: 620px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px); font-weight: 500;
  color: var(--indigo); line-height: 1.2;
}
.cta-inner p {
  font-size: 14px; font-weight: 300; line-height: 1.8; color: #6a5f75;
  margin-bottom: 8px;
}
.cta-stats {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.cta-stat {
  display: flex; flex-direction: column; align-items: center;
  font-size: 11px; font-weight: 500; letter-spacing: .04em; color: #6a5f75;
}
.cta-stat span {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.3;
}
.cta-stat-div { width: 1px; height: 32px; background: rgba(123,58,181,.18); }
@media (max-width: 600px) {
  .cta-stat-div { display: none; }
  .cta-stats { gap: 20px 32px; }
}


.treatment-grid-3  { grid-template-columns: repeat(3, 1fr); }

/* ════════════════════════════════════════════════
   RESPONSIVE — Treatments page
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .treatment-grid-7 { grid-template-columns: repeat(3, 1fr); }
  .treatment-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .treatment-grid-7 { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .karma-section { padding: 56px 6%; }
}
@media (max-width: 480px) {
  .treatment-grid-7, .treatment-grid-5, .treatment-grid-3 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PAGE HERO — image variant (Panchakarma / subpages
   that use the same hero-bg/hero-img/hero-overlay
   layers as the homepage hero, at page-hero height)
   ════════════════════════════════════════════════ */
.page-hero .hero-bg,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .page-hero-content { padding: 0 0 0 6%; }

/* ════════════════════════════════════════════════
   WELLNESS EXPERIENCE PAGE
   ════════════════════════════════════════════════ */

/* Journey split intro (reuses .welcome grid look, own class to avoid collisions) */
.journey-intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.journey-intro-text {
  padding: 76px 7%;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; position: relative;
}
.journey-intro-text::before {
  content: ''; position: absolute; bottom: 30px; left: 6%;
  width: 120px; height: 120px; opacity: .04; pointer-events: none;
  background-color: var(--violet);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
}
.journey-intro-image { overflow: hidden; min-height: 420px; }
.journey-intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* Vertical timeline */
.timeline-section { padding: 84px 6% 96px; background: #fff; position: relative; }
.timeline {
  max-width: 780px; margin: 0 auto; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 6px; bottom: 6px; left: 27px;
  width: 2px; background: linear-gradient(180deg, var(--pink) 0%, var(--violet) 50%, var(--indigo) 100%);
  opacity: .35;
}
.timeline-step {
  position: relative; display: flex; gap: 26px;
  padding-bottom: 44px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-node {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  box-shadow: 0 4px 18px rgba(200,48,110,.35);
  position: relative; z-index: 2;
}
.timeline-body { padding-top: 8px; }
.timeline-body h4 {
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  color: var(--indigo); margin-bottom: 6px; line-height: 1.3;
}
.timeline-body p { font-size: 13px; font-weight: 300; line-height: 1.75; color: #6a5f75; max-width: 520px; }

/* Facilities checklist */
.facilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1080px; margin: 0 auto;
}
.facility-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid rgba(123,58,181,.14); border-radius: 12px;
  padding: 16px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.facility-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,53,145,.1); border-color: rgba(232,53,107,.3); }
.facility-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-main); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.facility-item span.facility-label { font-size: 13px; font-weight: 500; color: var(--ink); }

/* Local experiences chips */
.local-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
.local-card {
  border-radius: 14px; padding: 30px 18px 22px; text-align: center;
  background: var(--grad-dark);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.local-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(74,53,145,.25); }
.local-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 4px;
  transition: background .25s ease, transform .25s ease;
}
.local-card:hover .local-icon { background: rgba(232,53,107,.25); transform: scale(1.06); }
.local-card span.local-label { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.4; }

@media (max-width: 1100px) {
  .journey-intro { grid-template-columns: 1fr; }
  .journey-intro-image { min-height: 300px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 22px; }
  .timeline-node { width: 46px; height: 46px; font-size: 17px; }
  .timeline-step { gap: 18px; }
}


/* ════════════════════════════════════════════════
   GALLERY PAGE — "The Path of Stillness"
   ════════════════════════════════════════════════ */
.gallery-intro { padding: 76px 6% 8px; text-align: center; background: #fff; }
.gallery-intro .why-divider-line { margin: 0 auto 14px; max-width: 420px; }
.gallery-intro h2 { max-width: 640px; margin: 0 auto; }
.gallery-intro p { max-width: 620px; margin: 16px auto 0; font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #6a5f75; }

/* ── Journey nav: a winding path connecting six stepping-stones ── */
.gallery-journey {
    padding: 90px 6% 30px;
    text-align: center;

    background:
        linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
        url("../assets/images/gallery_section_bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;   /* Optional - gives a parallax effect */
}
.journey-heading {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 500;
  color: var(--indigo); margin: 8px 0 14px;
}
.journey-heading em { font-style: italic; color: var(--pink); }
.journey-sub {
  font-size: 13.5px; font-weight: 300; color: #6a5f75;
  max-width: 460px; margin: 0 auto 64px; line-height: 1.85;
}

.journey-path { position: relative; max-width: 1200px; margin: 0 auto; height: 230px; }
.journey-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey-line path {
  fill: none; stroke: url(#journeyGrad); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 1700; stroke-dashoffset: 1700;
  transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1);
}
.gallery-journey.in-view .journey-line path { stroke-dashoffset: 0; }

.journey-stone {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  animation: journeyBob 7s ease-in-out infinite; padding: 0;
}
@keyframes journeyBob {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-10px); }
}
.stone-img {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden;
  border: 3px solid #fff; box-shadow: 0 8px 26px rgba(74,53,145,.22);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stone-img img { width: 100%; height: 100%; object-fit: cover; }
.journey-stone:hover .stone-img {
  transform: scale(1.1); border-color: var(--pink);
  box-shadow: 0 12px 34px rgba(200,48,110,.4);
}
.journey-stone.active .stone-img {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(232,53,107,.16), 0 10px 30px rgba(200,48,110,.35);
}
.stone-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--indigo); white-space: nowrap;
}

/* ── Chapters: editorial, alternating, one per category ── */
.chapter { padding: 84px 6%; overflow: hidden; }
.chapter:nth-child(odd)  { background: #ffffff; }
.chapter:nth-child(even) { background: #f7f2fb; }

.chapter-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center;
}
.chapter-intro { order: 1; }
.bento-grid, .duo-grid { order: 2; }
.chapter:nth-child(even) .chapter-intro { order: 2; }
.chapter:nth-child(even) .bento-grid,
.chapter:nth-child(even) .duo-grid { order: 1; }

.chapter-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  margin-bottom: 18px;
}
.chapter-title {
  font-family: var(--font-display); font-size: clamp(26px, 2.7vw, 38px); font-weight: 500;
  line-height: 1.22; color: var(--indigo); margin: 4px 0 16px;
}
.chapter-title em { font-style: italic; color: var(--pink); }
.chapter-desc { font-size: 13.5px; font-weight: 300; line-height: 1.9; color: #6a5f75; max-width: 300px; }
.chapter-count {
  display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: .14em;
  color: var(--violet); margin-top: 20px;
}

/* Bento grid — asymmetric, curated rather than uniform */
.bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px; grid-auto-flow: dense; gap: 16px;
}
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo-grid .gallery-item { aspect-ratio: 3 / 4; }

.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  box-shadow: 0 6px 24px rgba(74,53,145,.10);
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease, box-shadow .3s ease;
}
.gallery-item.in-view { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover { box-shadow: 0 14px 34px rgba(74,53,145,.2); }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.big  { grid-column: span 2; grid-row: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,5,50,.88) 0%, rgba(20,5,50,0) 55%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat-label {
  color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(8,3,20,.94); z-index: 999;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 88%; max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; font-size: 30px; color: #fff;
  cursor: pointer; background: none; border: none; line-height: 1; opacity: .8;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-cat {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   FAQ + TESTIMONIALS
   ════════════════════════════════════════════════ */
.faq-testimonial-section {
  padding: 84px 6%; background: #f5f0fb;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
}
.faq-col-title, .testi-col-title {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.faq-col-title::before, .faq-col-title::after,
.testi-col-title::before, .testi-col-title::after {
  content: ''; flex: 0 0 26px; height: 1px; background: rgba(200,48,110,.35);
}
.faq-col-title span, .testi-col-title span {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: .02em; color: var(--indigo); white-space: nowrap;
}

.faq-item {
  display: flex; gap: 16px; background: #fff; border-radius: 12px;
  padding: 18px 20px; margin-bottom: 14px; box-shadow: 0 4px 16px rgba(74,53,145,.06);
  cursor: pointer; transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(74,53,145,.12); }
.faq-icon-badge {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.faq-body { flex: 1; min-width: 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--indigo);
}
.faq-arrow { flex-shrink: 0; color: var(--pink); font-size: 11px; transition: transform .3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 12.5px; font-weight: 300; line-height: 1.75; color: #6a5f75;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .35s ease; margin-top: 0;
}
.faq-item.open .faq-a { max-height: 160px; margin-top: 10px; }

.testi-card {
  background: #fff; border-radius: 14px; padding: 26px 26px 22px;
  margin-bottom: 16px; box-shadow: 0 4px 16px rgba(74,53,145,.06); text-align: center;
}
.testi-quote-icon { font-size: 22px; color: var(--pink); opacity: .55; }
.testi-stars { color: #e0a83a; letter-spacing: 3px; margin: 8px 0; font-size: 13px; }
.testi-text {
  font-family: var(--font-display); font-style: italic; font-size: 14.5px;
  color: var(--ink); line-height: 1.75;
}
.testi-note {
  text-align: center; font-size: 11px; font-style: italic; font-weight: 300;
  color: #8a7f95; margin-top: 6px;
}

/* ════════════════════════════════════════════════
   CONTACT (SIMPLE, WITH MAP)
   ════════════════════════════════════════════════ */
.contact-simple { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.contact-simple-info {
  padding: 76px 7%; color: #fff;
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1050 50%, #0e1840 100%);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.contact-simple-info h2 {
  font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 500; line-height: 1.25;
}
.contact-simple-info .lead { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.85; }
.contact-simple-list { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.contact-simple-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-simple-row .csi-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.contact-simple-row .ci-label {
  display: block; font-weight: 600; color: var(--pink); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px;
}
.contact-simple-row .ci-value { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.88); line-height: 1.6; }
.contact-map { min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ════════════════════════════════════════════════
   FINAL CTA BANNER
   ════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1050 50%, #0e1840 100%);
  padding: 64px 8%; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.final-cta-text h2 {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 500; color: #fff; margin-bottom: 10px;
}
.final-cta-text p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.7); max-width: 440px; line-height: 1.8; }
.final-cta-btn { margin-top: 18px; }

/* ════════════════════════════════════════════════
   RESPONSIVE — Gallery page
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .chapter-inner { grid-template-columns: 1fr; gap: 32px; }
  .chapter-intro, .chapter:nth-child(even) .chapter-intro { order: 1; }
  .bento-grid, .duo-grid,
  .chapter:nth-child(even) .bento-grid, .chapter:nth-child(even) .duo-grid { order: 2; }
  .chapter-desc { max-width: 520px; }
  .faq-testimonial-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-simple { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
}
@media (max-width: 860px) {
  /* The winding path collapses into a scrollable stone strip */
  .journey-line { display: none; }
  .journey-path {
    height: auto; display: flex; gap: 30px; overflow-x: auto;
    padding: 6px 4px 22px; scroll-snap-type: x mandatory; justify-content: flex-start;
  }
  .journey-stone {
    position: static; transform: none; flex: 0 0 auto; scroll-snap-align: center; animation: none;
  }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-item.wide, .gallery-item.big { grid-column: span 2; }
}
@media (max-width: 768px) {
  .final-cta { flex-direction: column; text-align: center; }
  .final-cta-text p { max-width: 100%; }
  .chapter { padding: 64px 6%; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide, .gallery-item.big, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .duo-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   Floating WhatsApp Button
   ══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
  right: 24px;
  background: #25D366;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  opacity: .55;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
  background: #25D366;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.9); opacity: 0;   }
}
.whatsapp-float .wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #1a1020; color: #fff; font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500; white-space: nowrap;
  padding: 8px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, right .2s ease;
}
.whatsapp-float .wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #1a1020;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 72px; }
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .wa-tooltip { display: none; }
}

/* ══════════════════════════════════════════════
   Staff-only Admin Login Button (bottom-left)
   Deliberately small and low-contrast — it is not
   meant to be a visitor-facing call to action. Real
   protection comes from admin/login.php's server-side
   authentication, not from hiding this button.
   ══════════════════════════════════════════════ */
.admin-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 400;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(20, 12, 34, 0.35);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity .2s ease, background .2s ease, transform .2s ease;
}
.admin-fab:hover {
  opacity: 1;
  background: rgba(20, 12, 34, 0.75);
  transform: scale(1.08);
}

