:root {
  --ink: #173026;
  --forest: #173b2e;
  --forest-deep: #0b241b;
  --cream: #f4ead8;
  --paper: #fffaf0;
  --rust: #a94329;
  --terracotta: #c55e37;
  --ochre: #d49a3b;
  --wine: #6f2838;
  --sage: #667a52;
  --line: rgba(23, 48, 38, 0.18);
  --shadow: 0 24px 70px rgba(39, 30, 19, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(212, 154, 59, 0.13), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--forest-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 0.8rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 240, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(41, 30, 16, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%;
  background: var(--forest);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-copy small {
  margin-top: 0.28rem;
  color: var(--rust);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--rust);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 0.75rem 1.05rem;
  color: var(--paper);
  border-radius: 999px;
  background: var(--forest);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 7.5rem);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 2px; background: currentColor; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); line-height: 1.05; }
h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}
h1 em, h2 em { color: var(--rust); font-weight: 500; }
.hero-lead { max-width: 640px; margin: 0; color: #3f5148; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--rust); box-shadow: 0 14px 30px rgba(169, 67, 41, 0.24); }
.button-primary:hover { background: #8f3521; box-shadow: 0 18px 35px rgba(169, 67, 41, 0.3); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,0.48); }
.button-ghost:hover { border-color: var(--forest); }
.hero-note {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  max-width: 540px;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.hero-note svg { flex: 0 0 25px; fill: none; stroke: var(--ochre); stroke-width: 1.5; }
.hero-note p { margin: 0; color: #526159; font-size: 0.86rem; }
.hero-note strong { color: var(--ink); }

.hero-art {
  position: relative;
  isolation: isolate;
  width: min(100%, 520px);
  aspect-ratio: 0.82;
  justify-self: center;
  border: 1px solid rgba(212, 154, 59, 0.4);
  border-radius: 49% 49% 4rem 4rem / 22% 22% 4rem 4rem;
  background: linear-gradient(180deg, #d49a3b 0 25%, #b14b2c 25% 42%, #6d2e35 42% 58%, #234535 58% 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-art::after {
  position: absolute;
  z-index: 5;
  inset: 1rem;
  border: 1px solid rgba(255, 238, 202, 0.45);
  border-radius: inherit;
  content: "";
}
.sun-disc {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: #efd792;
  box-shadow: 0 0 0 18px rgba(239, 215, 146, 0.18), 0 0 0 34px rgba(239, 215, 146, 0.1);
  transform: translateX(-50%);
}
.path { position: absolute; left: -15%; width: 130%; height: 25%; border-radius: 50%; transform: rotate(-4deg); }
.path-one { z-index: 0; bottom: 43%; background: #bd5936; }
.path-two { z-index: 1; bottom: 24%; background: #6d2e35; transform: rotate(5deg); }
.path-three { z-index: 2; bottom: 0; height: 32%; background: #173b2e; transform: rotate(-4deg); }
.botanical { position: absolute; z-index: 4; bottom: -2%; width: 33%; fill: #102d22; stroke: #d49a3b; stroke-width: 2.2; }
.botanical-left { left: -2%; transform: rotate(-6deg); }
.botanical-right { right: -2%; transform: rotate(5deg); }
.hero-seal {
  position: absolute;
  z-index: 4;
  top: 37%;
  left: 50%;
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 240, 201, 0.75);
  border-radius: 50%;
  background: rgba(23, 59, 46, 0.9);
  box-shadow: 0 0 0 8px rgba(23, 59, 46, 0.18);
  text-align: center;
  transform: translate(-50%, -50%);
}
.hero-seal span { font-family: var(--serif); font-size: 4.4rem; line-height: 0.72; }
.hero-seal small { margin-top: -1.6rem; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.art-caption {
  position: absolute;
  z-index: 6;
  right: 1.4rem;
  bottom: 1.6rem;
  left: 1.4rem;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-style: italic;
  text-align: center;
}
.hero-decoration { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.38; }
.hero-decoration-one { top: 6%; right: -8%; width: 27vw; height: 27vw; border: 1px solid var(--ochre); }
.hero-decoration-two { bottom: 3%; left: -9%; width: 18vw; height: 18vw; background: rgba(111,40,56,0.08); }

.section-shell { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7.5rem); }
.services { position: relative; background: #ede1cd; }
.services::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(23, 59, 46, 0.22) 0.7px, transparent 0.7px);
  background-size: 13px 13px;
  content: "";
  pointer-events: none;
}
.section-heading { position: relative; max-width: 840px; margin-bottom: clamp(2.8rem, 5vw, 5rem); }
.section-heading h2, .guide h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child { max-width: 680px; margin: 0; color: #4f5e56; font-size: 1.06rem; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.service-card {
  --card-accent: var(--rust);
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(23, 48, 38, 0.13);
  border-radius: 1.5rem;
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 10px 35px rgba(41, 30, 16, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 25px 50px rgba(41, 30, 16, 0.14); }
.service-card[data-accent="ochre"] { --card-accent: #b97822; }
.service-card[data-accent="green"] { --card-accent: #315d45; }
.service-card[data-accent="wine"] { --card-accent: #853f53; }
.service-card[data-accent="rust"] { --card-accent: #a94329; }
.service-card[data-accent="gold"] { --card-accent: #b98428; }
.service-card[data-accent="forest"] { --card-accent: #173b2e; }
.service-card[data-accent="night"] { --card-accent: #293931; }
.service-image { position: relative; aspect-ratio: 1.28; background: var(--forest); overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 27%; transition: transform 600ms cubic-bezier(.2,.75,.2,1); }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  background: rgba(11, 36, 27, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
}
.service-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.45rem; }
.service-format { margin: 0 0 0.65rem; color: var(--card-accent); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.service-body h3 { margin-bottom: 0.75rem; font-size: clamp(1.55rem, 2vw, 2.1rem); font-weight: 500; letter-spacing: -0.025em; }
.service-body > p:not(.service-format) { margin: 0; color: #516158; font-size: 0.92rem; }
.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: auto;
  padding: 1.15rem 0 0.05rem;
  color: var(--card-accent);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.service-card-wide { grid-column: span 3; display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.8fr); }
.tarot-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 380px; background: var(--forest); overflow: hidden; }
.tarot-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: filter 220ms ease, transform 500ms ease; }
.tarot-gallery:hover img { filter: saturate(0.78) brightness(0.84); }
.tarot-gallery img:hover { z-index: 2; filter: none; transform: scale(1.04); }
.tarot-copy { justify-content: center; padding: clamp(1.8rem, 4vw, 3.2rem); }

.guide { background: var(--paper); }
.guide-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  min-height: 690px;
  border-radius: 2rem;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.guide-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 15%, rgba(212,154,59,0.28), transparent 17rem),
    linear-gradient(145deg, rgba(169,67,41,0.82), rgba(111,40,56,0.72)),
    var(--wine);
  overflow: hidden;
}
.guide-intro::after {
  position: absolute;
  right: -22%;
  bottom: -18%;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgba(244,234,216,0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(244,234,216,0.04), 0 0 0 78px rgba(244,234,216,0.03);
  content: "";
}
.eyebrow-light { color: #f0c77b; }
.guide h2 { max-width: 560px; margin-bottom: 1.25rem; }
.guide h2 em { color: #f0c77b; }
.guide-intro > p:not(.eyebrow) { max-width: 540px; margin: 0; color: rgba(255,248,235,0.8); }
.guide-symbol { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.65rem; margin-top: 3rem; }
.guide-symbol span { display: block; width: 10px; aspect-ratio: 1; border-radius: 50%; background: #f0c77b; }
.guide-symbol span:nth-child(2) { width: 45px; height: 1px; border-radius: 0; }
.guide-tool { display: grid; place-items: center; padding: clamp(1.25rem, 4vw, 4rem); background: #f4ead8; }
.guide-options { display: grid; width: 100%; max-width: 720px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
.guide-options button {
  display: flex;
  min-height: 128px;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  color: var(--ink);
  border: 1px solid rgba(23,48,38,0.17);
  border-radius: 1.1rem;
  background: rgba(255,250,240,0.75);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.guide-options button:hover,
.guide-options button:focus-visible {
  border-color: var(--rust);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(41, 30, 16, 0.1);
  transform: translateY(-3px);
}
.choice-icon {
  display: grid;
  flex: 0 0 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  border-radius: 50%;
  background: var(--rust);
  font-size: 0.64rem;
  font-weight: 900;
}
.guide-result { width: 100%; max-width: 650px; animation: result-in 360ms ease both; }
.result-back { padding: 0; color: #5d6a63; border: 0; background: transparent; font-weight: 750; cursor: pointer; }
.result-kicker { margin: 2.3rem 0 0.5rem; color: var(--rust); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.guide-result h3 { margin-bottom: 1rem; font-size: clamp(2.6rem, 4vw, 4.5rem); font-weight: 500; letter-spacing: -0.045em; }
.guide-result > p:not(.result-kicker):not(.whatsapp-note) { max-width: 580px; margin: 0; color: #4c5b53; font-size: 1.05rem; }
.secondary-suggestion {
  display: grid;
  gap: 0.15rem;
  margin: 1.8rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--ochre);
  background: rgba(212,154,59,0.12);
}
.secondary-suggestion span { color: #67736d; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.secondary-suggestion strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.button-whatsapp { width: fit-content; color: white; background: var(--forest); box-shadow: 0 12px 30px rgba(23,59,46,0.22); }
.button-whatsapp svg { width: 20px; fill: currentColor; }
.whatsapp-note { margin: 0.7rem 0 0 !important; color: #6b7771 !important; font-size: 0.76rem !important; }

.service-dialog {
  width: min(960px, calc(100vw - 2rem));
  max-width: none;
  max-height: min(820px, calc(100svh - 2rem));
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 1.65rem;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(5, 21, 15, 0.45);
  overflow: hidden;
}
.service-dialog::backdrop {
  background: rgba(7, 23, 17, 0.74);
  backdrop-filter: blur(8px);
}
.service-dialog[open] { animation: dialog-in 240ms ease both; }
.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  width: 100%;
  height: min(820px, calc(100svh - 2rem));
  min-height: 0;
}
.dialog-close {
  position: absolute;
  z-index: 4;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(23,48,38,0.16);
  border-radius: 50%;
  background: rgba(255,250,240,0.92);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.dialog-close:hover { background: white; transform: rotate(5deg); }
.dialog-visual { position: relative; min-height: 100%; background: var(--forest); overflow: hidden; }
.dialog-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,28,21,0.84));
  content: "";
}
.dialog-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.dialog-visual > p {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  margin: 0;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.dialog-orbit { position: absolute; z-index: 2; top: 1.5rem; left: 1.5rem; width: 70px; aspect-ratio: 1; border: 1px solid rgba(244,234,216,0.62); border-radius: 50%; }
.dialog-orbit::before { position: absolute; inset: 9px; border: 1px solid rgba(244,234,216,0.38); border-radius: 50%; content: ""; }
.dialog-orbit span { position: absolute; top: 50%; left: 50%; width: 5px; aspect-ratio: 1; border-radius: 50%; background: var(--ochre); }
.dialog-orbit span:first-child { transform: translate(-31px, -50%); }
.dialog-orbit span:last-child { transform: translate(26px, -50%); }
.dialog-content {
  align-self: stretch;
  max-height: 100%;
  padding: clamp(4rem, 4.5vw, 4.5rem) clamp(2rem, 4.5vw, 4.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--rust) rgba(23,48,38,0.08);
  scrollbar-width: thin;
}
.dialog-content::-webkit-scrollbar { width: 8px; }
.dialog-content::-webkit-scrollbar-track { background: rgba(23,48,38,0.08); }
.dialog-content::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--rust); }
.dialog-eyebrow, .dialog-label {
  margin: 0 0 0.65rem;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dialog-content h2 { max-width: 560px; margin-bottom: 1rem; font-size: clamp(2.5rem, 4.5vw, 4.25rem); font-weight: 500; letter-spacing: -0.045em; }
.dialog-intro { margin: 0 0 1.5rem; color: #4c5b53; font-size: 1.02rem; }
.dialog-detail { padding: 1rem 0; border-top: 1px solid var(--line); }
.dialog-detail:last-of-type { border-bottom: 1px solid var(--line); }
.dialog-detail p:last-child { margin: 0; color: #4c5b53; font-size: 0.9rem; }
.dialog-detail ul { display: grid; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.dialog-detail li { position: relative; padding-left: 1.15rem; color: #4c5b53; font-size: 0.9rem; }
.dialog-detail li::before { position: absolute; top: 0.65em; left: 0; width: 6px; aspect-ratio: 1; border-radius: 50%; background: var(--ochre); content: ""; }
.dialog-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.dialog-tags span {
  padding: 0.42rem 0.7rem;
  color: #3e5046;
  border: 1px solid rgba(23,48,38,0.14);
  border-radius: 999px;
  background: rgba(212,154,59,0.09);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}
.dialog-mode { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; margin: 1.25rem 0; padding: 0.85rem 1rem; border-radius: 0.8rem; background: rgba(212,154,59,0.12); }
.dialog-mode span { color: #67736d; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.dialog-mode strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; text-align: right; }
.dialog-important {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  color: #43544a;
  border-left: 3px solid var(--sage);
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgba(102,122,82,0.1);
  font-size: 0.8rem;
  line-height: 1.55;
}
.dialog-important::before {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--forest);
  content: "Importante";
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dialog-important {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  color: #536159;
  border-left: 3px solid var(--rust);
  background: rgba(169,67,41,0.08);
  font-size: 0.8rem;
}
.dialog-whatsapp { width: 100%; }
.dialog-note { margin: 0.65rem 0 0; color: #6b7771; font-size: 0.74rem; text-align: center; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem clamp(1.25rem, 6vw, 7.5rem);
  color: var(--cream);
  background: #0b241b;
}
.brand-footer .brand-mark { color: var(--forest-deep); background: var(--ochre); }
.brand-footer .brand-copy small { color: #edbc65; }
.site-footer > div:first-child > p { max-width: 510px; margin: 1.2rem 0 0; color: rgba(244,234,216,0.7); }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0.3rem 0; color: rgba(244,234,216,0.72); font-size: 0.8rem; }
.footer-meta .footer-note { color: rgba(244,234,216,0.52); font-size: 0.72rem; }
.toast {
  position: fixed;
  z-index: 300;
  right: 1rem;
  bottom: 1rem;
  max-width: min(380px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  color: white;
  border-radius: 0.8rem;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes result-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); gap: 3rem; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: span 2; grid-template-columns: 1.45fr 0.8fr; }
  .guide-card { grid-template-columns: 0.75fr 1.25fr; }
  .guide-options { grid-template-columns: 1fr; }
  .guide-options button { min-height: 0; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 76px; }
  .site-header { min-height: 72px; padding-inline: 1rem; }
  .brand-mark { width: 40px; }
  .brand-copy strong { font-size: 0.98rem; }
  .brand-copy small { font-size: 0.59rem; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
  }
  .menu-toggle span[aria-hidden="true"] { display: block; width: 18px; height: 2px; background: var(--forest); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 6rem 2rem 2rem;
    color: var(--cream);
    background: rgba(11, 36, 27, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
  .nav-cta { color: var(--forest-deep); background: var(--ochre); font-family: var(--sans) !important; font-size: 0.9rem !important; font-weight: 800 !important; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4.2rem; }
  h1 { font-size: clamp(3.05rem, 13.5vw, 5.3rem); }
  .hero-art { width: min(88vw, 470px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .tarot-gallery { min-height: 340px; }
  .tarot-gallery img { object-position: center 25%; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-intro { min-height: 480px; }
  .guide-tool { min-height: 610px; }
  .guide-options { grid-template-columns: 1fr; }
  .button-whatsapp { width: 100%; }
  .service-dialog { width: min(680px, calc(100vw - 1.2rem)); max-height: calc(100svh - 1.2rem); overflow-y: auto; }
  .dialog-shell { grid-template-columns: 1fr; height: auto; }
  .dialog-visual { min-height: 300px; max-height: 42svh; }
  .dialog-content { max-height: none; padding: 3.8rem 1.5rem 1.5rem; overflow: visible; }
  .dialog-close { position: fixed; top: calc(0.6rem + env(safe-area-inset-top)); right: 0.9rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .section-shell { padding-inline: 1rem; }
  .hero { padding-inline: 1rem; }
  .hero-art { width: 100%; }
  .service-image { aspect-ratio: 1.12; }
  .service-body { padding: 1.25rem; }
  .tarot-gallery { min-height: 300px; }
  .guide { padding-inline: 0.65rem; }
  .guide-card { border-radius: 1.5rem; }
  .guide-intro, .guide-tool { padding: 1.4rem; }
  .guide-intro { min-height: 450px; }
  .guide-options button { padding: 1rem; font-size: 0.88rem; }
  .service-dialog { width: calc(100vw - 0.7rem); max-height: calc(100svh - 0.7rem); border-radius: 1.15rem; }
  .dialog-visual { min-height: 245px; }
  .dialog-content h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .dialog-mode { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .dialog-mode strong { text-align: left; }
}

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