/* ════════════════════════════════════════════════
   Angie Bennett — editorial, light, elegant
   ════════════════════════════════════════════════ */

:root {
  --ivory:      #FBF8F2;
  --ivory-2:    #F3EEE4;
  --ink:        #2A2723;
  --ink-soft:   #5C564E;
  --muted:      #938B7E;
  --bronze:     #9A7B4F;
  --bronze-dk:  #836439;
  --sage:       #8E9686;
  --line:       #E3DBCC;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

/* subtle paper grain via layered gradients */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(154,123,79,.07), transparent 55%),
    radial-gradient(90% 70% at -10% 110%, rgba(142,150,134,.08), transparent 50%);
}

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

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

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 248, 242, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__signature { height: 30px; width: auto; opacity: .9; }
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a {
  font-size: 14px; letter-spacing: .02em; color: var(--ink-soft);
  position: relative; transition: color .25s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--bronze); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--bronze); color: var(--bronze-dk);
  padding: 9px 20px; border-radius: 100px; font-weight: 500;
  transition: background .3s var(--ease), color .3s;
}
.nav__cta:hover { background: var(--bronze); color: var(--ivory); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { bottom: 4px; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 168px 32px 90px;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bronze-dk); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--ink);
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
  margin-top: .08em;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 34px 0 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), background .3s, color .3s, box-shadow .3s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn--solid {
  background: var(--ink); color: var(--ivory); border: 1px solid var(--ink);
  box-shadow: 0 10px 30px -12px rgba(42,39,35,.5);
}
.btn--solid:hover { background: var(--bronze-dk); border-color: var(--bronze-dk); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* portrait placeholders */
.portrait {
  position: relative;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--ivory-2), #E8E0D1);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
}
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(154,123,79,.10), transparent 60%);
}
.portrait--tall { aspect-ratio: 4 / 5; }
.portrait--wide { aspect-ratio: 5 / 4; }
.portrait__hint {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--muted); text-align: center; z-index: 1; line-height: 1.4;
}
.portrait__hint small { font-family: var(--sans); font-style: normal; font-size: .68rem; letter-spacing: .04em; opacity: .7; }

/* real photo: covers the placeholder when the file loads, hides itself if missing */
.portrait__img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.portrait__img.is-missing { display: none; }
.about__aside .portrait__img { object-position: center center; }

.hero__portrait { position: relative; }
.hero__portrait .portrait--tall { box-shadow: 0 40px 80px -40px rgba(42,39,35,.35); }
.hero__caption {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: 16px; text-align: right;
}

.hero__scroll {
  position: absolute; left: 32px; bottom: 26px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll span { width: 46px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll span::after { content: ""; position: absolute; inset: 0; background: var(--bronze); animation: slide 2.4s var(--ease) infinite; }
@keyframes slide { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(100%);} }

/* ── SECTIONS ──────────────────────────────────── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 32px;
}
.section__head { margin-bottom: 56px; max-width: 760px; }
.section__index {
  display: block; font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bronze-dk); margin-bottom: 18px;
}
.section__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.01em;
}

/* about */
.about { border-top: 1px solid var(--line); }
.about__body { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: start; }
.about__lead p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 22px; }
.about__lead blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.3;
  color: var(--ink); margin: 30px 0;
}
.about__aside .portrait--wide { box-shadow: 0 30px 60px -36px rgba(42,39,35,.3); }

/* journey timeline */
.journey { border-top: 1px solid var(--line); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tl { padding: 8px 34px; border-left: 1px solid var(--line); }
.tl:first-child { padding-left: 0; border-left: 0; }
.tl h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.35rem;
  margin-bottom: 22px; color: var(--ink);
}
.tl ul { list-style: none; }
.tl li {
  position: relative; padding-left: 22px; margin-bottom: 16px;
  font-size: .98rem; color: var(--ink-soft);
}
.tl li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bronze); opacity: .7;
}

/* beyond */
.beyond { border-top: 1px solid var(--line); }
.beyond__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 40px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; }
.chips li {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--ink); padding: 12px 26px;
  border: 1px solid var(--line); border-radius: 100px;
  background: rgba(255,255,255,.4);
  cursor: default;
}

