/* ============================================================
   MAMA ZOLA — site stylesheet
   Palette: layered violet night sky + candlelight gold
   Type:    Marcellus (display) · Jost (body/UI)
   ============================================================ */

:root {
  /* colour */
  --night:       #0B0714;   /* page background            */
  --abyss:       #070410;   /* footer / deepest layer     */
  --nebula:      #171028;   /* raised surfaces / cards    */
  --nebula-2:    #1E1533;   /* card gradient end          */
  --veil:        #2C1F47;   /* borders / hairlines        */
  --candle:      #E0A458;   /* primary accent (gold)      */
  --candle-deep: #C08238;   /* gold gradient end          */
  --rose:        #C4688A;   /* love-work secondary accent */
  --moonlight:   #EDE6F5;   /* primary text               */
  --mist:        #A89CBF;   /* secondary text             */
  --sage:        #8FBF9F;   /* success                    */
  --alert:       #D07777;   /* errors                     */

  /* type */
  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* rhythm */
  --space-section: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 12px;
  --ease: cubic-bezier(.25, .7, .3, 1);
  --header-h: 78px;
}

/* ---------- reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.04rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--candle); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--moonlight); }

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

::selection { background: rgba(224, 164, 88, .28); }

/* ---------- headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .012em;
}

h1 { font-size: clamp(2.7rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.38rem; }

p + p { margin-top: 1em; }

/* ---------- utilities ---------- */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container--narrow { width: min(820px, 92vw); }

.section { padding-block: var(--space-section); }
.section--tint { background: linear-gradient(180deg, var(--night), #0E0919 55%, var(--night)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--candle);
}
.eyebrow::before { content: '✶'; font-size: .9em; }

.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head .eyebrow { margin-bottom: .9rem; }
.section-head p { color: var(--mist); margin-top: 1rem; }

.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ornament: hairline · moon · hairline */
.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  color: var(--candle);
}
.orn::before, .orn::after {
  content: '';
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--veil));
}
.orn::after { background: linear-gradient(90deg, var(--veil), transparent); }
.orn svg { width: 14px; height: 14px; fill: var(--candle); opacity: .85; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 200;
  background: var(--candle);
  color: var(--night);
  padding: .6rem 1.1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--night); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .95rem 1.9rem;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease);
}

.btn-solid {
  background: linear-gradient(135deg, var(--candle), var(--candle-deep));
  color: #180F26;
}
.btn-solid:hover {
  color: #180F26;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 164, 88, .28);
}

.btn-ghost {
  border-color: rgba(224, 164, 88, .55);
  color: var(--candle);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(224, 164, 88, .1);
  border-color: var(--candle);
  color: var(--candle);
}

.btn-sm { padding: .62rem 1.3rem; font-size: .88rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 7, 20, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 7, 20, .85);
  border-bottom-color: rgba(44, 31, 71, .8);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--moonlight);
}
.brand:hover { color: var(--moonlight); }
.brand-moon { width: 26px; height: 26px; fill: var(--candle); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: .04em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.1rem);
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--mist);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .04em;
  padding-block: .4rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--candle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--moonlight); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--moonlight); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px; height: 2px;
  margin-inline: auto;
  background: var(--moonlight);
  transition: transform .35s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}

