/* Healing Vibes — sage + apricot, from the studio's walls and plants */
:root {
  --cream: #F7F3EB;
  --sand: #EEE6D8;
  --paper: #FFFDF8;
  --ink: #26302A;
  --ink-soft: #5E6A60;
  --forest: #2F3D33;
  --sage: #5F7657;
  --sage-soft: #C9D4C0;
  --mist: #EEF2EA;
  --apricot: #D98B5F;
  --apricot-soft: #F2D2B8;
  --line: rgba(38, 48, 42, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --shadow: 0 24px 60px -30px rgba(38, 48, 42, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 300 17px/1.7 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 5.4vw, 4.7rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.6rem; }
h1 em, h2 em { font-style: italic; color: var(--sage); font-weight: 400; }
p { margin: 0 0 1em; }
strong { font-weight: 500; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--apricot); outline-offset: 3px; }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }

.eyebrow { font: 500 .74rem/1.4 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--apricot); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .8em; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--apricot-soft); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: 1em 1.9em; border-radius: 999px; background: var(--forest); color: var(--cream); font: 500 .8rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--forest); cursor: pointer; transition: background .3s, color .3s, transform .3s, box-shadow .3s; }
.btn:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(38,48,42,.6); }
.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn--light { background: var(--apricot-soft); border-color: var(--apricot-soft); color: var(--forest); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--forest); }
.btn--small { padding: .8em 1.4em; font-size: .7rem; }
.card__link { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; text-decoration: none; color: var(--sage); border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.card__link:hover { color: var(--apricot); }
.stars { color: var(--apricot); letter-spacing: .12em; }

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand span { font: 500 1.6rem/1 var(--serif); display: flex; flex-direction: column; color: var(--ink); }
.brand small { font: 400 .56rem/1.8 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--sage); }
.brand--light span { color: #fff; }
.brand--light small { color: var(--apricot-soft); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(247,243,235,.86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.is-scrolled { border-color: var(--line); }
.nav__inner { max-width: var(--wrap); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; gap: clamp(14px, 1.8vw, 28px); }
.nav__links a { text-decoration: none; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 4px 0; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--apricot); transition: right .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone { font-size: .88rem; text-decoration: none; color: var(--ink-soft); white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--ink); transition: transform .3s, top .3s; }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 24px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.drawer { display: flex; flex-direction: column; padding: 8px var(--gutter) 28px; border-top: 1px solid var(--line); background: var(--cream); }
.drawer[hidden] { display: none; }
.drawer a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font: 500 1.4rem/1.2 var(--serif); }
.drawer .btn { margin-top: 22px; }
@media (max-width: 1100px) { .nav__links, .nav__phone { display: none; } .nav__toggle { display: block; } }
@media (max-width: 440px) { .nav__actions .btn--small { display: none; } .brand small { letter-spacing: .14em; } }

/* Sections */
.section { padding: clamp(80px, 11vw, 140px) var(--gutter); }
.section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section__head p:not(.eyebrow) { color: var(--ink-soft); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; text-align: left; max-width: var(--wrap); }
.section__head--row .eyebrow { justify-content: flex-start; }
.section__head--row .eyebrow::after { display: none; }
.section__head--row h2 { margin: 0; }

/* Hero */
.hero { max-width: var(--wrap); margin: 0 auto; padding: clamp(36px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 100px); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 2em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.trust { list-style: none; padding: 28px 0 0; margin: 40px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.trust li { font-size: .84rem; color: var(--ink-soft); padding: 0 16px; border-left: 1px solid var(--line); line-height: 1.5; }
.trust li:first-child { border-left: 0; padding-left: 0; }
.trust strong { display: block; font: 500 1.45rem/1.3 var(--serif); color: var(--ink); }
.hero__media { position: relative; padding: 0 0 70px 60px; }
.hero__tall { margin: 0; border-radius: 240px 240px 22px 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 4; }
.hero__tall img { width: 100%; height: 100%; object-fit: cover; }
.hero__small { position: absolute; left: 0; bottom: 0; width: 55%; margin: 0; border-radius: 18px; overflow: hidden; border: 6px solid var(--cream); box-shadow: var(--shadow); }
.hero__small img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__quote { position: absolute; right: -10px; top: 18%; max-width: 220px; margin: 0; background: var(--forest); color: var(--cream); padding: 18px 20px; border-radius: 16px; font: italic 400 1.1rem/1.4 var(--serif); box-shadow: var(--shadow); }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; padding: 0 0 50px 36px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__quote { right: 0; top: auto; bottom: 90px; max-width: 200px; font-size: 1rem; }
}
@media (max-width: 520px) { .trust li { padding: 0 10px; } .trust strong { font-size: 1.2rem; } }

/* Letter */
.letter { background: var(--mist); padding: clamp(64px, 9vw, 110px) var(--gutter); }
.letter__inner { max-width: 680px; margin: 0 auto; font: 400 clamp(1.25rem, 2.2vw, 1.55rem)/1.55 var(--serif); color: var(--forest); }
.letter__hello { font-style: italic; color: var(--sage); font-size: 1.3em; }
.letter__sign { margin-top: 1.4em; font-style: italic; }
.letter__sign span { display: block; font-size: 1.6em; color: var(--apricot); }

/* Services */
.services { background: var(--paper); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.filters button { font: 400 .8rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.filters button:hover { border-color: var(--sage); color: var(--ink); }
.filters button[aria-selected="true"] { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.menu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px 24px; transition: transform .35s, box-shadow .35s, opacity .3s; }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc[hidden] { display: none; }
.svc--star { border-color: var(--apricot); }
.svc__badge { position: absolute; top: -12px; left: 28px; background: var(--apricot); color: #fff; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.svc__top { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 10px; }
.svc h3 { font-size: 1.55rem; margin: 0; }
.svc__prices { list-style: none; padding: 0; margin: 0; text-align: right; font-size: .82rem; color: var(--ink-soft); white-space: nowrap; }
.svc__prices b { font: 500 1.3rem/1.3 var(--serif); color: var(--sage); margin-left: 6px; }
.svc p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .6em; }
.svc__incl { font-size: .78rem !important; letter-spacing: .06em; color: var(--apricot) !important; margin: 0 !important; }
.events { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--mist); border-radius: var(--radius); padding: 30px 34px; }
.events h3 { font-size: 1.8rem; }
.events p:not(.eyebrow) { color: var(--ink-soft); margin: 0; max-width: 680px; }
@media (max-width: 860px) { .menu { grid-template-columns: 1fr; } .events { flex-direction: column; align-items: flex-start; } .svc__top { flex-direction: column; gap: 6px; } .svc__prices { text-align: left; display: flex; gap: 16px; } }

/* Enhancements picker */
.enhance__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.enhance__intro { position: sticky; top: 110px; }
.enhance__intro > p:not(.eyebrow) { color: var(--ink-soft); }
.lengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 26px 0 16px; }
.lengths button { font: 500 1.2rem/1.2 var(--serif); padding: 14px 8px; border-radius: 14px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; transition: all .25s; }
.lengths small { display: block; font: 400 .7rem/1.6 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.lengths button[aria-checked="true"] { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.lengths button[aria-checked="true"] small { color: var(--apricot-soft); }
.tally { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 14px; background: var(--mist); margin-bottom: 14px; font-size: .95rem; }
.tally strong { font: 500 1.5rem/1 var(--serif); color: var(--sage); white-space: nowrap; }
.enh { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.enh button { width: 100%; height: 100%; text-align: left; font: inherit; color: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px 16px 48px; cursor: pointer; position: relative; transition: border-color .2s, background .2s; }
.enh button::before { content: ""; position: absolute; left: 16px; top: 19px; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--sage-soft); transition: all .2s; }
.enh button[aria-pressed="true"] { border-color: var(--sage); background: #fff; }
.enh button[aria-pressed="true"]::before { background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-4.8' fill='none' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--sage); }
.enh button.is-extra[aria-pressed="true"]::before { background-color: var(--apricot); border-color: var(--apricot); }
.enh button:hover { border-color: var(--sage); }
.enh strong { display: block; font: 500 1.15rem/1.3 var(--serif); }
.enh span { display: block; font-size: .84rem; color: var(--ink-soft); line-height: 1.45; margin-top: 2px; }
@media (max-width: 900px) { .enhance__grid { grid-template-columns: 1fr; } .enhance__intro { position: static; } }
@media (max-width: 560px) { .enh { grid-template-columns: 1fr; } }

/* Wellness */
.wellness { background: var(--forest); color: var(--cream); }
.wellness__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.wellness h2 { color: #fff; }
.wellness h2 em { color: var(--apricot-soft); }
.wellness__copy > p { color: rgba(247,243,235,.8); }
.wellness__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,.6); }
.wellness__media img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.well-list { margin: 26px 0 0; }
.well-list > div { padding: 18px 0; border-top: 1px solid rgba(238,242,234,.16); display: grid; grid-template-columns: 1fr auto; column-gap: 20px; }
.well-list dt { font: 500 1.35rem/1.3 var(--serif); color: #fff; }
.well-list dt small { font: 400 .72rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--sage-soft); margin-left: 8px; }
.well-list dd { margin: 0; text-align: right; font: 500 1.3rem/1.3 var(--serif); color: var(--apricot-soft); }
.well-list dd span { display: block; font: 300 .76rem/1.5 var(--sans); color: rgba(247,243,235,.65); }
.well-list p { grid-column: 1 / -1; margin: 6px 0 0; font-size: .92rem; color: rgba(247,243,235,.72); }
@media (max-width: 900px) { .wellness__grid { grid-template-columns: 1fr; } .wellness__media img { aspect-ratio: 4 / 3; } }

/* About */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__media { margin: 0; border-radius: 22px 22px 240px 240px; overflow: hidden; box-shadow: var(--shadow); }
.about__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about__copy > p { color: var(--ink-soft); }
.facts { list-style: none; padding: 0; margin: 26px 0; }
.facts li { padding: 13px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 100px 1fr; gap: 12px; font-size: .95rem; }
.facts span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--apricot); padding-top: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: .8rem; padding: 7px 14px; border-radius: 999px; background: var(--mist); color: var(--forest); }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } .about__media { max-width: 460px; margin: 0 auto; } }

/* Reviews carousel */
.reviews { background: var(--sand); }
.carousel { max-width: 860px; text-align: center; }
.carousel__viewport { position: relative; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; border-radius: 26px; background: var(--paper); box-shadow: var(--shadow); }
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 2px solid var(--apricot); outline-offset: 4px; }
.slide { flex: 0 0 100%; scroll-snap-align: center; margin: 0; padding: clamp(40px, 6vw, 72px) clamp(24px, 7vw, 90px); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; }
.slide .stars { font-size: 1.2rem; margin-bottom: 22px; }
.slide blockquote { margin: 0 0 28px; font: italic 400 clamp(1.4rem, 2.6vw, 2rem)/1.4 var(--serif); color: var(--ink); }
.slide figcaption strong { display: block; font-weight: 500; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.slide figcaption span { display: block; margin-top: 6px; font-size: .88rem; color: var(--ink-soft); }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; }
.icon-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--forest); background: transparent; color: var(--forest); font-size: 1.1rem; cursor: pointer; transition: background .3s, color .3s; }
.icon-btn:hover { background: var(--forest); color: var(--cream); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { position: relative; width: 28px; height: 4px; border: 0; padding: 0; border-radius: 4px; background: rgba(38,48,42,.18); cursor: pointer; overflow: hidden; }
.carousel__dots button::before { content: ""; position: absolute; inset: -12px 0; }
.carousel__dots button[aria-selected="true"] { width: 48px; }
.carousel__dots button[aria-selected="true"]::after { content: ""; position: absolute; inset: 0; background: var(--apricot); transform-origin: left; animation: fill var(--dur, 7s) linear forwards; }
.carousel.is-paused .carousel__dots button[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .carousel__dots button[aria-selected="true"]::after { animation: none; transform: none; } }

/* Journal cards */
.journal-teaser { background: var(--paper); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; border: 1px solid var(--line); transition: transform .35s, box-shadow .35s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.post-card:hover .post-card__img img { transform: scale(1.04); }
.post-card__body { padding: 22px 24px 26px; }
.post-card__tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--apricot); }
.post-card h3 { font-size: 1.5rem; margin: 8px 0 8px; }
.post-card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
@media (max-width: 900px) { .posts { grid-template-columns: 1fr; } .section__head--row { flex-direction: column; align-items: flex-start; } }