/* contact */
.contact { border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact__intro p { color: var(--ink-soft); margin: 16px 0 32px; font-size: 1.08rem; max-width: 38ch; }
.contact__list { list-style: none; }
.contact__list li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.contact__list li:last-child { border-bottom: 1px solid var(--line); }
.contact__list span {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); width: 78px; flex: none;
}
.contact__list a { font-size: 1.05rem; transition: color .25s; }
.contact__list a:hover { color: var(--bronze-dk); }

.contact__form { display: grid; gap: 18px; }
.contact__form label { display: grid; gap: 8px; }
.contact__form span {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 14px 16px; transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none; border-color: var(--bronze);
  background: #fff; box-shadow: 0 0 0 3px rgba(154,123,79,.12);
}
.contact__form textarea { resize: vertical; }

/* footer */
.footer {
  text-align: center;
  padding: 72px 32px 56px;
  border-top: 1px solid var(--line);
  background: var(--ivory-2);
}
.footer__sig { height: 42px; width: auto; margin: 0 auto 22px; opacity: .85; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); margin-bottom: 14px; }
.footer__fine { font-size: 12.5px; letter-spacing: .04em; color: var(--muted); }

/* ── reveal animation ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════
   PROGRAM PAGE — The Alcohol Reset
   ════════════════════════════════════════════════ */

.nav__links a.is-current { color: var(--bronze-dk); }
.nav__links a.is-current::after { width: 100%; background: var(--bronze); }

.section__intro { font-size: 1.12rem; color: var(--ink-soft); margin-top: 22px; max-width: 60ch; }
.btn--cream { background: var(--ivory); color: var(--ink); border: 1px solid var(--ivory); }
.btn--cream:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--ivory); border: 1px solid rgba(251,248,242,.4); }
.btn--outline-light:hover { border-color: var(--ivory); transform: translateY(-2px); }

/* program hero */
.prog-hero { max-width: var(--maxw); margin: 0 auto; padding: 168px 32px 80px; }
.prog-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.prog-hero__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.8rem, 6.5vw, 5.6rem); line-height: .98; letter-spacing: -.015em; }
.prog-hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 42ch; margin: 30px 0 38px; }
.prog-hero__lede em { font-style: italic; color: var(--bronze-dk); }
.prog-hero__visual .portrait--tall { box-shadow: 0 40px 80px -40px rgba(42,39,35,.35); }
.portrait__hint { padding: 8px; }

/* who */
.who { border-top: 1px solid var(--line); }
.who__body { display: grid; grid-template-columns: 1.4fr .6fr; gap: 56px; align-items: start; }
.who__col p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 20px; }
.who__col strong { color: var(--ink); font-weight: 500; }
.who__note { }
.who__note p { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.3; color: var(--ink); margin-bottom: 12px; }

/* compare */
.different { border-top: 1px solid var(--line); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
.compare__card { border-radius: 8px; padding: 38px 34px; }
.compare__card--muted { background: var(--ivory-2); border: 1px solid var(--line); }
.compare__card--accent { background: var(--ink); color: var(--ivory); }
.compare__card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin-bottom: 22px; }
.compare__card--accent h3 { color: var(--bronze-l, #C6A878); }
.compare__card ul { list-style: none; }
.compare__card li { position: relative; padding-left: 26px; margin-bottom: 14px; font-size: 1rem; }
.compare__card--muted li { color: var(--ink-soft); }
.compare__card--muted li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.compare__card--accent li::before { content: "✓"; position: absolute; left: 0; color: var(--bronze); }

/* pillars */
.pillars { border-top: 1px solid var(--line); }
.pillar-list { list-style: none; counter-reset: none; }
.pillar { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; }
.pillar:first-child { border-top: 0; }
.pillar__no { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--bronze); }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin-bottom: 12px; }
.pillar p { color: var(--ink-soft); max-width: 70ch; }

/* phases */
.phases { border-top: 1px solid var(--line); }
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.phase { border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px; background: rgba(255,255,255,.4); }
.phase__weeks { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-dk); }
.phase h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 12px 0 14px; line-height: 1.1; }
.phase__tag { font-family: var(--serif); font-style: italic; color: var(--ink); margin-bottom: 16px; }
.phase p { color: var(--ink-soft); font-size: .98rem; }
.phase__out { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.phase__out li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: .92rem; color: var(--ink-soft); font-style: italic; }
.phase__out li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }

/* weekly table */
.weekly { border-top: 1px solid var(--line); }
.wtable { border-top: 1px solid var(--line); }
.wrow { display: grid; grid-template-columns: 56px 1.1fr 2fr 1.6fr; gap: 24px; padding: 22px 4px; border-bottom: 1px solid var(--line); align-items: start; }
.wrow--head { border-bottom: 2px solid var(--ink); padding-bottom: 14px; }
.wrow--head span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.wrow .wk { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--bronze); }
.wrow--head .wk { font-family: var(--sans); font-style: normal; font-size: 11px; }
.wrow .ws { font-weight: 500; color: var(--ink); }
.wrow .wf { color: var(--ink-soft); font-size: .96rem; }
.wrow .wt { color: var(--muted); font-size: .9rem; }

/* included */
.included { border-top: 1px solid var(--line); }
.inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.inc { background: var(--ivory); padding: 30px 30px; }
.inc h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 10px; }
.inc p { color: var(--ink-soft); font-size: .96rem; }

/* format / investment */
.format { border-top: 1px solid var(--line); }
.format__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.spec { display: grid; gap: 0; }
.spec > div { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); }
.spec > div:last-child { border-bottom: 1px solid var(--line); }
.spec dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.spec dd { color: var(--ink-soft); font-size: 1.02rem; }
.spec__price dd { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }

/* program about */
.prog-about { border-top: 1px solid var(--line); }
.prog-about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.prog-about__visual .portrait { box-shadow: 0 30px 60px -36px rgba(42,39,35,.3); }
.prog-about__text p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 18px; }

/* discovery CTA */
.discovery { background: var(--ink); color: var(--ivory); padding: clamp(80px,10vw,130px) 32px; text-align: center; }
.section__index--light { color: var(--bronze-l, #C6A878); }
.discovery__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05; margin: 16px 0 0; }
.discovery__sub { max-width: 64ch; margin: 26px auto 38px; color: rgba(251,248,242,.7); font-size: 1.08rem; }
.discovery__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* program teaser on home */
.promo { border-top: 1px solid var(--line); }
.promo__inner { background: var(--ivory-2); border: 1px solid var(--line); border-radius: 10px; padding: clamp(40px,6vw,68px); text-align: center; }
.promo__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.02; margin: 14px 0 0; }
.promo__sub { max-width: 56ch; margin: 20px auto 32px; color: var(--ink-soft); font-size: 1.08rem; }

/* ── responsive ────────────────────────────────── */
@media (max-width: 860px) {
  .prog-hero { padding-top: 132px; }
  .prog-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .prog-hero__visual { max-width: 360px; }
  .who__body { grid-template-columns: 1fr; gap: 32px; }
  .compare { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 1fr; gap: 10px; }
  .phase-grid { grid-template-columns: 1fr; }
  .wrow { grid-template-columns: 44px 1fr; gap: 8px 16px; }
  .wrow .wf, .wrow .wt { grid-column: 2; }
  .wrow--head { display: none; }
  .inc-grid { grid-template-columns: 1fr; }
  .format__grid { grid-template-columns: 1fr; gap: 32px; }
  .spec > div { grid-template-columns: 1fr; gap: 4px; }
  .prog-about__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 96px 32px 40px;
    flex-direction: column; align-items: flex-start; gap: 26px;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    transform: translateY(-110%); transition: transform .45s var(--ease);
    box-shadow: 0 30px 60px -30px rgba(42,39,35,.25);
  }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { font-size: 1.4rem; }
  .nav__burger { display: block; z-index: 101; }
  .nav.open { background: var(--ivory); }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait { max-width: 360px; }
  .hero { padding-top: 132px; }
  .hero__scroll { display: none; }

  .about__body { grid-template-columns: 1fr; gap: 40px; }
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .tl { padding: 0; border-left: 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════════════════
   INTRO — soothing 5s logo reveal on load
   ════════════════════════════════════════════════ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; overflow: hidden;
  background: var(--ivory);
  animation: introOut .7s var(--ease) 2.3s forwards;
}
/* soft paper grain + warm vignette to match the site */
.intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(154,123,79,.06), transparent 55%),
    radial-gradient(100% 80% at 50% 120%, rgba(142,150,134,.06), transparent 55%);
}
/* breathing glow behind the signature */
.intro__glow {
  position: absolute; width: 62vmin; height: 62vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(154,123,79,.20), rgba(154,123,79,0) 62%);
  filter: blur(14px);
  animation: introBreathe 5s ease-in-out infinite;
}
.intro__logo {
  position: relative; z-index: 1; text-align: center;
  opacity: 0; transform: scale(.92); filter: blur(8px);
  animation: introLogo 1.3s var(--ease) .15s forwards;
}
.intro__logo img { width: min(440px, 72vw); height: auto; }
.intro__line {
  display: block; height: 1px; width: 0; margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  animation: introLine .9s var(--ease) .7s forwards;
}

