/* ============================================================
   Your Panacea — design system
   Palette drawn from the tree-of-life brand mark:
   ivory canvas, forest green, sage, muted gold accent.
   ============================================================ */

:root {
  --ivory: #f5f1e8;
  --ivory-2: #ece6d8;
  --forest: #152a1e;
  --forest-2: #1e3a29;
  --green: #3c6a49;
  --sage: #94b08c;
  --gold: #ad8a47;
  --gold-light: #cfb37e;
  --ink: #1b2a20;
  --ink-soft: #45554a;
  --line: rgba(27, 42, 32, 0.16);
  --line-light: rgba(245, 241, 232, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

::selection { background: var(--green); color: var(--ivory); }

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

em { font-style: italic; }

/* ---------- Grain + cursor ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 9s steps(10) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 95;
  pointer-events: none;
  opacity: 0;
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), margin 0.25s var(--ease-out), opacity 0.3s ease;
}
.cursor.is-active {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: transparent;
  border: 1px solid var(--gold);
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor, .grain { display: none; }
}

/* ---------- Shared image reveal frames ---------- */
[data-img-reveal] { overflow: hidden; }
[data-img-reveal] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.preloader__mark { width: 76px; height: auto; }
.preloader__word {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn--solid { background: var(--forest-2); color: var(--ivory); border: 1px solid var(--forest-2); }
.btn--solid:hover { background: var(--green); border-color: var(--green); }
.btn--ghost { background: transparent; color: var(--forest-2); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--forest-2); }
.btn--gold { background: var(--gold); color: var(--forest); border: 1px solid var(--gold); font-weight: 600; }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--nav { background: var(--forest-2); color: var(--ivory); border: 1px solid var(--forest-2); min-height: 42px; padding: 0.5rem 1.4rem; white-space: nowrap; }
.btn--nav:hover { background: var(--green); border-color: var(--green); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav__mark { width: 38px; height: auto; }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--forest-2);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.nav__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 0.45rem 0.15rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--forest-2); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.25rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}
.hero__leaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.hero__content {
  grid-column: 1 / 9;
  grid-row: 1;
  z-index: 2;
}
.hero__media {
  grid-column: 8 / 13;
  grid-row: 1;
  z-index: 1;
  height: clamp(420px, 72vh, 740px);
  border-radius: 999px 999px 18px 18px;
}
.hero__media img { height: 115%; }
.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero__creds { color: var(--gold); white-space: nowrap; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 8.6vw, 7.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--forest-2);
  margin-bottom: clamp(1.6rem, 3.5vh, 2.6rem);
}
/* mask window extends past the baseline so descenders (y, g) never clip
   or collide with the next line; negative margin keeps net leading intact */
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.hero__line > span { display: block; will-change: transform; }
.hero__line--accent em, .contact__title em { color: var(--gold); }
.hero__sub {
  max-width: 34em;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll-line {
  width: 64px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--forest);
  color: var(--gold-light);
  overflow: hidden;
  padding: 1.05rem 0;
  border-block: 1px solid var(--forest);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--sage);
  margin: 0 1.6rem;
}

/* ---------- Leaf band ---------- */
.band {
  height: clamp(220px, 42vh, 420px);
  overflow: hidden;
}
.band img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  margin-top: -15%;
}

/* ---------- Quote ---------- */
.quote {
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
  padding: clamp(6rem, 14vh, 10rem) clamp(1.25rem, 6vw, 4rem) clamp(5rem, 12vh, 9rem);
}
.quote__label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2.6rem;
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  line-height: 1.18;
  max-width: 18em;
  margin: 0 auto 2.2rem;
}
.quote__text .w { opacity: 0.18; transition: opacity 0.4s ease; }
.quote__attr {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3.2rem;
}
.quote__note {
  max-width: 46em;
  margin: 0 auto;
  font-weight: 300;
  font-size: 0.98rem;
  color: rgba(245, 241, 232, 0.72);
}
.quote__rule {
  width: 64px;
  height: 1px;
  margin: 3.4rem auto;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.65;
}
.quote__text--sm {
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.24;
  max-width: 24em;
  margin-bottom: 1.6rem;
}
.quote__attr--sub {
  margin-bottom: 0;
}

