/* ============================================================
   KJL HOLISTICS - candlelit sanctuary design system
   Palette per Brand DNA: deep forest-sage, soft sage, warm
   cream, candlelight gold, charcoal, dusk mauve.
   ============================================================ */

:root {
  --forest: #4A5D4E;
  --forest-deep: #37463B;
  --forest-night: #2B3830;
  --sage: #8FA68E;
  --sage-soft: #C4D0C0;
  --cream: #F5F0E8;
  --cream-warm: #FBF7F0;
  --gold: #C9A96E;
  --gold-deep: #B08F52;
  --charcoal: #3A3A3A;
  --dusk: #6B5B73;
  --dusk-deep: #4E4256;
  --white: #FFFDF9;
  --shadow: 0 18px 45px -18px rgba(43, 56, 48, .35);
  --shadow-soft: 0 10px 30px -12px rgba(43, 56, 48, .22);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain texture over everything, very quiet */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

a { color: var(--forest); text-decoration-color: rgba(201, 169, 110, .6); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

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

.wrap { width: min(1150px, 92%); margin-inline: auto; }
.wrap--narrow { width: min(820px, 92%); margin-inline: auto; }

section { position: relative; }

/* ---------- kicker + heading pattern ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.kicker--light { color: var(--gold); }

.lead { font-size: 1.14rem; color: #55584f; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 240, 232, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 93, 78, .12);
  transition: box-shadow .3s var(--ease);
}
.nav.is-scrolled { box-shadow: 0 8px 30px -18px rgba(43, 56, 48, .4); }

.nav__inner {
  width: min(1250px, 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .8rem 0;
}

.nav__brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav__brand svg { width: 40px; height: 40px; flex: none; }
.nav__brand .b-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: .04em;
  color: var(--forest-deep);
  line-height: 1;
}
.nav__brand .b-tag {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .3rem;
}

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--charcoal);
  padding: .4rem 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--forest-deep); }

.nav__item { position: relative; }
.nav__item > .nav__link { display: inline-flex; align-items: center; gap: .3rem; }
.nav__item svg { width: 12px; height: 12px; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--white);
  border: 1px solid rgba(74, 93, 78, .12);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav__dropdown a span {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: #7a7d72;
}
.nav__dropdown a:hover { background: var(--cream); color: var(--forest-deep); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--forest-deep);
  transition: all .3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 61px 0 0 0;
  z-index: 55;
  background: var(--cream);
  padding: 2rem 6%;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-deep);
  text-decoration: none;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(74, 93, 78, .12);
}
.mobile-menu a.sub { font-family: var(--font-body); font-size: .95rem; font-weight: 500; padding-left: 1.2rem; }
.mobile-menu .mm-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 1.2rem 0 .2rem;
}
.mobile-menu .btn { margin-top: 1.6rem; width: 100%; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .3s var(--ease);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(176, 143, 82, .55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(176, 143, 82, .65); color: #fff; }
.btn-outline {
  border-color: var(--forest);
  color: var(--forest-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-outline--light { border-color: rgba(245, 240, 232, .55); color: var(--cream); }
.btn-outline--light:hover { background: var(--cream); color: var(--forest-deep); }
.btn-sm { padding: .6rem 1.35rem; font-size: .76rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero--inner { min-height: 62vh; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 78% 30%, rgba(201, 169, 110, .18), transparent 60%),
    linear-gradient(178deg, rgba(43, 56, 48, .38) 0%, rgba(43, 56, 48, .55) 55%, rgba(30, 40, 34, .92) 100%);
}
.hero__content { padding: 9rem 0 4.5rem; width: 100%; }
.hero h1 { color: var(--cream-warm); max-width: 14ch; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead { color: rgba(245, 240, 232, .85); max-width: 46ch; margin-top: 1.3rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero__loc svg { width: 14px; height: 14px; }

/* candle flicker dot used in hero + accents */
.flame-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 3px rgba(201, 169, 110, .8);
  animation: flicker 3.2s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px 3px rgba(201, 169, 110, .8); }
  40% { opacity: .75; box-shadow: 0 0 7px 2px rgba(201, 169, 110, .5); }
  62% { opacity: .95; }
  78% { opacity: .7; }
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust {
  background: var(--forest-night);
  color: var(--cream);
  padding: 1.6rem 0;
  border-top: 1px solid rgba(201, 169, 110, .25);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.trust__item { text-align: center; padding: .4rem .6rem; }
.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.trust__item span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; opacity: .82; }

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }
.section--cream-warm { background: var(--cream-warm); }
.section--forest {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(201, 169, 110, .1), transparent 60%),
    linear-gradient(160deg, var(--forest-deep), var(--forest-night));
  color: var(--cream);
}
.section--forest h2, .section--forest h3 { color: var(--cream-warm); }
.section--dusk {
  background:
    radial-gradient(ellipse 70% 80% at 80% 100%, rgba(201, 169, 110, .14), transparent 55%),
    linear-gradient(155deg, var(--dusk-deep), #3B3342 70%);
  color: var(--cream);
}
.section--dusk h2, .section--dusk h3 { color: var(--cream-warm); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--rev > :first-child { order: 2; }

.figure { position: relative; }
.figure img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.figure--glow::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(closest-side, rgba(201, 169, 110, .28), transparent 70%);
  z-index: -1;
}
.figure__badge {
  position: absolute;
  bottom: -1.2rem;
  right: -0.8rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: .9rem 1.3rem;
  font-size: .8rem;
  line-height: 1.45;
  border-left: 3px solid var(--gold);
}
.figure__badge strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-deep); display: block; }

