:root {
  --ink: #262b1f;
  --ink-soft: #4e5540;
  --muted: #716a5e;
  --cream: #fbf7ee;
  --ivory: #fffaf0;
  --sand: #efe1c8;
  --gold: #bd8f3e;
  --gold-light: #e8c983;
  --sage: #6f7a58;
  --sage-dark: #29331f;
  --sage-soft: #e5eadb;
  --rose: #d9b7a3;
  --line: rgba(120, 94, 48, 0.22);
  --shadow: 0 24px 80px rgba(39, 45, 29, 0.15);
  --shadow-soft: 0 12px 40px rgba(39, 45, 29, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 82px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  background:
    radial-gradient(circle at 22% 2%, rgba(235, 210, 151, .42), transparent 33rem),
    radial-gradient(circle at 90% 18%, rgba(111, 122, 88, .20), transparent 34rem),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 38%, #f1e3cd 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(106, 74, 26, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 74, 26, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
::selection { background: rgba(198, 155, 76, .25); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  z-index: 999;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.lang-es { display: none; }
body[data-lang="es"] .lang-es { display: inline; }
body[data-lang="es"] .lang-en { display: none; }
body[data-lang="en"] .lang-en { display: inline; }
body[data-lang="en"] .lang-es { display: none; }

.sacred-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.bg-symbol {
  position: absolute;
  width: clamp(360px, 42vw, 760px);
  opacity: .105;
  filter: sepia(.35) saturate(.8);
  transform-origin: center;
  mix-blend-mode: multiply;
}
.bg-symbol-1 { top: 7rem; left: -14rem; transform: rotate(-12deg); }
.bg-symbol-2 { top: 42rem; right: -18rem; transform: rotate(18deg); opacity: .09; }
.bg-symbol-3 { top: 86rem; left: -18rem; transform: rotate(7deg); opacity: .08; }
.bg-symbol-4 { bottom: -16rem; right: -10rem; transform: rotate(-10deg); opacity: .095; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 250, 240, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(151, 116, 58, .16);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 240, .95);
  box-shadow: 0 10px 34px rgba(45, 47, 34, .08);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  width: 54px;
  height: 54px;
}
.brand-copy {
  display: grid;
  line-height: 1.1;
}
.brand-copy strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.brand-copy em {
  font-size: .73rem;
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav a:not(.btn) {
  position: relative;
  padding: 8px 0;
  color: rgba(38, 43, 31, .82);
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(116, 90, 45, .24);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .42);
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 800;
}
.lang-switch button.is-active {
  background: var(--sage-dark);
  color: var(--ivory);
}
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.24), transparent);
  transform: translateX(-110%);
  transition: transform .7s ease;
}
.btn:hover::before { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 11px 18px; font-size: .72rem; }
.btn-green {
  background: linear-gradient(135deg, #2c341f, #65714e);
  color: #fff8e7;
  box-shadow: 0 15px 32px rgba(41, 51, 31, .28);
}
.btn-gold {
  background: linear-gradient(135deg, #a7782d, #d3ad64);
  color: #fffaf0;
  box-shadow: 0 15px 32px rgba(164, 116, 41, .28);
}
.icon { font-size: 1rem; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(70px, 8vw, 118px) 0 clamp(58px, 7vw, 96px);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 250, 240, .83), rgba(255, 250, 240, .5) 32%, transparent 58%),
    linear-gradient(90deg, rgba(255, 250, 240, .84) 0%, rgba(255, 250, 240, .56) 45%, rgba(23, 31, 19, .14) 100%),
    linear-gradient(180deg, transparent 70%, var(--cream) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .42fr);
  align-items: center;
  gap: clamp(34px, 7vw, 78px);
}
.eyebrow, .section-kicker, .card-eyebrow, .oracle-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 840px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 7.6vw, 7.1rem);
  line-height: .92;
  letter-spacing: .02em;
  color: #1f2819;
  text-wrap: balance;
}
.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  color: #445035;
  line-height: 1.65;
}
.mantra-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 28px 0 0;
}
.mantra-card span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(156, 118, 50, .2);
  border-radius: 999px;
  background: rgba(255, 250, 240, .55);
  backdrop-filter: blur(10px);
  color: #5a6348;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}