/* ---------- Consultation-process intro (whole-person quote + you-centred lead) ---------- */
.process__intro {
  max-width: 52rem;
  margin: 0 auto clamp(2.8rem, 6vh, 4.5rem);
  text-align: center;
}
.process__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--forest-2);
  max-width: 24em;
  margin: 0 auto 1.1rem;
}
.process__quote-attr {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.process__lead {
  max-width: 40em;
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Shared section scaffolding ---------- */
.section {
  padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}
.section--dark {
  max-width: none;
  background: var(--forest-2);
  color: var(--ivory);
}
.section--tint {
  max-width: none;
  background: var(--ivory-2);
}
.section__head { max-width: 1280px; margin: 0 auto clamp(2.5rem, 6vh, 4.5rem); }
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section__eyebrow--light { color: var(--gold-light); }
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: inherit;
}
.section__title em { color: var(--green); }
.section--dark .section__title em { color: var(--gold-light); }
.section__intro {
  max-width: 44em;
  margin-top: 1.6rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.45;
  font-weight: 500;
}

/* ---------- Why ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.why__copy p + p { margin-top: 1.4rem; }
.why__copy .lead { margin-bottom: 1.8rem; color: var(--forest-2); }
.why__copy p:not(.lead) { color: var(--ink-soft); font-weight: 300; }
.why__side { display: flex; flex-direction: column; gap: 2.4rem; }
.why__media {
  border-radius: 999px 999px 18px 18px;
  height: clamp(320px, 38vw, 480px);
  max-width: 400px;
}
.why__media img { height: 115%; }
.why__benefits { list-style: none; }
.why__benefits li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 500;
  color: var(--forest-2);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.why__benefits li i {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ---------- About ---------- */
.about__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about__media { position: sticky; top: 7rem; }
.about__frame {
  border-radius: 240px 240px 18px 18px;
  overflow: hidden;
  position: relative;
}
.about__frame img { width: 100%; height: auto; }
.about__caption {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
}
.about__caption span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.about__copy .section__title { margin-bottom: 2rem; }
.about__copy .lead { color: var(--ivory); margin-bottom: 1.6rem; }
.about__copy p:not(.lead) {
  color: rgba(245, 241, 232, 0.74);
  font-weight: 300;
}
.about__copy p + p { margin-top: 1.3rem; }
.about__close {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ivory);
}
.about__close em {
  font-style: italic;
  color: var(--gold-light);
}

.principles { list-style: none; margin-top: 2.8rem; }
.principle {
  display: flex;
  gap: 1.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
}
.principle__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  min-width: 2.2rem;
  padding-top: 0.2rem;
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.principle p { color: rgba(245, 241, 232, 0.74); font-weight: 300; font-size: 0.98rem; }

/* ---------- Services / accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 3vh, 2rem) 0.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-out);
}
.accordion__head:hover { padding-left: 0.9rem; }
.accordion__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 2rem;
}
.accordion__title {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: var(--forest-2);
  transition: color 0.25s ease;
}
.accordion__head:hover .accordion__title { color: var(--green); }
.accordion__icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--forest-2);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), background-color 0.25s ease;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__head[aria-expanded="true"] .accordion__icon { background: var(--forest-2); border-color: var(--forest-2); }
.accordion__head[aria-expanded="true"] .accordion__icon::before,
.accordion__head[aria-expanded="true"] .accordion__icon::after { background: var(--ivory); }
.accordion__head[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.accordion__body > p {
  overflow: hidden;
  max-width: 52em;
  color: var(--ink-soft);
  font-weight: 300;
  padding-left: clamp(3rem, 6vw, 4.6rem);
}
.accordion__item.is-open .accordion__body { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__body > p { padding-bottom: 1.8rem; }
.services__note {
  margin-top: 3rem;
  max-width: 46em;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Process ---------- */
.steps {
  list-style: none;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.6rem;
}
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-2);
  margin-bottom: 0.7rem;
}
.step p { font-size: 0.94rem; font-weight: 300; color: var(--ink-soft); }

