/* =========================================================================
   KHALMA · Centro de Bienestar — Hoja de estilos
   Estética: lujo orgánico y sereno. Dorado · crema · gris.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --gold: #bfa06a;
  --gold-deep: #a8895a;
  --gold-soft: #d9c7a3;
  --gold-tint: #ece0c8;

  --cream: #faf4ea;
  --cream-2: #f3ead9;
  --cream-3: #ede0ca;
  --white: #ffffff;

  --ink: #565a5d;
  --ink-strong: #3c4042;
  --ink-soft: #8a8d8f;

  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 14px;

  --shadow-sm: 0 6px 20px -12px rgba(86, 90, 93, .35);
  --shadow-md: 0 24px 50px -28px rgba(86, 90, 93, .45);
  --shadow-gold: 0 18px 40px -22px rgba(168, 137, 90, .65);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --script: "Sacramento", "Cormorant Garamond", cursive;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, .55vw + .9rem, 1.075rem);
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink-strong);
  line-height: 1.08;
  margin: 0;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

p { margin: 0 0 1.1em; }

::selection { background: var(--gold-soft); color: var(--ink-strong); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--cream { background: var(--cream-2); }
.section--ink { background: var(--ink-strong); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: .72rem;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink); margin-top: 1rem; }

.lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink); }

.script { font-family: var(--script); color: var(--gold-deep); }

.divider {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; color: var(--gold);
}
.divider::before, .divider::after { content: ""; height: 1px; width: clamp(40px, 14vw, 130px); background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.divider::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.divider span { font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 50px;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  box-shadow: var(--shadow-gold);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 26px 48px -20px rgba(168,137,90,.8); background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink-strong); border-color: var(--gold); box-shadow: none; }
.btn--ghost:hover { --bg: var(--gold); --fg: #fff; }
.btn--light { --bg: var(--cream); --fg: var(--ink-strong); box-shadow: none; }
.btn--light:hover { --bg: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn .ico { width: 18px; height: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 1.2rem;
}
.site-header.scrolled {
  background: rgba(250, 244, 234, .85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(191,160,106,.25), var(--shadow-sm);
  padding-block: .65rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--ink-strong); letter-spacing: .02em; }
.brand-name small { font-family: var(--sans); font-weight: 300; font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav-links a {
  position: relative;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: .4rem;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-deep); transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links .btn { color: #fff; text-transform: uppercase; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--ink-strong);
}
.nav-toggle span { display: block; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; z-index: 110; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.6rem; padding: 2rem 2.4rem;
    background: var(--cream); box-shadow: -20px 0 60px -30px rgba(0,0,0,.45);
    transform: translateX(100%); transition: transform .5s var(--ease); z-index: 105;
  }
  .nav-links a { font-size: 1.05rem; }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(60,64,66,.35); opacity: 0; visibility: hidden; transition: opacity .4s; z-index: 104; }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 0 2rem;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--cream) 40%, var(--cream-2) 100%);
}
.hero__mandala {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: min(140vw, 1100px);
  aspect-ratio: 1;
  color: var(--gold);
  opacity: .16;
  pointer-events: none;
  animation: spin 140s linear infinite;
}
.hero__mandala--low { top: auto; bottom: -55%; opacity: .08; animation-direction: reverse; animation-duration: 200s; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; padding-inline: var(--gutter); margin-top: auto; }
.hero__logo { width: clamp(120px, 22vw, 190px); height: auto; margin: 0 auto 1.5rem; border-radius: 50%; box-shadow: var(--shadow-md); }
.hero h1 { color: var(--ink-strong); }
.hero h1 em { font-family: var(--script); font-style: normal; color: var(--gold-deep); font-size: 1.15em; display: block; line-height: .9; }
.hero__sub { font-size: 1.2rem; color: var(--ink); max-width: 540px; margin: 1.4rem auto 2.2rem; }

.scroll-cue { margin-top: auto; padding-bottom: .5rem; display: grid; place-items: center; gap: .5rem; color: var(--gold-deep); z-index: 2; }
.scroll-cue span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-deep), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }

/* ---------- Generic content blocks ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }

/* ---------- Service cards ---------- */
.s-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex; flex-direction: column;
}
.s-card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 150px; height: 150px;
  background: url("../assets/mandala.svg") center/contain no-repeat;
  color: var(--gold); opacity: .07; transition: transform .8s var(--ease), opacity .5s;
}
.s-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.s-card:hover::after { transform: rotate(40deg) scale(1.1); opacity: .12; }
.s-card__icon { width: 54px; height: 54px; margin-bottom: 1.3rem; color: var(--gold-deep); }
.s-card__icon svg { width: 100%; height: 100%; }
.s-card h3 { margin-bottom: .55rem; }
.s-card p { font-size: .98rem; color: var(--ink); margin-bottom: 1.4rem; }
.s-card__more { margin-top: auto; font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: .5rem; align-items: center; }
.s-card__more .arrow { transition: transform .35s var(--ease); }
.s-card:hover .s-card__more .arrow { transform: translateX(6px); }
.s-card__price { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-strong); margin-bottom: 1rem; }
.s-card__price b { color: var(--gold-deep); font-weight: 600; }