@keyframes introLogo {
  0%   { opacity: 0; transform: scale(.92); filter: blur(8px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1);  filter: blur(0); }
}
@keyframes introBreathe {
  0%, 100% { transform: scale(.88); opacity: .55; }
  50%      { transform: scale(1.06); opacity: 1; }
}
@keyframes introLine { to { width: min(240px, 54vw); } }
@keyframes introOut {
  to { opacity: 0; visibility: hidden; }
}

/* respect users who prefer less motion — show site immediately */
@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* ════════════════════════════════════════════════
   AMBIENT EFFECT — slow drifting clouds of soft colour
   across the whole background. Calming but visible.
   ════════════════════════════════════════════════ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;          /* fills the whole viewport, behind all content */
  overflow: hidden;
  pointer-events: none;
}
.bg span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .6;
  will-change: transform;
}
.bg span:nth-child(1) {
  width: 46vmax; height: 46vmax; top: 6vmax; left: 4vmax;
  background: radial-gradient(circle, rgba(176,138,86,.85), rgba(176,138,86,0) 70%);
  animation: cloud1 40s ease-in-out infinite;
}
.bg span:nth-child(2) {
  width: 42vmax; height: 42vmax; top: 10vmax; right: 6vmax;
  background: radial-gradient(circle, rgba(132,150,120,.78), rgba(132,150,120,0) 70%);
  animation: cloud2 48s ease-in-out infinite;
}
.bg span:nth-child(3) {
  width: 44vmax; height: 44vmax; bottom: 4vmax; left: 12vmax;
  background: radial-gradient(circle, rgba(206,156,112,.78), rgba(206,156,112,0) 70%);
  animation: cloud3 44s ease-in-out infinite;
}
.bg span:nth-child(4) {
  width: 40vmax; height: 40vmax; bottom: 8vmax; right: 10vmax;
  background: radial-gradient(circle, rgba(190,160,178,.62), rgba(190,160,178,0) 70%);
  animation: cloud4 52s ease-in-out infinite;
}

/* each cloud wanders across the whole viewport (loops seamlessly) */
@keyframes cloud1 {
  0%   { transform: translate(0,0)            scale(1);   }
  25%  { transform: translate(58vw,12vh)      scale(1.25);}
  50%  { transform: translate(40vw,64vh)      scale(1);   }
  75%  { transform: translate(-8vw,40vh)      scale(1.18);}
  100% { transform: translate(0,0)            scale(1);   }
}
@keyframes cloud2 {
  0%   { transform: translate(0,0)            scale(1.1); }
  25%  { transform: translate(-54vw,20vh)     scale(1);   }
  50%  { transform: translate(-30vw,60vh)     scale(1.22);}
  75%  { transform: translate(10vw,34vh)      scale(1);   }
  100% { transform: translate(0,0)            scale(1.1); }
}
@keyframes cloud3 {
  0%   { transform: translate(0,0)            scale(1);   }
  25%  { transform: translate(50vw,-30vh)     scale(1.2); }
  50%  { transform: translate(20vw,-58vh)     scale(1);   }
  75%  { transform: translate(-24vw,-26vh)    scale(1.15);}
  100% { transform: translate(0,0)            scale(1);   }
}
@keyframes cloud4 {
  0%   { transform: translate(0,0)            scale(1.05);}
  25%  { transform: translate(-46vw,-22vh)    scale(1.2); }
  50%  { transform: translate(-18vw,-56vh)    scale(1);   }
  75%  { transform: translate(22vw,-30vh)     scale(1.15);}
  100% { transform: translate(0,0)            scale(1.05);}
}