.pricing {
  max-width: 1280px;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.price-card {
  background: var(--forest-2);
  color: var(--ivory);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  text-align: center;
}
.price-card__label {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.price-card__meta { font-size: 0.9rem; font-weight: 300; color: rgba(245, 241, 232, 0.75); }

/* ---------- Journal ---------- */
.journal__card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
.journal__media {
  grid-row: 1 / 3;
  border-radius: 999px 999px 18px 18px;
  height: clamp(380px, 46vw, 560px);
  position: sticky;
  top: 7rem;
}
.journal__media img { height: 115%; }
.journal__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.journal__copy .lead { color: var(--forest-2); margin-bottom: 1.6rem; }
.journal__copy p:not(.lead) { color: var(--ink-soft); font-weight: 300; }
.journal__copy p + p { margin-top: 1.3rem; }
.journal__pillars div {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.journal__pillars dt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.journal__pillars dd { font-size: 0.96rem; font-weight: 300; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact {
  text-align: center;
  padding: clamp(6rem, 14vh, 10rem) clamp(1.25rem, 5vw, 4rem);
}
.contact__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2.4rem;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 2.6rem;
}
.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2.6rem;
  margin-bottom: 2.6rem;
}
.contact__link {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  text-decoration: none;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-light);
  padding: 0.3rem 0.1rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact__link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.creds {
  /* full-bleed ivory strip: negate the section's side padding (full width) and its
     bottom padding (sit flush against the footer) */
  margin: clamp(3rem, 7vh, 4.5rem) calc(-1 * clamp(1.25rem, 5vw, 4rem)) calc(-1 * clamp(6rem, 14vh, 10rem));
  background: var(--ivory);
  padding: clamp(2.4rem, 6vh, 3.6rem) clamp(1.25rem, 5vw, 4rem);
}
.creds__label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}
.creds__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem 2.4rem;
}
.creds__row img {
  box-sizing: content-box;
  height: 92px;
  width: auto;
  background: #fff;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest);
  color: rgba(245, 241, 232, 0.78);
  padding: 3.5rem clamp(1.25rem, 5vw, 4rem) 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
}
.footer__brand img { margin-bottom: 0.8rem; }
.footer__brand p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivory);
}
.footer__tag {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage) !important;
  margin-top: 0.3rem;
}
.footer__meta { text-align: right; font-size: 0.92rem; font-weight: 300; }
.footer__meta p + p { margin-top: 0.45rem; }
.footer__meta a { color: inherit; text-decoration-color: var(--gold); }
.footer__meta a:hover { color: var(--gold-light); }
.footer__legal {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
}
.footer__made {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.42);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.footer__made:hover { opacity: 1; }
.footer__made img {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.9;
}

/* ---------- Consultation options (4-up, 2026-07-06) ---------- */
.pricing--four { grid-template-columns: repeat(4, 1fr); }
.price-card--highlight {
  background: var(--forest);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 44px -22px rgba(173, 138, 71, 0.55);
}
.price-card__cta {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.price-card__cta:hover { color: var(--ivory); border-color: var(--ivory); }

/* ---------- Journal entry picker ---------- */
.journal__card[hidden] { display: none; }
.journal__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
}
.journal__picker {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.journal__picker > span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.journal__picker select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-2);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 2.8rem 0.7rem 1.3rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ad8a47' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  transition: border-color 0.25s ease;
}
.journal__picker select:hover, .journal__picker select:focus { border-color: var(--gold); outline: none; }

/* ---------- Contact form ---------- */
.contact__intro {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.85);
  margin-bottom: 2.8rem;
}
.contact__intro .contact__link { font-family: var(--font-body); font-size: inherit; }
.cform {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.cform__field {
  display: block;
  margin-bottom: 1.2rem;
}
.cform__field > span {
  display: block;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 232, 0.85);
  margin-bottom: 0.5rem;
}
.cform__field input,
.cform__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ivory);
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.cform__field input:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 241, 232, 0.09);
}
.cform__subhead {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold-light);
  margin: 1.6rem 0 1.3rem;
}
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cform__submit { margin-top: 0.6rem; width: 100%; }
.cform__status {
  min-height: 1.4em;
  margin-top: 1.1rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--gold-light);
}
.cform__status.is-error { color: #d9a08a; }
.cform.is-sending .cform__submit { opacity: 0.55; pointer-events: none; }

/* ---------- Testimonials page ---------- */
.tst-hero {
  padding: clamp(9rem, 18vh, 12rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vh, 5rem);
  text-align: center;
}
.tst-hero .section__intro { margin: 1.4rem auto 0; }
.tst-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(5rem, 10vh, 8rem);
  list-style: none;
}
.tst {
  padding: clamp(2.6rem, 6vh, 4rem) 0;
}
.tst + .tst { border-top: 1px solid var(--line); }
.tst__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.tst blockquote p {
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.tst blockquote p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--forest-2);
}
.tst blockquote p + p { margin-top: 1.2rem; }
.tst__attr {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.tst-cta {
  text-align: center;
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.25rem, 5vw, 4rem);
}
.tst-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 2rem;
}
.tst-cta__title em { color: var(--gold-light); }