/* ---------- Feature / value list ---------- */
.value { text-align: center; padding: 1rem; }
.value__num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: .3rem; }
.value h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.value p { font-size: .96rem; color: var(--ink); }
.section--ink .value p { color: var(--cream-3); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; }
.stats .lbl { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-top: .5rem; }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; } }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  position: relative;
}
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--gold-soft); position: absolute; top: .4rem; left: 1.2rem; }
.quote p { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--ink-strong); position: relative; z-index: 1; padding-top: 1.4rem; }
.quote .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .6rem; }
.quote .who { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-style: normal; }

/* ---------- Tarifas table ---------- */
.rate-group { margin-bottom: 3rem; }
.rate-group > h3 { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; }
.rate-group > h3::after { content: ""; flex: 1; height: 1px; background: var(--gold-tint); }
.rate {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: .5rem 1.2rem;
  padding: .85rem 0; border-bottom: 1px dotted var(--gold-soft);
}
.rate:last-child { border-bottom: none; }
.rate__name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink-strong); }
.rate__name small { display: block; font-family: var(--sans); font-size: .85rem; color: var(--ink-soft); letter-spacing: 0; text-transform: none; margin-top: .15rem; }
.rate__dur { font-size: .82rem; color: var(--ink-soft); letter-spacing: .1em; }
.rate__price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep); font-weight: 600; white-space: nowrap; }

/* ---------- Media frame (placeholder images) ---------- */
.frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.ph {
  aspect-ratio: 4 / 5;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(circle at 30% 20%, var(--cream) 0%, var(--cream-2) 45%, var(--cream-3) 100%);
  color: var(--gold-deep);
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: ""; position: absolute; inset: -10%;
  background: url("../assets/mandala.svg") center/contain no-repeat;
  color: var(--gold); opacity: .14;
}
.ph__label { position: relative; z-index: 1; font-family: var(--serif); font-style: italic; font-size: 1.15rem; padding: .6rem 1.2rem; }
.frame--tag::after {
  content: attr(data-tag);
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(250,244,234,.9); color: var(--gold-deep);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 40px; backdrop-filter: blur(4px);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.3rem); }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .ph { aspect-ratio: 1; cursor: pointer; transition: transform .5s var(--ease), filter .5s var(--ease); }
.gallery .ph.tall { aspect-ratio: 1 / 1.4; }
@media (min-width: 761px) {
  .gallery .ph.span2 { grid-column: span 2; aspect-ratio: 2 / 1; }
}
.gallery .ph:hover { transform: scale(.985); filter: brightness(1.03); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 2rem; background: rgba(60,64,66,.82); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner { max-width: 560px; width: 100%; }
.lightbox .ph { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font-size: 1.4rem; cursor: pointer; transition: background .3s; }
.lightbox__close:hover { background: rgba(255,255,255,.15); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-item { display: flex; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--gold-tint); align-items: flex-start; }
.info-item:last-child { border-bottom: none; }
.info-item .ico { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); }
.info-item .ico svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--sans); font-weight: 500; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .3rem; }
.info-item a, .info-item p { font-family: var(--serif); font-size: 1.3rem; color: var(--ink-strong); margin: 0; transition: color .3s; }
.info-item a:hover { color: var(--gold-deep); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gold-tint); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.3) sepia(.15); }