@media (prefers-reduced-motion: reduce) {
  .bg span { animation: none; }
}

/* ════════════════════════════════════════════════
   BREATHE WITH ME — guided breath that takes over
   the whole site (on-brand: nervous-system calm)
   ════════════════════════════════════════════════ */
.breathe-btn {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory); background: rgba(42,39,35,.88);
  border: 1px solid rgba(201,169,106,.5); border-radius: 100px;
  padding: 12px 20px; cursor: pointer; backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px -14px rgba(42,39,35,.6);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.breathe-btn:hover { transform: translateY(-2px); background: var(--bronze-dk); border-color: var(--bronze); }
.breathe-btn__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--bronze-l, #C6A878);
  box-shadow: 0 0 0 0 rgba(198,168,120,.6);
  animation: breatheDot 4.5s ease-in-out infinite;
}
@keyframes breatheDot {
  0%, 100% { transform: scale(.8); box-shadow: 0 0 0 0 rgba(198,168,120,.5); }
  50%      { transform: scale(1.25); box-shadow: 0 0 0 10px rgba(198,168,120,0); }
}

/* full-screen breathing experience */
.breathe {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 50%, rgba(28,25,21,.72), rgba(20,18,15,.9));
  backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
}
.breathe.is-on { opacity: 1; visibility: visible; }

.breathe__scene { display: grid; place-items: center; }
.breathe__orb {
  width: 180px; height: 180px; border-radius: 50%;
  transform: scale(1); transform-origin: center;
  background:
    radial-gradient(circle at 50% 42%,
      rgba(255,250,240,.98) 0%,
      rgba(228,203,148,.9) 32%,
      rgba(201,169,106,.6) 52%,
      rgba(154,123,79,.18) 70%,
      rgba(154,123,79,0) 74%);
  box-shadow:
    0 0 120px 30px rgba(201,169,106,.35),
    inset 0 0 60px rgba(255,255,255,.45);
}
/* soft concentric rings that expand with the orb */
.breathe__orb::before,
.breathe__orb::after {
  content: ""; position: absolute; inset: -26px; border-radius: 50%;
  border: 1px solid rgba(232,224,209,.22);
}
.breathe__orb::after { inset: -54px; border-color: rgba(232,224,209,.12); }

.breathe__cue {
  position: fixed; left: 0; right: 0; bottom: 18vh; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); letter-spacing: .02em;
  color: var(--ivory); opacity: 0; transition: opacity 1s var(--ease);
}
.breathe__cue.is-show { opacity: .92; }

.breathe__close {
  position: fixed; top: 26px; right: 26px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(236,231,221,.7); background: none; border: 0; cursor: pointer;
  transition: color .25s;
}
.breathe__close:hover { color: var(--ivory); }

@media (prefers-reduced-motion: reduce) {
  .breathe-btn__dot { animation: none; }
}

/* ════════════════════════════════════════════════
   WORD-SETTLING reveal — words rise gently into place
   ════════════════════════════════════════════════ */
.settle .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  transition: opacity .7s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
  will-change: transform, opacity;
}
.settle.in .w {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .settle .w { opacity: 1; transform: none; filter: none; }
}

/* ════════════════════════════════════════════════
   CLICK RIPPLE — a drop in still water
   ════════════════════════════════════════════════ */