/* ============================================================
   TREATMENT CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--charcoal); }
.card__img { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 56, 48, .35));
}
.card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.35rem; margin-bottom: .45rem; }
.card__body p { font-size: .88rem; color: #63665b; flex: 1; }
.card__meta {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
}
.card__meta .price { color: var(--gold-deep); letter-spacing: .04em; }
.card__meta .go { color: var(--forest); display: inline-flex; align-items: center; gap: .3rem; }
.card__meta .go svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.card:hover .card__meta .go svg { transform: translateX(4px); }

/* ============================================================
   PRICE TABLES
   ============================================================ */
.price-block { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.price-block + .price-block { margin-top: 2rem; }
.price-block__head {
  padding: 1.3rem 1.8rem;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.price-block__head h3 { color: var(--cream-warm); font-size: 1.45rem; }
.price-block__head span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.price-rows { list-style: none; }
.price-rows li {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: 1rem 1.8rem;
}
.price-rows li + li { border-top: 1px solid rgba(74, 93, 78, .1); }
.price-rows .t { font-weight: 500; }
.price-rows .t small { display: block; font-weight: 400; font-size: .8rem; color: #7a7d72; }
.price-rows .dots { flex: 1; border-bottom: 1.5px dotted rgba(74, 93, 78, .3); transform: translateY(-4px); }
.price-rows .p { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--forest-deep); white-space: nowrap; }

/* ============================================================
   QUOTES / REVIEWS
   ============================================================ */
.quote {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.3rem 2rem 1.8rem;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: .4rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .55;
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--forest-deep);
}
.quote figcaption { margin-top: 1.1rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); }
.quote figcaption span { color: #8a8d81; font-weight: 400; letter-spacing: .04em; text-transform: none; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.quote--dark { background: rgba(255, 253, 249, .06); box-shadow: none; border: 1px solid rgba(201, 169, 110, .25); }
.quote--dark blockquote { color: var(--cream-warm); }
.quote--dark figcaption { color: var(--gold); }
.quote--dark figcaption span { color: rgba(245, 240, 232, .6); }

/* big single pull quote */
.pullquote {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  color: var(--forest-deep);
}
.section--forest .pullquote blockquote, .section--dusk .pullquote blockquote { color: var(--cream-warm); }
.pullquote figcaption { margin-top: 1.4rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); }
.section--forest .pullquote figcaption, .section--dusk .pullquote figcaption { color: var(--gold); }

/* ============================================================
   RITUAL / STILLNESS STRIP
   ============================================================ */
.ritual__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.ritual__list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.ritual__list li { display: flex; gap: 1rem; align-items: flex-start; }
.ritual__list svg { width: 22px; height: 22px; flex: none; margin-top: .35rem; color: var(--gold); }
.ritual__list strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--cream-warm); }
.ritual__list p { font-size: .9rem; color: rgba(245, 240, 232, .78); }