.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px dotted var(--gold-soft); font-size: 1rem; }
.hours li:last-child { border-bottom: none; }
.hours .closed { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--gold-tint); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink-strong);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--gold-deep); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.5rem; margin: 0; color: var(--ink); max-width: 90%; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { position: relative; padding: clamp(8rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; overflow: hidden; background: radial-gradient(120% 120% at 50% 0%, var(--cream-2), var(--cream)); }
.page-hero__mandala { position: absolute; top: -45%; right: -12%; width: min(80vw, 620px); aspect-ratio: 1; color: var(--gold); opacity: .12; animation: spin 160s linear infinite; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: .6rem; justify-content: center; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1.3rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band__mandala { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(120vw, 900px); aspect-ratio: 1; opacity: .07; color: var(--gold-soft); animation: spin 180s linear infinite; }

/* ---------- Benefit list ---------- */
.benefits { display: grid; gap: 1.1rem; }
.benefits li { display: flex; gap: .9rem; align-items: flex-start; }
.benefits .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); display: grid; place-items: center; margin-top: 3px; }
.section--ink .benefits .tick { background: rgba(255,255,255,.1); color: var(--gold-soft); }
.benefits b { color: var(--ink-strong); font-weight: 500; }
.section--ink .benefits b { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-strong); color: var(--cream-3); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; position: relative; overflow: hidden; }
.site-footer__mandala { position: absolute; right: -8%; bottom: -40%; width: 460px; aspect-ratio: 1; color: var(--gold); opacity: .08; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand .script { font-size: 2.4rem; color: var(--gold-soft); line-height: .8; }
.footer-brand p { font-size: .95rem; color: var(--cream-3); margin-top: 1rem; max-width: 30ch; }
.site-footer h4 { font-family: var(--sans); font-weight: 500; font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.3rem; }
.footer-links a { display: block; padding: .35rem 0; color: var(--cream-3); font-size: .95rem; transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact a, .footer-contact p { display: block; color: var(--cream-3); font-size: .95rem; padding: .35rem 0; transition: color .3s; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: var(--cream-3); transition: background .3s, color .3s, border-color .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: var(--ink-soft); position: relative; z-index: 1; }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.7);
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ping 2.6s var(--ease) infinite; }

/* ---------- Animations ---------- */
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
.page-hero__mandala { animation-name: spin-simple; }
.cta-band__mandala, .hero__mandala--low, .site-footer__mandala { animation-name: spin-simple; }
@keyframes spin-simple { from { transform: rotate(0); } to { transform: rotate(360deg); } }
/* fix: hero main mandala keeps translateX while spinning via dedicated keyframe */
.hero__mandala { animation-name: spin; }

@keyframes cue { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(1.5); opacity: 0; } }

/* reveal-on-scroll + staggered load */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }
[data-reveal].d4 { transition-delay: .32s; }
[data-reveal].d5 { transition-delay: .40s; }

.hero [data-load] { opacity: 0; transform: translateY(22px); animation: load .9s var(--ease) forwards; }
.hero [data-load].l1 { animation-delay: .15s; }
.hero [data-load].l2 { animation-delay: .35s; }
.hero [data-load].l3 { animation-delay: .55s; }
.hero [data-load].l4 { animation-delay: .75s; }
.hero [data-load].l5 { animation-delay: .95s; }
@keyframes load { to { opacity: 1; transform: none; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero [data-load] { opacity: 1; transform: none; }
}

/* ---------- Small print / utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.editable-note {
  font-size: .78rem; color: var(--ink-soft); font-style: italic;
  border-left: 2px solid var(--gold-soft); padding-left: .8rem; margin-top: 1.2rem;
}