/* nebula glows */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
  pointer-events: none;
}
.hero::before {
  width: 55vw; height: 55vw;
  max-width: 760px; max-height: 760px;
  top: -18%; right: -12%;
  background: radial-gradient(circle, rgba(107, 79, 160, .3), transparent 65%);
}
.hero::after {
  width: 42vw; height: 42vw;
  max-width: 560px; max-height: 560px;
  bottom: -22%; left: -10%;
  background: radial-gradient(circle, rgba(196, 104, 138, .14), transparent 65%);
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.stars { position: absolute; background: transparent; border-radius: 50%; }
.stars--sm { width: 1px; height: 1px; animation: drift 190s linear infinite alternate; }
.stars--lg {
  width: 2px; height: 2px;
  animation: drift 150s linear infinite alternate, twinkle 7s ease-in-out infinite alternate;
}

@keyframes drift   { to { transform: translateY(-90px); } }
@keyframes twinkle { from { opacity: .35; } to { opacity: 1; } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.hero-copy .eyebrow { margin-bottom: 1.3rem; }
.hero-copy h1 { max-width: 12ch; }
.hero-copy .hero-lede {
  color: var(--mist);
  font-size: 1.12rem;
  max-width: 46ch;
  margin-top: 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* the moon */
.hero-moon {
  position: relative;
  justify-self: center;
  width: clamp(230px, 26vw, 370px);
  aspect-ratio: 1;
}
.hero-moon::before {
  content: '';
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 164, 88, .18), transparent 62%);
}
.hero-moon svg { position: relative; width: 100%; height: 100%; }
.hero-moon .moon-body { fill: url(#moonGrad); }
.hero-moon .moon-crater { fill: rgba(11, 7, 20, .12); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 5.5rem)) 0 clamp(2.8rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(107, 79, 160, .22), transparent 70%),
    var(--night);
  border-bottom: 1px solid rgba(44, 31, 71, .55);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 1rem; justify-content: center; }
.page-hero p {
  color: var(--mist);
  max-width: 56ch;
  margin: 1.1rem auto 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-block: 1px solid rgba(44, 31, 71, .55);
  background: rgba(23, 16, 40, .35);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: 2.2rem;
}
.trust-item { display: flex; align-items: center; gap: 1.1rem; }
.trust-item svg {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  stroke: var(--candle);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.14rem;
  letter-spacing: .02em;
}
.trust-item span { color: var(--mist); font-size: .92rem; }

/* ============================================================
   TAROT CARDS  (signature element)
   ============================================================ */
.tarot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.tarot {
  position: relative;
  aspect-ratio: 3 / 4.6;
  border-radius: 14px;
  background: linear-gradient(163deg, var(--nebula-2), var(--nebula) 60%, #130D22);
  border: 1px solid rgba(224, 164, 88, .34);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
}
/* inner hairline frame, like a printed card border */
.tarot::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(224, 164, 88, .17);
  border-radius: 8px;
  pointer-events: none;
}
/* gold-foil sheen that sweeps on hover */
.tarot::after {
  content: '';
  position: absolute;
  top: -20%; bottom: -20%;
  left: -30%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(237, 230, 245, .07), transparent);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform .9s var(--ease);
  pointer-events: none;
}
.tarot:hover, .tarot:focus-within {
  transform: translateY(-8px);
  border-color: rgba(224, 164, 88, .65);
  box-shadow: 0 26px 60px rgba(4, 2, 10, .65), 0 4px 22px rgba(224, 164, 88, .08);
}
.tarot:hover::after, .tarot:focus-within::after { transform: translateX(320%) skewX(-18deg); }

.tarot-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.2rem 1.7rem 1.9rem;
}

.tarot-numeral {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .34em;
  color: var(--candle);
}
.tarot-numeral::after {
  content: '';
  display: block;
  width: 34px; height: 1px;
  margin: .8rem auto 0;
  background: rgba(224, 164, 88, .45);
}

.tarot-glyph {
  margin-block: auto;
  padding-block: 1.4rem;
}
.tarot-glyph svg {
  width: 74px; height: 74px;
  stroke: var(--candle);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tarot h3 { letter-spacing: .03em; }
.tarot p {
  color: var(--mist);
  font-size: .94rem;
  line-height: 1.65;
  margin-top: .7rem;
}

.tarot-link {
  margin-top: 1.4rem;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* rose variant for love & relationship work */
.tarot--rose { border-color: rgba(196, 104, 138, .4); }
.tarot--rose::before { border-color: rgba(196, 104, 138, .2); }
.tarot--rose .tarot-numeral { color: var(--rose); }
.tarot--rose .tarot-numeral::after { background: rgba(196, 104, 138, .5); }
.tarot--rose .tarot-glyph svg { stroke: var(--rose); }
.tarot--rose .tarot-link { color: var(--rose); }
.tarot--rose .tarot-link:hover { color: var(--moonlight); }
.tarot--rose:hover, .tarot--rose:focus-within {
  border-color: rgba(196, 104, 138, .7);
  box-shadow: 0 26px 60px rgba(4, 2, 10, .65), 0 4px 22px rgba(196, 104, 138, .1);
}

/* ============================================================
   MOON-PHASE PROCESS
   ============================================================ */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  position: relative;
  counter-reset: none;
}
.phase { text-align: center; position: relative; }

.phase-orb {
  position: relative;
  width: 70px; height: 70px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 164, 88, .4);
  border-radius: 50%;
  background: var(--night);
  z-index: 1;
}
.phase-orb svg { width: 30px; height: 30px; }
.phase-orb .p-fill { fill: var(--candle); }
.phase-orb .p-line { fill: none; stroke: var(--candle); stroke-width: 1.4; }

/* connecting hairline behind the orbs */
.phase:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% + 35px);
  width: calc(100% - 70px + 2.4rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(224, 164, 88, .35), rgba(44, 31, 71, .8));
}

.phase-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--candle);
}
.phase h3 { margin-top: .45rem; }
.phase p {
  color: var(--mist);
  font-size: .95rem;
  max-width: 30ch;
  margin: .7rem auto 0;
}