/* Gifts */
.gifts { background: var(--apricot); background: linear-gradient(120deg, #C9774C, var(--apricot) 60%, #E4A57E); color: #fff; padding: clamp(60px, 8vw, 96px) var(--gutter); }
.gifts__inner { max-width: var(--wrap); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.gifts h2 { color: #fff; margin-bottom: .3em; }
.gifts h2 em { color: var(--forest); }
.gifts .eyebrow { color: #fff; }
.gifts p:not(.eyebrow) { margin: 0; max-width: 560px; color: rgba(255,255,255,.92); }
.gifts .btn--light { background: #fff; border-color: #fff; flex: 0 0 auto; }
@media (max-width: 800px) { .gifts__inner { flex-direction: column; align-items: flex-start; } }

/* Visit */
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
address { font-style: normal; font-size: 1.1rem; margin-bottom: 6px; }
.visit__links { display: flex; gap: 22px; flex-wrap: wrap; }
.hours { width: 100%; border-collapse: collapse; margin-top: 30px; font-size: .95rem; }
.hours caption { text-align: left; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--apricot); padding-bottom: 10px; }
.hours th, .hours td { padding: 11px 0; border-top: 1px solid var(--line); text-align: left; font-weight: 300; }
.hours td { text-align: right; color: var(--ink-soft); }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 500; color: var(--sage); }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; background: var(--apricot-soft); color: var(--ink); padding: 3px 8px; border-radius: 999px; vertical-align: 2px; }
.pay { margin-top: 20px; font-size: .9rem; color: var(--ink-soft); }
.visit__map { border-radius: var(--radius); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); background: var(--sand); }
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.3) sepia(.1); }
@media (max-width: 900px) { .visit__grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--forest); color: rgba(247,243,235,.75); padding: 80px var(--gutter) calc(120px + env(safe-area-inset-bottom)); text-align: center; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer .brand img { width: 44px; height: 44px; }
.footer__tag { font: italic 400 1.2rem/1.5 var(--serif); margin: 0; max-width: 480px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.footer__links a { text-decoration: none; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__links a:hover { color: var(--apricot-soft); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(247,243,235,.25); display: grid; place-items: center; transition: border-color .3s, color .3s; }
.footer__social a:hover { border-color: var(--apricot-soft); color: var(--apricot-soft); }
.footer__legal { font-size: .8rem; margin: 0; opacity: .7; }
@media (min-width: 901px) { .footer { padding-bottom: 80px; } }

/* Mobile action bar (always visible) */
.actionbar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40; display: none; grid-template-columns: 1fr 1fr 1.6fr; gap: 6px; padding: 6px; border-radius: 999px; border: 1px solid rgba(242,210,184,.35); background: rgba(47,61,51,.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 14px 40px -12px rgba(0,0,0,.45); }
.actionbar a { text-align: center; text-decoration: none; color: var(--cream); padding: 13px 8px; border-radius: 999px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.actionbar__book { background: var(--apricot-soft); color: var(--forest) !important; }
@media (max-width: 900px) { .actionbar { display: grid; } html { scroll-padding-bottom: 90px; } }

/* Journal pages */
.page-head { max-width: var(--wrap); margin: 0 auto; padding: clamp(50px, 8vw, 100px) var(--gutter) 30px; text-align: center; }
.page-head .eyebrow { justify-content: center; }
.page-head .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.page-head p:not(.eyebrow) { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.journal-list { padding-top: 30px; }
.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) var(--gutter) clamp(80px, 10vw, 130px); }
.article__back { display: inline-block; margin-bottom: 30px; }
.article h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.article__img { margin: 30px 0 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article__img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article__body p { font-size: 1.12rem; line-height: 1.85; color: var(--ink); }
.article__body p:first-child::first-letter { float: left; font: 500 4.2rem/.8 var(--serif); color: var(--sage); padding: 8px 10px 0 0; }
.article__cta { margin-top: 44px; padding: 30px; border-radius: var(--radius); background: var(--mist); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.article__cta p { margin: 0; font: 500 1.4rem/1.3 var(--serif); }
@media (max-width: 600px) { .article__cta { flex-direction: column; align-items: flex-start; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in, .no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { transition-duration: 0s !important; } }