/* ============================================================
   INFO PANELS (what to expect etc.)
   ============================================================ */
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.7rem;
  border-top: 3px solid var(--gold);
}
.panel h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.panel p, .panel li { font-size: .9rem; color: #55584f; }
.panel ul { padding-left: 1.1rem; margin-top: .4rem; display: grid; gap: .35rem; }
.panel--sage { border-top-color: var(--sage); }
.panel--dusk { border-top-color: var(--dusk); }

/* numbered journey steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.7rem 1.8rem;
  position: relative;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { font-size: .89rem; color: #55584f; }

/* ============================================================
   NOTICE / HONESTY BLOCKS
   ============================================================ */
.notice {
  background: linear-gradient(135deg, rgba(201, 169, 110, .12), rgba(143, 166, 142, .12));
  border: 1px solid rgba(201, 169, 110, .4);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
  font-size: .92rem;
}
.notice h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.notice--plain { background: var(--white); border-color: rgba(74, 93, 78, .15); box-shadow: var(--shadow-soft); }

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(74, 93, 78, .12);
}
.hours li span:first-child { font-weight: 500; }
.hours li.closed span:last-child { color: #9a9d92; font-style: italic; }
.section--forest .hours li, .section--dusk .hours li { border-color: rgba(245, 240, 232, .15); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 55% 90% at 85% 50%, rgba(201, 169, 110, .22), transparent 60%),
    radial-gradient(ellipse 40% 70% at 10% 80%, rgba(107, 91, 115, .35), transparent 65%),
    linear-gradient(160deg, var(--forest-night), #1F2A23);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream-warm); font-size: clamp(2.1rem, 4.5vw, 3.2rem); max-width: 20ch; margin-inline: auto; text-wrap: balance; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { max-width: 52ch; margin: 1.1rem auto 0; color: rgba(245, 240, 232, .8); font-size: .98rem; }
.cta-band .btn { margin-top: 2.2rem; }
.cta-band__note { font-size: .78rem !important; opacity: .65; margin-top: 1.4rem !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1B241E;
  color: rgba(245, 240, 232, .78);
  padding: 4.5rem 0 2rem;
  font-size: .88rem;
}
.footer a { color: rgba(245, 240, 232, .82); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(245, 240, 232, .12);
}
.footer__brand .b-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--cream-warm); }
.footer__brand .b-tag { display: block; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: .35rem 0 1rem; font-weight: 600; }
.footer h4 { color: var(--cream-warm); font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .5rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: .76rem;
  opacity: .65;
}
.footer address { font-style: normal; line-height: 1.8; }
.socials { display: flex; gap: .9rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(245, 240, 232, .25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: rgba(201, 169, 110, .12); }
.socials svg { width: 16px; height: 16px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 90% at 88% 10%, rgba(201, 169, 110, .16), transparent 60%),
    linear-gradient(165deg, var(--forest-deep), var(--forest-night));
  color: var(--cream);
  overflow: hidden;
}
.page-hero h1 { color: var(--cream-warm); font-size: clamp(2.4rem, 5vw, 3.7rem); max-width: 16ch; text-wrap: balance; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead { color: rgba(245, 240, 232, .82); max-width: 56ch; margin-top: 1.2rem; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.page-hero__ornament {
  position: absolute;
  right: -60px; bottom: -80px;
  width: 340px; height: 340px;
  opacity: .1;
  pointer-events: none;
}

/* breadcrumb-ish back link */
.crumb { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.6rem; }
.crumb a { color: var(--gold); text-decoration: none; }

/* ============================================================
   REVEAL ANIMATION (progressive enhancement)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .reveal[data-delay="1"] { transition-delay: .12s; }
  .js .reveal[data-delay="2"] { transition-delay: .24s; }
  .js .reveal[data-delay="3"] { transition-delay: .36s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .panel-grid, .steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 4rem 0; }
  .split, .ritual__grid { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero__content { padding-top: 7rem; }
  .figure__badge { right: .5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .price-rows li { flex-wrap: wrap; }
  .price-rows .dots { display: none; }
  .price-rows .p { margin-left: auto; }
}