@media (max-width: 1023px) {
  .pricing--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .cform__row { grid-template-columns: 1fr; gap: 0; }
  .journal__head { align-items: flex-start; flex-direction: column; }
}

/* ---------- Reveal helpers (JS sets initial states) ---------- */
.reveal-up, .reveal-line { will-change: transform, opacity; }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 420px; }
}

@media (max-width: 767px) {
  body { font-size: 1rem; }
  .nav__links { display: none; }
  .nav__name { font-size: 1.15rem; }
  .btn--nav { font-size: 0.8rem; padding: 0.45rem 1.05rem; min-height: 44px; }
  .hero { padding-bottom: 6rem; }
  .hero__inner { display: block; }
  .hero__media {
    height: auto;
    aspect-ratio: 3 / 3.6;
    max-width: 340px;
    margin: 2.4rem auto 0;
  }
  .hero__scroll { bottom: 1.6rem; }
  .why__grid, .journal__card { grid-template-columns: 1fr; }
  .why__media { max-width: 100%; height: 64vw; }
  .journal__media { position: static; grid-row: auto; height: 72vw; }
  .journal__pillars { grid-template-columns: 1fr; gap: 0; }
  .steps, .pricing { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer__meta { text-align: left; }
  .accordion__body > p { padding-left: 0; }
  .about__frame { border-radius: 160px 160px 14px 14px; }
}

/* ---------- Reduced motion ---------- */
@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;
  }
  .quote__text .w { opacity: 1; }
}

/* ---------- Consultation case-form page ---------- */
.case-hero {
  padding: clamp(9rem, 18vh, 12rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vh, 5rem);
  text-align: center;
}
.case-hero .section__intro { margin: 1.4rem auto 0; }
.case-hero__note {
  max-width: 620px;
  margin: 1.3rem auto 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.case-hero__note a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.caseform { padding-top: clamp(3.5rem, 8vh, 6rem); }
.cform--case { max-width: 760px; }
.cform--case .cform__subhead { margin-top: 2.6rem; }
.cform--case .cform__subhead:first-child { margin-top: 0; }
.cform__note {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.62);
  margin: -0.6rem 0 1.1rem;
}
.cform__field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ivory);
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cform__field select:focus { outline: none; border-color: var(--gold); background: rgba(245, 241, 232, 0.09); }
.cform__field select option { color: var(--forest); background: var(--ivory); }
.cform__field input[type="date"] { color-scheme: dark; }
.cform__choice {
  border: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.cform__choice legend {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 232, 0.85);
  margin-bottom: 0.6rem;
  padding: 0;
}
.cform__radios { display: flex; gap: 1.8rem; }
.cform__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(245, 241, 232, 0.85);
  cursor: pointer;
}
.cform__radio input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.entry-list { margin-bottom: 0.9rem; }
.entry {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.03);
  padding: 1.1rem 1.1rem 0;
  margin-bottom: 1rem;
}
.entry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.2rem;
}
.entry__remove {
  position: absolute;
  top: 0.55rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 232, 0.55);
  cursor: pointer;
  transition: color 0.2s ease;
}
.entry__remove:hover { color: var(--gold-light); }
.entry-add {
  display: inline-block;
  background: none;
  border: 1px dashed var(--line-light);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(245, 241, 232, 0.8);
  padding: 0.6rem 1.3rem;
  margin-bottom: 1.4rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.entry-add:hover { border-color: var(--gold); color: var(--gold-light); }
.cform__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.6rem 0 1.4rem;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.78);
  cursor: pointer;
}
.cform__consent input {
  accent-color: var(--gold);
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .entry__grid { grid-template-columns: 1fr; }
}