.ripple {
  position: fixed;
  z-index: 9500;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.ripple__r {
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 1.5px solid rgba(154,123,79,.55);
  transform: scale(0);
  animation: rippleOut 1s var(--ease) forwards;
}
.ripple__r--2 {
  border-color: rgba(198,168,120,.4);
  animation: rippleOut 1.2s var(--ease) .08s forwards;
}
.ripple__glow {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,106,.30), rgba(201,169,106,0) 70%);
  transform: scale(0);
  animation: rippleGlow .9s var(--ease) forwards;
}
@keyframes rippleOut {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(7); opacity: 0; }
}
@keyframes rippleGlow {
  0%   { transform: scale(0); opacity: .9; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* ════════════════════════════════════════════════
   HAMMER SMASH — hover the "Explore the program" CTA
   ════════════════════════════════════════════════ */
.smash-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.smash {
  position: relative;
  width: 150px; height: 92px;
  pointer-events: none;            /* clicks pass through to button */
}
.smash__bottle {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  transform-origin: bottom center;
}
.smash__hammer {
  position: absolute; left: 56%; top: -10px;
  transform-origin: 78% 86%;
  transform: rotate(-62deg);
  opacity: 0;
  transition: opacity .25s ease;
}
.shard {
  position: absolute; left: 50%; bottom: 30px;
  width: 6px; height: 6px; border-radius: 1px;
  background: var(--bronze);
  opacity: 0;
  transform: translate(-50%, 0);
}

/* on hover: reveal hammer, swing it, smash the bottle, fling shards */
.smash-wrap:hover .smash__hammer { opacity: 1; animation: hammerHit .85s var(--ease) forwards; }
.smash-wrap:hover .smash__bottle { animation: bottleSmash .85s var(--ease) forwards; }
.smash-wrap:hover .shard         { animation: shardFly .65s ease-out .40s forwards; }

@keyframes hammerHit {
  0%   { transform: rotate(-62deg); }
  45%  { transform: rotate(10deg); }   /* impact */
  60%  { transform: rotate(2deg); }
  100% { transform: rotate(-12deg); }
}
@keyframes bottleSmash {
  0%, 38% { transform: translateX(-50%) translateY(0) rotate(0); opacity: 1; }
  46%     { transform: translateX(-50%) translateY(2px) rotate(-3deg); }   /* hit */
  60%     { transform: translateX(-54%) translateY(8px) rotate(-12deg); opacity: .8; }
  100%    { transform: translateX(-62%) translateY(30px) rotate(-30deg); opacity: 0; }
}
@keyframes shardFly {
  0%   { opacity: 1; transform: translate(-50%, 0) scale(1) rotate(0); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), var(--dy)) scale(.4) rotate(200deg); }
}

@media (prefers-reduced-motion: reduce) {
  .smash__hammer, .smash__bottle, .shard { animation: none !important; }
  .smash { display: none; }         /* skip the playful bit for reduced-motion */
}

/* ════════════════════════════════════════════════
   FALLING PETALS — soft drifting petals, site-wide
   ════════════════════════════════════════════════ */
.petals {
  position: fixed; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 40;            /* in front of content, behind nav & buttons */
}
.petal {
  position: absolute;
  top: -8vh;
  border-radius: 100% 0 100% 0;   /* petal / leaf shape */
  will-change: transform;
  filter: blur(.3px);
}
@keyframes petalFall {
  0%   { transform: translate(0, -8vh) rotate(0deg); }
  100% { transform: translate(var(--sway), 112vh) rotate(var(--rot)); }
}
@media (prefers-reduced-motion: reduce) {
  .petals { display: none; }
}

/* ════════════════════════════════════════════════
   TESTIMONIALS — masonry card layout (easy to extend)
   ════════════════════════════════════════════════ */
.thead { padding-top: 60px; }
.tgrid {
  columns: 3 320px;       /* responsive masonry: as many ~320px columns as fit */
  column-gap: 26px;
}
.tcard {
  break-inside: avoid;
  margin: 0 0 26px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 30px 28px;
  box-shadow: 0 24px 50px -34px rgba(42,39,35,.28);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 34px 60px -34px rgba(42,39,35,.34); }
.tcard::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem; line-height: .5;
  color: var(--bronze); opacity: .55;
  margin-bottom: 14px;
}
.tcard blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.22rem; line-height: 1.5; color: var(--ink);
  margin-bottom: 22px;
}
.tcard__name { display: block; font-weight: 500; font-size: .98rem; color: var(--ink); }
.tcard__role { display: block; font-size: .8rem; letter-spacing: .04em; color: var(--muted); margin-top: 3px; }

@media (max-width: 600px) {
  .tgrid { columns: 1; }
}

/* ── contact form status message ── */
.form__status {
  font-size: .95rem; line-height: 1.5; margin-top: 4px; min-height: 1px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.form__status.is-ok, .form__status.is-err { opacity: 1; }
.form__status.is-ok  { color: var(--bronze-dk); }
.form__status.is-err { color: #A4443A; }