.hero-oracle {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(188, 143, 62, .28);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 250, 240, .82), rgba(239, 226, 199, .65));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  text-align: center;
  overflow: hidden;
}
.hero-oracle::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 50% 14%, rgba(228, 191, 112, .24), transparent 42%);
  z-index: -1;
}
.oracle-symbol {
  width: min(100%, 320px);
  margin: 0 auto 14px;
  opacity: .86;
}
.hero-oracle strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--sage-dark);
}
.oracle-price {
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .8rem;
}
.oracle-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.hero-oracle p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 116px) 0;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2,
.intro-card h2,
.ritual-copy h2,
.guide-copy h2,
.why-copy h2,
.faq-intro h2,
.final-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: .015em;
  color: var(--ink);
  text-wrap: balance;
}
.section-heading p,
.intro-card p,
.ritual-copy > p,
.guide-copy p,
.why-copy p,
.faq-intro p,
.final-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}
.intro-card,
.intro-list,
.info-card,
.qr-card,
.faq-list,
.final-card {
  border: 1px solid rgba(151, 116, 58, .18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,250,240,.85), rgba(244,234,215,.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.intro-card {
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  position: relative;
}
.intro-card img {
  width: 210px;
  opacity: .34;
  margin-bottom: 12px;
}
.intro-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
}
.intro-list article {
  padding: 32px 26px;
  background: rgba(255, 250, 240, .46);
}
.intro-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(183, 142, 65, .38);
  color: var(--gold);
  font-weight: 900;
  font-family: var(--serif);
}
.intro-list h3 {
  margin: 26px 0 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.intro-list p { margin: 0; color: var(--muted); }

.services { padding-top: clamp(80px, 9vw, 130px); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 116, 58, .24);
  background: linear-gradient(150deg, rgba(255, 250, 240, .92), rgba(242, 229, 204, .72));
  box-shadow: var(--shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(226, 190, 112, .20), transparent 38%);
  pointer-events: none;
}
.service-card-featured::before {
  background: radial-gradient(circle at 26% 8%, rgba(231, 198, 125, .28), transparent 40%), radial-gradient(circle at 90% 80%, rgba(111, 122, 88, .16), transparent 38%);
}
.service-symbol {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 30px 30px 0;
}
.service-symbol img {
  width: min(250px, 56%);
  opacity: .9;
}
.service-content {
  position: relative;
  padding: 0 clamp(24px, 4vw, 42px) 28px;
}
.service-content h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.08;
}
.service-description {
  color: var(--muted);
  margin: 0 0 24px;
}
.service-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.service-facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(120, 94, 48, .14);
}
.service-facts strong {
  color: var(--sage-dark);
  min-width: 86px;
}
.service-facts span:last-child {
  color: var(--muted);
  text-align: right;
}
.price-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, var(--sage-dark), #5f6d49);
  color: #fff8e8;
}
.price-band-gold {
  background: linear-gradient(135deg, #9e6d28, #d0a85b);
}
.price-band span {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
}
.price-band small {
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-button {
  margin: 22px clamp(24px, 4vw, 42px) 34px;
}

.ritual {
  background: linear-gradient(180deg, rgba(255, 250, 240, .2), rgba(229, 218, 194, .42));
}
.ritual-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(36px, 8vw, 90px);
  align-items: center;
}
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.ritual-steps article {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(151, 116, 58, .18);
  background: rgba(255, 250, 240, .64);
}
.ritual-steps span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.ritual-steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.ritual-steps p { margin: 8px 0 0; color: var(--muted); }
.ritual-orbit {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.orbit-symbol-main {
  width: min(100%, 520px);
  opacity: .82;
  animation: slowRotate 46s linear infinite;
}
.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 26px rgba(218, 177, 93, .8);
}
.dot-1 { top: 18%; left: 18%; }
.dot-2 { top: 24%; right: 18%; }
.dot-3 { bottom: 18%; left: 24%; }
.dot-4 { bottom: 24%; right: 22%; }
@keyframes slowRotate { to { transform: rotate(360deg); } }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(151, 116, 58, .18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 250, 240, .68);
}
.schedule-grid article {
  min-height: 180px;
  padding: 26px 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-right: 1px solid rgba(151, 116, 58, .16);
}
.schedule-grid article:last-child { border-right: 0; }
.schedule-grid span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 900;
}
.schedule-grid strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
}
.schedule-grid small { color: var(--muted); }
.schedule-grid em {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--sage);
  font-style: normal;
}