/* ============================================================
   ABOUT TEASER + PORTRAIT FRAME
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 400px;
  width: 100%;
  justify-self: center;
  border: 1px solid rgba(224, 164, 88, .38);
  border-radius: 180px 180px 14px 14px; /* arched, like a window or card */
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(107, 79, 160, .3), transparent 70%),
    linear-gradient(180deg, var(--nebula-2), #120C20);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224, 164, 88, .16);
  border-radius: 170px 170px 8px 8px;
  pointer-events: none;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.portrait-placeholder { text-align: center; padding: 2rem; }
.portrait-placeholder svg {
  width: 88px; height: 88px;
  margin-inline: auto;
  fill: rgba(224, 164, 88, .8);
}
.portrait-placeholder span {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .1em;
}

.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy p { color: var(--mist); margin-top: 1.1rem; }
.about-copy .btn { margin-top: 2rem; }

.about-quote {
  margin-top: 1.6rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--candle);
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--moonlight);
}

/* ============================================================
   QUOTES / TESTIMONIALS
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.quote {
  position: relative;
  background: linear-gradient(165deg, var(--nebula-2), var(--nebula));
  border: 1px solid rgba(44, 31, 71, .9);
  border-radius: var(--radius);
  padding: 2.4rem 1.9rem 1.9rem;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.quote:hover { border-color: rgba(224, 164, 88, .35); transform: translateY(-4px); }

.quote::before {
  content: '“';
  position: absolute;
  top: .4rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: rgba(224, 164, 88, .5);
  line-height: 1;
}
.quote p { font-size: .98rem; color: var(--moonlight); }
.quote footer {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(44, 31, 71, .8);
  font-size: .87rem;
  color: var(--mist);
  letter-spacing: .04em;
}
.quote footer strong { color: var(--candle); font-weight: 500; }

.quote-note {
  margin-top: 2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--mist);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(107, 79, 160, .24), transparent 70%),
    linear-gradient(180deg, var(--night), #0E0919);
  border-block: 1px solid rgba(44, 31, 71, .55);
  overflow: hidden;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--mist); max-width: 52ch; margin: 1.1rem auto 0; }
.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* ============================================================
   SERVICE DETAIL SECTIONS (services.php)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(2.8rem, 6vw, 4.2rem);
}
.service-detail + .service-detail { border-top: 1px solid rgba(44, 31, 71, .6); }

.service-detail .tarot { max-width: 320px; }

.service-copy h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.service-copy > p { color: var(--mist); margin-top: 1rem; }

.service-list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: .85rem;
}
.service-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--moonlight);
}
.service-list li::before {
  content: '✶';
  position: absolute;
  left: 0; top: .1em;
  color: var(--candle);
  font-size: .8em;
}
.service-list li span { display: block; color: var(--mist); font-size: .92rem; }

.service-detail--rose .service-list li::before { color: var(--rose); }

.service-note {
  margin-top: 1.7rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--candle);
  background: rgba(23, 16, 40, .5);
  border-radius: 0 8px 8px 0;
  font-size: .93rem;
  color: var(--mist);
}
.service-detail--rose .service-note { border-left-color: var(--rose); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; }

.faq details {
  background: linear-gradient(165deg, var(--nebula-2), var(--nebula));
  border: 1px solid rgba(44, 31, 71, .9);
  border-radius: 10px;
  transition: border-color .3s var(--ease);
}
.faq details[open] { border-color: rgba(224, 164, 88, .4); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: .02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--candle);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 1.4rem 1.3rem;
  color: var(--mist);
  font-size: .96rem;
}

/* ============================================================
   VALUES (about.php)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.value-card {
  background: linear-gradient(165deg, var(--nebula-2), var(--nebula));
  border: 1px solid rgba(44, 31, 71, .9);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.value-card:hover { border-color: rgba(224, 164, 88, .35); transform: translateY(-4px); }
.value-card svg {
  width: 34px; height: 34px;
  stroke: var(--candle);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--mist); font-size: .95rem; margin-top: .6rem; }

.prose p { color: var(--mist); }
.prose p strong { color: var(--moonlight); font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  background: linear-gradient(165deg, var(--nebula-2), var(--nebula));
  border: 1px solid rgba(44, 31, 71, .9);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .5rem;
}
.field label .req { color: var(--candle); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(11, 7, 20, .65);
  border: 1px solid rgba(44, 31, 71, .95);
  border-radius: 8px;
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: .85rem 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 160px; resize: vertical; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23E0A458' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field select option { background: var(--nebula); color: var(--moonlight); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--candle);
  box-shadow: 0 0 0 3px rgba(224, 164, 88, .14);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(168, 156, 191, .55); }

.field.has-error input,
.field.has-error textarea { border-color: var(--alert); }
.field-error {
  display: block;
  margin-top: .45rem;
  font-size: .85rem;
  color: var(--alert);
}

/* honeypot — invisible to people, tempting to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.notice {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: .96rem;
  border: 1px solid;
}
.notice svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: .15rem; }
.notice--ok {
  background: rgba(143, 191, 159, .1);
  border-color: rgba(143, 191, 159, .45);
  color: var(--sage);
}
.notice--ok svg { stroke: var(--sage); fill: none; stroke-width: 1.8; }
.notice--err {
  background: rgba(208, 119, 119, .1);
  border-color: rgba(208, 119, 119, .45);
  color: var(--alert);
}
.notice--err svg { stroke: var(--alert); fill: none; stroke-width: 1.8; }

/* contact aside */
.contact-aside h2 { font-size: 1.55rem; }
.contact-aside > p { color: var(--mist); margin-top: .8rem; }