.guide {
  padding-top: clamp(60px, 8vw, 105px);
}
.guide-grid {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}
.portrait-card {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(150deg, rgba(255, 250, 240, .76), rgba(213, 174, 102, .22));
  border: 1px solid rgba(188, 143, 62, .25);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 28px;
  filter: saturate(.95) contrast(1.03);
}
.portrait-glow {
  position: absolute;
  inset: auto 12% -24% 12%;
  height: 34%;
  background: radial-gradient(circle, rgba(231, 197, 121, .62), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}
.guide-title {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--gold) !important;
}
.guide-copy blockquote,
.footer-grid blockquote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--sage-dark);
}

.why {
  background: linear-gradient(180deg, rgba(42, 51, 33, .06), rgba(255, 250, 240, .4));
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 36px;
  align-items: center;
}
.why-art {
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(151, 116, 58, .18);
}
.why-art img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr .95fr .95fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}
.info-card,
.qr-card {
  padding: 26px;
  min-height: 100%;
}
.info-card h3,
.qr-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.55rem;
}
.info-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(111, 122, 88, .12);
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.45rem;
}
.info-card p { color: var(--muted); }
.info-card a { color: var(--sage-dark); font-weight: 800; border-bottom: 1px solid rgba(116, 90, 45, .26); }
.clean-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.clean-list li {
  position: relative;
  padding-left: 27px;
}
.clean-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.map-art { margin-top: 18px; border-radius: 18px; }
.qr-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  background: linear-gradient(150deg, #26301f, #596847);
  color: #fff8e8;
  box-shadow: var(--shadow);
}
.qr-card p { color: rgba(255, 248, 232, .78); }
.qr-card img {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  border-radius: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq-list { padding: 10px; }
details {
  border-bottom: 1px solid rgba(151, 116, 58, .16);
}
details:last-child { border-bottom: 0; }
summary {
  cursor: pointer;
  padding: 22px 18px;
  font-weight: 900;
  color: var(--sage-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 0;
  padding: 0 18px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 clamp(70px, 8vw, 116px);
}
.final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(42, 51, 31, .96), rgba(94, 107, 74, .94));
  color: #fff8e8;
}
.final-card > img {
  width: 140px;
  opacity: .8;
}
.final-card h2 { color: #fff8e8; }
.final-card p { color: rgba(255, 248, 232, .76); }
.final-actions { display: grid; gap: 14px; min-width: 240px; }

.site-footer {
  padding: 42px 0 74px;
  background: #202919;
  color: #fff8e8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 34px;
  align-items: center;
}
.footer-mark { width: 78px; margin-bottom: 14px; }
.footer-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-grid p,
.footer-links a { color: rgba(255, 248, 232, .72); }
.footer-grid blockquote { color: #fff8e8; margin: 0; }
.footer-links {
  display: grid;
  justify-items: end;
  gap: 10px;
  font-size: .9rem;
}

.mobile-booking {
  position: fixed;
  z-index: 80;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(151, 116, 58, .22);
  border-radius: 999px;
  background: rgba(255, 250, 240, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(32, 41, 25, .18);
}
.mobile-booking a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  color: #fff8e8;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.mobile-booking a:first-child { background: linear-gradient(135deg, #2c341f, #65714e); }
.mobile-booking a:last-child { background: linear-gradient(135deg, #a7782d, #d3ad64); }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: min(92vw, 520px);
  padding: 14px 18px;
  border-radius: 999px;
  background: #202919;
  color: #fff8e8;
  box-shadow: var(--shadow);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px;
    border: 1px solid rgba(151, 116, 58, .22);
    border-radius: 24px;
    background: rgba(255, 250, 240, .96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a:not(.btn) { padding: 12px 6px; }
  .site-nav .btn { width: 100%; }
  .lang-switch { width: fit-content; margin: 8px 0; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(151, 116, 58, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--sage-dark);
    border-radius: 999px;
  }
  .hero-grid, .intro-grid, .ritual-grid, .guide-grid, .why-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-oracle { max-width: 520px; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-mark { margin-inline: auto; }
  .footer-links { justify-items: center; }
}

@media (max-width: 820px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy em { font-size: .62rem; }
  .hero { padding-top: 54px; align-items: start; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255, 250, 240, .86), rgba(255, 250, 240, .62) 52%, var(--cream) 100%); }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-actions, .final-actions { flex-direction: column; display: grid; }
  .mantra-card { grid-template-columns: 1fr; }
  .service-grid, .ritual-steps, .schedule-grid, .location-grid, .intro-list { grid-template-columns: 1fr; }
  .schedule-grid article { border-right: 0; border-bottom: 1px solid rgba(151, 116, 58, .16); }
  .schedule-grid article:last-child { border-bottom: 0; }
  .service-symbol { min-height: 180px; }
  .service-symbol img { width: min(240px, 68%); }
  .service-facts li { display: grid; gap: 4px; }
  .service-facts span:last-child { text-align: left; }
  .ritual-orbit { min-height: 360px; }
  .final-card { grid-template-columns: 1fr; text-align: center; }
  .final-card > img { margin: 0 auto; width: 110px; }
  .mobile-booking { display: grid; }
  .toast { bottom: 84px; border-radius: 22px; }
  .bg-symbol { width: clamp(330px, 90vw, 560px); opacity: .07; }
  .bg-symbol-1 { top: 8rem; left: -12rem; }
  .bg-symbol-2 { top: 58rem; right: -16rem; }
  .bg-symbol-3 { top: 116rem; left: -16rem; }
  .bg-symbol-4 { bottom: -10rem; right: -12rem; }
}

@media (max-width: 480px) {
  .brand-copy em { display: none; }
  .hero-lead { font-size: 1rem; }
  .btn { width: 100%; padding-inline: 18px; }
  .section { padding: 64px 0; }
  .service-content, .card-button, .price-band { margin-inline: 0; }
  .intro-card, .info-card, .qr-card { padding: 24px; border-radius: 24px; }
  .section-heading h2,
  .intro-card h2,
  .ritual-copy h2,
  .guide-copy h2,
  .why-copy h2,
  .faq-intro h2,
  .final-card h2 { font-size: 2.22rem; }
}

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

/* v5 additions: private session + free prayer request */
.btn-ghost {
  background: rgba(255, 250, 240, .72);
  color: var(--sage-dark);
  border-color: rgba(151, 116, 58, .28);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover { filter: saturate(1.05); }

.private-session-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 116, 58, .24);
  background:
    radial-gradient(circle at 95% 20%, rgba(232, 201, 131, .22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 240, .92), rgba(231, 225, 204, .74));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.private-session-strip::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 300px;
  height: 300px;
  background: url('../symbols/symbol-emotion-mind-heart.svg') center / contain no-repeat;
  opacity: .12;
  pointer-events: none;
}
.private-session-copy,
.private-session-action { position: relative; z-index: 1; }
.private-session-copy h3 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}
.private-session-copy p { margin: 0; color: var(--muted); max-width: 780px; }
.private-session-action {
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: 240px;
}
.private-session-action > span {
  color: var(--sage-dark);
  font-weight: 850;
  text-align: right;
}

.prayer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 250, 240, .28), rgba(226, 215, 190, .36));
}
.prayer::before {
  content: "";
  position: absolute;
  inset: auto -10rem -16rem auto;
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  background: url('../symbols/symbol-present-transform-consciousness.svg') center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.prayer-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.prayer-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: .98;
}
.prayer-copy p { color: var(--muted); font-size: 1.05rem; }
.prayer-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(151, 116, 58, .2);
  border-radius: 18px;
  background: rgba(255, 250, 240, .62);
  color: var(--ink-soft);
  font-weight: 750;
}
.prayer-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(151, 116, 58, .22);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,250,240,.92), rgba(244,234,215,.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.prayer-form label { display: grid; gap: 8px; color: var(--sage-dark); font-weight: 850; }
.prayer-form input,
.prayer-form textarea {
  width: 100%;
  border: 1px solid rgba(151, 116, 58, .24);
  border-radius: 18px;
  background: rgba(255, 255, 255, .64);
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.prayer-form input:focus,
.prayer-form textarea:focus {
  border-color: rgba(189, 143, 62, .72);
  box-shadow: 0 0 0 4px rgba(189, 143, 62, .12);
  background: rgba(255, 255, 255, .88);
}
.prayer-form textarea { resize: vertical; min-height: 150px; }
.consent-line {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 12px !important;
  align-items: start;
  font-weight: 650 !important;
  color: var(--muted) !important;
  font-size: .95rem;
}
.consent-line input { width: 18px; height: 18px; margin-top: 4px; padding: 0; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { margin: 0; min-height: 1.4em; color: var(--sage-dark); font-weight: 800; }
.form-status.is-error { color: #8b2f22; }
.form-status.is-success { color: #2f5f3e; }

.mobile-booking { grid-template-columns: 1fr 1fr 1fr; }
.mobile-booking a:nth-child(1) { background: linear-gradient(135deg, #2c341f, #65714e); }
.mobile-booking a:nth-child(2) { background: linear-gradient(135deg, #a7782d, #d3ad64); }
.mobile-booking a:nth-child(3) { background: linear-gradient(135deg, #fbf7ee, #e8dcc1); color: var(--sage-dark); border: 1px solid rgba(151, 116, 58, .24); }

@media (max-width: 980px) {
  .private-session-strip,
  .prayer-grid { grid-template-columns: 1fr; }
  .private-session-action { justify-items: start; min-width: 0; }
  .private-session-action > span { text-align: left; }
}

@media (max-width: 820px) {
  .prayer-copy h2 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .prayer-form { padding: 24px; border-radius: 24px; }
  .private-session-strip { border-radius: 24px; }
  .mobile-booking { border-radius: 26px; }
  .mobile-booking a { font-size: .68rem; min-height: 42px; }
}

@media (max-width: 480px) {
  .private-session-strip { padding: 24px; }
  .prayer-note { font-size: .92rem; }
}


/* v6 additions: Energy & Soul Deià rebrand, collaborators and legal pages */
.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 250, 240, .72);
  padding: 3px;
}
.brand-copy strong { letter-spacing: .045em; }
.hero-copy h1 .lang-en,
.hero-copy h1 .lang-es { font-size: inherit; }
.why-art img { filter: saturate(1.06) contrast(1.02); }
.collaborators-card { grid-column: span 1; }
.collaborator-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.collaborator-qr-grid a {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 250, 240, .12);
  color: #fff8e8;
  text-align: center;
  border: 1px solid rgba(255, 248, 232, .16);
}
.collaborator-qr-grid img {
  width: 112px;
  max-width: 100%;
  border-radius: 14px;
  margin: 0;
  background: #fffaf0;
}
.collaborator-qr-grid span {
  font-weight: 900;
  letter-spacing: .03em;
}
.collaborator-qr-grid small {
  color: rgba(255, 248, 232, .72);
  font-size: .72rem;
  word-break: break-word;
}
.transparency {
  background: linear-gradient(180deg, rgba(255,250,240,.18), rgba(42,51,31,.06));
}
.transparency-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.transparency-copy h2,
.legal-main h1 {
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.02;
}
.transparency-copy p,
.legal-main p,
.legal-main li { color: var(--muted); }
.legal-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.legal-link-grid a {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(151, 116, 58, .2);
  background: rgba(255, 250, 240, .72);
  color: var(--sage-dark);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.legal-page .site-header { position: sticky; }
.legal-main { padding: 118px 0 80px; }
.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 116, 58, .2);
  background: linear-gradient(145deg, rgba(255,250,240,.9), rgba(244,234,215,.76));
  box-shadow: var(--shadow-soft);
}
.legal-card h2 { font-family: var(--serif); margin-top: 34px; }
.legal-list { display: grid; gap: 10px; padding-left: 20px; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.confirmation-box {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(111,122,88,.10);
  border: 1px solid rgba(111,122,88,.20);
}
@media (max-width: 980px) {
  .transparency-grid { grid-template-columns: 1fr; }
  .legal-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .collaborator-qr-grid { grid-template-columns: 1fr; }
  .brand-mark { width: 50px; height: 50px; }
}


/* v7 corrections: distance Reiki, collaborator buttons, testimonials */
.distance-session-strip::after {
  background-image: url('../symbols/symbol-chakras-open-cleanse-flow.svg');
}
.collaborator-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.collaborator-button-grid .btn {
  width: 100%;
  justify-content: center;
  min-height: 74px;
  text-align: center;
  line-height: 1.15;
}
.collaborator-button-grid small {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 700;
  opacity: .82;
  word-break: break-word;
}
.testimonials {
  background: linear-gradient(180deg, rgba(255,250,240,.18), rgba(231,225,204,.26));
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.testimonial-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(151, 116, 58, .22);
  background: rgba(255, 250, 240, .72);
  box-shadow: var(--shadow-soft);
  min-height: 160px;
}
.testimonial-card > span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(111, 122, 88, .12);
  color: var(--sage-dark);
  font-weight: 900;
  margin-bottom: 14px;
}
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.testimonial-card--wide {
  grid-column: 1 / -1;
}
.testimonial-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}
.testimonial-quote-note {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(151, 116, 58, .20);
  font-size: .95rem;
}
.pending-testimonial {
  border-style: dashed;
}
@media (max-width: 760px) {
  .testimonial-grid,
  .collaborator-button-grid {
    grid-template-columns: 1fr;
  }
}

/* v9 corrections: scalable collaborator directory and summarized long testimonial */
.collaborators-directory-card {
  grid-column: 1 / -1;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 119, 64, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 235, 218, 0.82)),
    radial-gradient(circle at 10% 0%, rgba(196, 150, 76, 0.18), transparent 32%);
  box-shadow: var(--shadow-soft);
}

.collaborators-directory-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.collaborators-directory-head h3 {
  margin: 0 0 0.45rem;
}

.collaborators-directory-head p {
  margin: 0;
  color: var(--muted);
}

.collaborator-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.collaborator-card {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(153, 119, 64, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.collaborator-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(153, 119, 64, 0.42);
}

.collaborator-card strong {
  font-family: var(--font-serif);
  font-size: 1.12rem;
}

.collaborator-card span {
  color: var(--muted);
  line-height: 1.45;
}

.collaborator-card small {
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.01em;
}



@media (max-width: 900px) {
  .collaborator-directory-grid { grid-template-columns: 1fr; }
}


/* v13 analytics consent banner */
.analytics-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2000;
  width: min(940px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(153, 119, 64, 0.28);
  border-radius: 22px;
  background: rgba(255, 252, 244, 0.96);
  box-shadow: 0 20px 60px rgba(28, 35, 22, 0.20);
  backdrop-filter: blur(14px);
}
.analytics-consent-copy {
  display: grid;
  gap: .25rem;
  color: var(--ink);
  line-height: 1.45;
}
.analytics-consent-copy strong {
  font-family: var(--font-serif);
}
.analytics-consent-copy span {
  color: var(--muted);
  font-size: .94rem;
}
.analytics-consent-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.analytics-consent-actions button {
  border: 1px solid rgba(153, 119, 64, 0.35);
  border-radius: 999px;
  padding: .72rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.analytics-consent-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(28, 35, 22, 0.14);
}
.analytics-consent-accept {
  background: var(--green);
  color: #fff;
}
.analytics-consent-decline {
  background: rgba(255,255,255,.78);
  color: var(--ink);
}
@media (max-width: 720px) {
  .analytics-consent-banner {
    grid-template-columns: 1fr;
    bottom: 74px;
  }
  .analytics-consent-actions { justify-content: stretch; }
  .analytics-consent-actions button { flex: 1; }
}