.contact-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 1.15rem;
}
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-list .c-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 164, 88, .4);
  border-radius: 50%;
  background: rgba(23, 16, 40, .6);
}
.contact-list .c-icon svg {
  width: 19px; height: 19px;
  stroke: var(--candle);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list strong {
  display: block;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist);
}
.contact-list a, .contact-list span.c-val { color: var(--moonlight); font-size: .98rem; }
.contact-list a:hover { color: var(--candle); }

.aside-note {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border: 1px dashed rgba(224, 164, 88, .35);
  border-radius: 10px;
  font-size: .92rem;
  color: var(--mist);
}
.aside-note strong { color: var(--candle); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--abyss);
  border-top: 1px solid rgba(44, 31, 71, .6);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}

.footer-brand p {
  color: var(--mist);
  font-size: .95rem;
  margin-top: 1.1rem;
  max-width: 34ch;
}

.footer-heading {
  font-size: .8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--candle);
  margin-bottom: 1.1rem;
}

.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-links li, .footer-links a { color: var(--mist); font-size: .95rem; }
.footer-links a:hover { color: var(--candle); }

.footer-base {
  border-top: 1px solid rgba(44, 31, 71, .55);
  padding-block: 1.6rem;
  display: grid;
  gap: .6rem;
}
.footer-disclaimer { font-size: .82rem; color: rgba(168, 156, 191, .75); max-width: 78ch; }
.footer-copy { font-size: .85rem; color: var(--mist); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--nebula-2);
  border: 1px solid rgba(44, 31, 71, .9);
  box-shadow: 0 10px 30px rgba(4, 2, 10, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #25D366; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); border-color: rgba(37, 211, 102, .5); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy h1, .hero-copy .hero-lede { margin-inline: auto; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-moon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    opacity: .18;
    z-index: -1;
    width: min(70vw, 420px);
  }

  .about-split { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail .tarot { margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(11, 7, 20, .97);
    border-bottom: 1px solid var(--veil);
    padding: 1.4rem 4vw 2rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s var(--ease), opacity .35s var(--ease), visibility .35s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .3rem; }
  .nav-link { display: block; padding: .8rem .4rem; font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-link.is-active { color: var(--candle); }
  .nav-cta-item { margin-top: .8rem; }
  .nav-cta-item .btn { display: block; text-align: center; }

  .trust-grid { grid-template-columns: 1fr; gap: 1.3rem; }

  .phases { grid-template-columns: 1fr; gap: 2.6rem; }
  .phase:not(:last-child)::after {
    top: calc(70px + 1rem);
    left: 50%;
    width: 1px;
    height: 2rem;
    background: linear-gradient(180deg, rgba(224, 164, 88, .35), rgba(44, 31, 71, .8));
  }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

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

/* ============================================================
   STATIC-SITE ADDITIONS
   ============================================================ */

/* status banners on contact.html start hidden; js/main.js
   reveals the right one based on ?status= in the URL */
.notice[hidden] { display: none !important; }

/* thank-you page */
.thanks-hero { text-align: center; }
.thanks-hero .cta-actions { justify-content: center; margin-top: 2.2rem; }
.thanks-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 164, 88, .1);
  border: 1px solid rgba(224, 164, 88, .5);
  box-shadow: 0 0 40px rgba(224, 164, 88, .15);
}
.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--candle);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- service artwork ---- */
.tarot-media {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  margin: 1.15rem 0 1.2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(224, 164, 88, .28);
  position: relative;
}
.tarot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tarot-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 7, 20, 0) 55%, rgba(11, 7, 20, .38));
  pointer-events: none;
}
.service-photo {
  margin: 2.4rem 0 0;
}
.service-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(224, 164, 88, .3);
  box-shadow: 0 30px 70px rgba(4, 2, 10, .55), 0 0 60px rgba(224, 164, 88, .06);
}
