/* ============================================================
   SOMA & SHEN — Multi-page site styles
   Same brand as the UI kit: warm cream base, Cormorant headings,
   Mulish body, earthy palette. Structure only — no new visual style.
   Relies on colors_and_type.css for tokens.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #E2D1BD; color: var(--ink-1); font-family: var(--font-body);
       font-size: var(--text-body); line-height: var(--leading-normal); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--coral-300); color: var(--brown-900); }

/* generous editorial section rhythm */
body { --st-gap-sm: 64px; --st-gap: 96px; --st-gap-lg: 134px; }

.st-wrap { max-width: 880px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.st-wrap-wide { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

/* ---------- buttons ---------- */
.st-btn { font-family: var(--font-body); font-weight: 600; font-size: 15px; border: none; cursor: pointer;
          padding: 15px 30px; border-radius: var(--radius-pill); transition: all .22s var(--ease-soft);
          text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 9px; line-height: 1; white-space: nowrap; }
.st-btn i { font-size: 19px; }
.st-btn-primary { background: var(--primary); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.st-btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.st-btn-primary:active { transform: translateY(0) scale(.985); background: var(--primary-press); }
.st-btn-cream { background: var(--cream-50); color: var(--brown); box-shadow: var(--shadow-sm); }
.st-btn-cream:hover { background: #fff; transform: translateY(-1px); }

/* ---------- shared type ---------- */
.st-eyebrow { font-size: var(--text-eyebrow); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.st-rule { width: 54px; height: 1.5px; background: var(--border-strong); border: none; margin: 0 auto; }
.st-num { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 19px; color: var(--mustard-600); }
.st-p { font-size: var(--text-body); line-height: 1.8; color: var(--ink-2); text-wrap: pretty; }

/* photo placeholder shared bits */
.st-photo { position: relative; border-radius: 0; overflow: hidden; border: 1px solid var(--border-strong);
            box-shadow: none; background: linear-gradient(150deg, var(--tan-300), var(--tan-100) 55%, var(--cream-100)); }
.st-photo--sage { background: linear-gradient(150deg, var(--sage-300), var(--cream-100)); }
.st-photo--coral { background: linear-gradient(150deg, var(--coral-300), var(--cream-100)); }
.st-photo--tan { background: linear-gradient(150deg, var(--tan-300), var(--cream-100)); }
.st-photo--mustard { background: linear-gradient(150deg, var(--mustard-300), var(--cream-100)); }
.st-photo-tag { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 6px; font-size: 12px;
                color: var(--ink-3); background: color-mix(in oklab, var(--cream-50) 82%, transparent); padding: 6px 12px;
                border-radius: var(--radius-pill); backdrop-filter: blur(4px); }

/* =========================================================
   HEADER (injected by site.js)
   ========================================================= */
.st-header { position: sticky; top: 0; z-index: 60; transition: background .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s; border-bottom: 1px solid transparent; }
.st-header.is-scrolled { background: color-mix(in oklab, #E2D1BD 88%, transparent); backdrop-filter: blur(14px); border-bottom-color: var(--border-strong); box-shadow: var(--shadow-xs); }
.st-header-inner { max-width: 1180px; margin: 0 auto; padding: 16px 28px; display: flex; align-items: center; gap: 24px; }
.st-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.st-brand img { width: 44px; height: 44px; object-fit: contain; }
.st-brand-word { font-family: var(--font-display); font-weight: 500; font-size: 25px; color: var(--ink-1); letter-spacing: .01em; white-space: nowrap; }
.st-brand-word em { font-style: italic; color: var(--mustard-600); }

.st-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.st-nav-item { position: relative; }
.st-nav-link { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
               text-decoration: none; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 6px 0; }
.st-nav-link:hover, .st-nav-link.is-active { color: var(--ink-1); }
.st-nav-link { position: relative; }
.st-nav-link.is-active::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 18px; height: 1.5px; background: var(--gold); }
.st-nav-link i { font-size: 15px; transition: transform .25s var(--ease-soft); }

/* dropdown */
.st-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
               min-width: 252px; background: var(--cream-50); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
               box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .22s var(--ease-soft), transform .22s var(--ease-soft); }
.st-nav-item.is-open .st-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.st-nav-item.is-open .st-nav-link i { transform: rotate(180deg); }
/* invisible hover bridge across the gap so the menu doesn't close mid-reach */
.st-nav-item.is-open::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 280px; height: 22px; }
.st-dropdown::before { content: ''; position: absolute; top: -7px; left: 50%; width: 12px; height: 12px; background: var(--cream-50);
                       border-left: 1px solid var(--border-strong); border-top: 1px solid var(--border-strong); transform: translateX(-50%) rotate(45deg); }
.st-drop-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-md); text-decoration: none;
                color: var(--ink-1); font-size: 15px; font-weight: 600; transition: background .18s var(--ease-soft); }
.st-drop-link:hover, .st-drop-link.is-active { background: color-mix(in oklab, var(--tan) 16%, var(--cream-50)); }
.st-drop-link i { font-size: 20px; color: var(--tan-700); flex: none; }

.st-burger { display: none; margin-left: auto; background: transparent; border: none; font-size: 28px; color: var(--ink-1); cursor: pointer; line-height: 1; }

/* mobile menu */
.st-mobile { display: none; flex-direction: column; padding: 8px 28px 24px; background: #E2D1BD; border-bottom: 1px solid var(--border-strong); }
.st-mobile a { font-size: 16px; font-weight: 600; letter-spacing: .04em; color: var(--ink-1); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--border); }
.st-mobile .st-mobile-sub { padding-left: 16px; font-size: 14px; color: var(--ink-2); font-weight: 500; letter-spacing: .02em; }
.st-mobile .st-mobile-label { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); padding: 16px 0 4px; border: none; }

/* =========================================================
   HOME
   ========================================================= */
.st-hero { position: relative; width: 100%; }
.st-hero-photo { position: relative; width: 100%; overflow: hidden; font-size: 0; line-height: 0;
                 border-bottom: 1px solid var(--border-strong);
                 background: linear-gradient(160deg, var(--tan-300), var(--tan-100) 52%, var(--cream-100)); }
.st-hero-photo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 46%, color-mix(in oklab, var(--cream-50) 36%, transparent), transparent 60%); pointer-events: none; }

/* real photograph variant */
.st-hero-photo--image { background-image: url('assets/hero-1.jpg'); background-size: cover; background-position: center; }
.st-hero-photo--image::after { background: none; }
.st-hero-photo--image .st-hero-overlay { color: var(--cream-50); }
.st-hero-photo--image .st-hero-title { color: var(--cream-50); text-shadow: 0 2px 28px rgba(42,29,22,.5), 0 1px 4px rgba(42,29,22,.35); }
.st-hero-photo--image .st-eyebrow { color: var(--gold); text-shadow: 0 1px 12px rgba(42,29,22,.5); }
.st-hero-photo--image .st-hero-mark { filter: drop-shadow(0 6px 22px rgba(42,29,22,.4)); }
.st-hero-overlay { position: relative; z-index: 1; padding: 40px 28px; transform: translateY(clamp(48px, 13vh, 140px)); }
.st-hero-overlay .st-eyebrow { display: block; margin-bottom: 24px; }
.st-hero-mark { width: 88px; height: 88px; object-fit: contain; margin: 0 auto 26px; }
.st-hero-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 76px); line-height: 1.1;
                 letter-spacing: -.015em; color: var(--ink-1); margin: 0 auto; max-width: 16ch; text-wrap: balance; white-space: nowrap; }
.st-hero-tag { position: absolute; bottom: 16px; left: 16px; z-index: 1; display: flex; align-items: center; gap: 6px; font-size: 12px;
               color: var(--ink-3); background: color-mix(in oklab, var(--cream-50) 82%, transparent); padding: 6px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }

/* hero subtitle + ampersand */
.st-hero-title em { font-style: italic; }
.st-hero-sub { font-family: var(--font-body); font-size: 18px; font-weight: 500; letter-spacing: .02em; line-height: 1.5;
               margin: 20px auto 0; color: var(--ink-2); max-width: 34ch; }
.st-hero-photo--image .st-hero-sub { color: var(--cream-100); text-shadow: 0 1px 12px rgba(42,29,22,.55); }

/* hero carousel: full proportional <img> photos (no crop) + thin white edge chevrons (manual only) */
.st-hero-slide { display: block; width: 100%; height: auto; object-fit: unset; position: absolute; top: 0; left: 0;
                 opacity: 0; transition: opacity .6s var(--ease-soft); }
.st-hero-slide:first-of-type { position: relative; }
.st-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: transparent; border: none; cursor: pointer;
                 color: var(--cream-50); font-size: 42px; line-height: 1; min-width: 44px; min-height: 44px; display: grid; place-items: center;
                 opacity: .85; transition: opacity .2s var(--ease-soft); text-shadow: 0 1px 10px rgba(42,29,22,.5); }
.st-hero-arrow:hover { opacity: 1; }
.st-hero-prev { left: 12px; }
.st-hero-next { right: 12px; }

/* brand block (centred, between hero photos and offerings) */
.st-brandblock { text-align: center; margin-top: 0; padding: 0 28px var(--st-gap); }
.st-brandblock-mark { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 22px; }
.st-brandblock-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
                       letter-spacing: -.015em; color: var(--ink-1); margin: 0; }
.st-brandblock-title em { font-style: italic; color: var(--mustard-600); }
.st-brandblock-sub { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: .16em; color: var(--ink-3); margin: 18px 0 0; }
.st-brandblock-rule { display: none; }
.st-features-tagline { display: none; }
.st-features-brand { display: none; }

/* hero overlay caption (over the photo, upper-middle) — desktop + mobile */
.st-hero-caption { display: block; position: absolute; left: 50%; top: 30%; transform: translate(-50%, -50%);
                   z-index: 2; text-align: center; pointer-events: none; width: max-content; max-width: 92%; }
.st-hero-caption::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
                   width: 172%; height: 320%; z-index: -1; pointer-events: none;
                   background: radial-gradient(ellipse at center, rgba(40,28,20,0.46) 0%, rgba(40,28,20,0.26) 44%, rgba(40,28,20,0) 72%);
                   filter: blur(16px); }
.st-hero-caption-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 9vw, 80px);
                   line-height: 1; letter-spacing: 0.01em; color: #fff; white-space: nowrap;
                   text-shadow: 0 1px 3px rgba(40,28,20,0.5), 0 2px 26px rgba(40,28,20,0.62); }
.st-hero-caption-name em { font-style: italic; color: #fff; }
.st-hero-caption-rule { display: block; width: 62px; height: 1.5px; margin: 18px auto; background: rgba(255,255,255,0.85); }
.st-hero-caption-sub { font-family: var(--font-display); font-style: italic; font-weight: 600;
                   font-size: clamp(20px, 4.8vw, 32px); line-height: 1.2; letter-spacing: 0.03em; color: #fff; white-space: nowrap;
                   text-shadow: 0 1px 3px rgba(40,28,20,0.55), 0 2px 18px rgba(40,28,20,0.6); }

/* desktop hero: 70vh cover crop, cream brand block removed */
@media (min-width: 769px) {
  .st-hero-photo { height: 70vh; }
  .st-hero-slide { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
  .st-brandblock { display: none; }
}

/* desktop hero gap: Soma & Shen wordmark above the gold-rule tagline */
@media (min-width: 861px) {
  body .st-features { padding-top: 0; position: relative; }
  body .st-features--landing { padding-top: 64px; }
  .st-features-brand { display: none; }
  .st-features-name { font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 1;
                      letter-spacing: 0.01em; color: var(--ink-1); white-space: nowrap; }
  .st-features-name em { font-style: italic; color: var(--mustard-600); }
  .st-features-tagline { display: flex; align-items: center; justify-content: center; gap: 28px;
                         margin: 0; white-space: nowrap; pointer-events: none;
                         font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 34px;
                         color: var(--ink-1); letter-spacing: 0.015em; }
  .st-features-tagline::before, .st-features-tagline::after { content: ''; flex: none; width: 56px; height: 1px; background: #DCAB5E; }
}

/* About intro */
.st-about { text-align: center; padding: var(--st-gap) 0 0; }
.st-about-head { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 26px; }
.st-statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(27px, 3.6vw, 40px); line-height: 1.32;
                letter-spacing: -.01em; color: var(--ink-1); margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.st-statement em { font-style: italic; color: var(--mustard-600); }

/* practitioner editorial blocks */
.st-bio { padding: var(--st-gap) 0 0; }
.st-bio-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.st-bio.is-reverse .st-bio-media { order: 2; }
.st-bio-portrait { aspect-ratio: 4 / 5; border-radius: 0; border: 1px solid var(--border-strong); box-shadow: none; position: relative; }
.st-bio-portrait--image { background-size: cover; background-position: center 30%; }
/* keep the photo the same width on both bios (reverse only flips order, so swap columns too) */
@media (min-width: 861px) {
  .st-bio.is-reverse .st-bio-grid { grid-template-columns: 1.2fr 1fr; }
  .st-connect-lead { white-space: nowrap; }
}
.st-bio .st-eyebrow { display: block; margin-bottom: 14px; }
.st-bio-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 5vw, 56px); line-height: 1; color: var(--ink-1); margin: 0; letter-spacing: -.01em; }
.st-bio-role { margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.st-bio-prose { margin-top: 22px; display: flex; flex-direction: column; gap: 18px; }
.st-bio-prose p { font-size: 17px; line-height: 1.85; color: var(--ink-2); margin: 0; max-width: 56ch; text-wrap: pretty; }
.st-bio-prose .st-lede { font-family: var(--font-display); font-style: italic; font-size: 23px; line-height: 1.5; color: var(--ink-1); }

/* =========================================================
   HOME — OFFERINGS (alternating editorial features, no boxes)
   ========================================================= */
.st-features { padding: 0; }
/* quiet brand statement filling the space below the hero */
.st-home-intro { max-width: 780px; margin: 0 auto; text-align: center; padding: clamp(56px, 11vh, 120px) 28px clamp(34px, 5vh, 58px); }
.st-home-intro p { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.4; letter-spacing: -.005em; color: var(--ink-1); margin: 0; text-wrap: balance; }
.st-home-intro em { color: var(--mustard-600); }
.st-features-head { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 72px; }
.st-features-list { display: flex; flex-direction: column; gap: var(--st-gap); }
.st-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.st-feature.is-reverse .st-feature-media { order: 2; }
.st-feature-media { display: block; text-decoration: none; }
.st-feature-media .st-photo { aspect-ratio: 3 / 4; border-radius: 0; border: none; box-shadow: none; }
.st-feature-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4vw, 50px); line-height: 1.1;
                    letter-spacing: -.01em; color: var(--ink-1); margin: 0; text-wrap: balance; }
.st-feature-text { font-size: 18px; line-height: 1.85; color: var(--ink-2); margin: 22px 0 0; max-width: 50ch; text-wrap: pretty; }
.st-feature-link { margin-top: 26px; font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rust);
                   display: inline-flex; align-items: center; gap: 9px; text-decoration: none; padding-bottom: 5px;
                   border-bottom: 1.5px solid var(--gold);
                   transition: gap .2s var(--ease-soft), border-color .2s var(--ease-soft); white-space: nowrap; }
.st-feature-link:hover { gap: 14px; border-color: var(--rust); }
.st-feature-link i { font-size: 16px; }
.st-feature-byline { margin-top: 20px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
                     display: flex; align-items: center; gap: 12px; }
.st-feature-byline::before { content: ''; flex: none; width: 26px; height: 1.5px; background: var(--gold); }

/* offerings landing — same alternating features, larger & more immersive */
.st-features--landing { padding-top: 60px; }
.st-features--landing .st-features-list { gap: var(--st-gap-lg); }
.st-features--landing .st-feature { gap: 72px; }
.st-features--landing .st-feature-media .st-photo { aspect-ratio: 3 / 4; }
.st-features--landing .st-feature-title { font-size: clamp(34px, 3.9vw, 46px); }

/* =========================================================
   OFFERING DETAIL PAGE
   ========================================================= */
.st-offer { padding: var(--st-gap-sm) 0 0; }
.st-offer-photo { width: 100%; aspect-ratio: 16 / 7; }
/* portrait variant — for a tall source photo, show it whole, centered & contained */
.st-offer-photo--portrait { width: auto; max-width: 540px; margin: 0 auto; aspect-ratio: 3 / 4; background-size: cover; background-position: center 32%; }

/* offer photo gallery (image swaps with crossfade; thin arrows flush inside photo edges) */
.st-offer-carousel { position: relative; width: auto; max-width: 540px; margin: 0 auto; }
.st-offer-gallery { position: relative; transition: opacity .4s var(--ease-soft); }
.st-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
                    width: 28px; height: 28px; border-radius: var(--radius-pill); padding: 0;
                    background: none; border: 0.8px solid rgba(255,255,255,0.5);
                    display: grid; place-items: center; cursor: pointer; }
.st-gallery-prev { left: 8px; }
.st-gallery-next { right: 8px; }
.st-gallery-arrow svg { display: block; }
.st-offer-body { max-width: 720px; margin: 0 auto; padding: var(--st-gap-sm) 28px 0; text-align: center; }
.st-offer-body .st-eyebrow { display: block; margin-bottom: 16px; }
.st-offer-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 5.6vw, 66px); line-height: 1.06;
                  letter-spacing: -.01em; color: var(--ink-1); margin: 0; text-wrap: balance; }
.st-offer-desc { margin: 26px 0 0; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.st-offer-desc p { font-size: 17px; line-height: 1.85; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.st-offer-cta { margin-top: 38px; display: flex; justify-content: center; }
.st-offer-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); font-style: italic; }

/* offer detail editorial hierarchy */
.st-offer-subhead { font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); text-align: left; margin: 48px 0 20px; }
.st-offer-item { text-align: left; margin: 0 0 22px; }
.st-offer-item-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 22px; line-height: 1.3; color: var(--mustard-600); margin: 0 0 6px; }
.st-offer-item p { font-size: 17px; line-height: 1.85; color: var(--ink-2); margin: 0; text-wrap: pretty; }
/* long pre-conception title sits as tidy balanced lines, not oversized */
[data-page="offerings-preconception"] .st-offer-title { font-size: clamp(33px, 4.4vw, 50px); line-height: 1.12; }

.st-offer-price { max-width: 560px; margin: 56px auto 0; padding-top: 40px; border-top: 1px solid var(--border-strong);
                  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.st-offer-price-amt { font-family: var(--font-display); font-weight: 500; font-size: 34px; color: var(--ink-1); margin: 0 0 4px; letter-spacing: -.01em; }
.st-offer-price p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0; max-width: 48ch; }
.st-offer-price p:last-child { font-style: italic; font-size: 15px; color: var(--ink-3); }

/* =========================================================
   EVENTS
   ========================================================= */
.st-events { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: var(--st-gap) 28px; }
.st-events .st-eyebrow { display: block; margin-bottom: 22px; }
.st-events-msg { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 44px); line-height: 1.3;
                 letter-spacing: -.01em; color: var(--ink-1); margin: 0 auto; max-width: 18ch; text-wrap: balance; }
.st-events-msg em { font-style: italic; color: var(--mustard-600); }
.st-events-mark { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 28px; opacity: .9; }

/* =========================================================
   OFFERINGS LANDING (grid of 4)
   ========================================================= */
.st-offerings-intro { text-align: center; padding: var(--st-gap-sm) 28px 0; }
.st-offerings-intro .st-eyebrow { display: block; margin-bottom: 14px; }
.st-offerings-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5vw, 54px); line-height: 1.08;
                      letter-spacing: -.01em; color: var(--ink-1); margin: 0; text-wrap: balance; }
.st-offerings-lead { font-size: 1.05rem; line-height: 1.7; color: var(--ink-2); max-width: 58ch; margin: 18px auto 0; }
.st-grid { max-width: 1080px; margin: 0 auto; padding: 52px 28px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
.st-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.st-card-photo { aspect-ratio: 5 / 4; border-radius: var(--radius-xl); position: relative; border: 1px solid var(--border-strong);
                 box-shadow: var(--shadow-md); transition: transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft); }
.st-card:hover .st-card-photo { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.st-card-title { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--ink-1); margin: 22px 0 0; letter-spacing: -.01em; }
.st-card-line { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 8px 0 0; }
.st-card-more { margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s var(--ease-soft); }
.st-card:hover .st-card-more { gap: 11px; }

/* =========================================================
   CONNECT
   ========================================================= */
.st-connect { text-align: center; padding: 60px 28px var(--st-gap-sm); }
.st-offer-practitioner { display: inline-flex; align-items: center; justify-content: center; gap: 14px; margin: 16px auto 0;
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.st-offer-practitioner::before, .st-offer-practitioner::after { content: ''; flex: none; width: 26px; height: 2px; background: var(--gold); }
.st-connect .st-eyebrow { display: block; margin-bottom: 16px; }
.st-connect-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.2vw, 25px); line-height: 1.34;
                    letter-spacing: 0; color: var(--ink-1); margin: 0 auto; max-width: none; text-wrap: nowrap; }
.st-connect-title span { display: inline; white-space: nowrap; }
.st-connect-lead { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.2vw, 25px); line-height: 1.5; color: var(--ink-2); max-width: none; margin: 16px auto 0; }
.st-connect-details { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 40px 0; }
.st-connect-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; font-size: 18px; color: var(--ink-1); text-decoration: none; }
.st-connect-row i { font-size: 24px; color: var(--mustard-600); }
.st-connect-row.st-link:hover { color: var(--accent); }
.st-connect-email { font-family: var(--font-display); font-style: italic; font-size: 20px; }
.st-connect-cta { display: flex; justify-content: center; margin-top: 8px; }
.st-connect-loc { margin-top: 22px; font-size: 14px; color: var(--ink-3); display: flex; align-items: center; justify-content: center; gap: 8px; }
.st-connect-loc i { font-size: 18px; color: var(--sage-600); }
.st-connect-photo { max-width: 760px; margin: 44px auto 0; padding: 0 28px; }
.st-connect-photo .st-photo { width: 100%; aspect-ratio: 4 / 3; }
.st-connect-welcome { margin-top: 30px; }
.st-connect-welcome .st-eyebrow { margin-bottom: 10px; }
.st-connect-welcome-text { font-size: var(--text-lead); line-height: 1.74; color: var(--ink-2); margin: 0; }

/* welcome badge + small logo + matching contact pills */
.st-connect-welcome-badge { display: inline-block; margin: 40px auto 0; font-family: var(--font-body); font-weight: 700;
  font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.st-connect-mark { width: 60px; height: 60px; object-fit: contain; display: block; margin: 30px auto 0; }
.st-connect .st-divider { margin-top: 18px; }
.st-contact-cards { display: inline-flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 44px; margin-top: 32px; }
.st-contact-card { display: inline-flex; align-items: center; gap: 11px; box-sizing: border-box; padding: 0;
  background: none; box-shadow: none; color: var(--ink-1); font-family: var(--font-body); font-size: 18px; white-space: nowrap;
  text-decoration: none; transition: color .2s var(--ease-soft); }
.st-contact-card i { font-size: 21px; color: var(--accent); }
.st-contact-card:hover { color: var(--accent); }

/* gold-rule italic divider (home signature motif, reused as a section divider) */
.st-divider { display: flex; align-items: center; justify-content: center; gap: 28px; margin: var(--st-gap-sm) auto;
  max-width: 92%; text-align: center; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.4vw, 32px); color: var(--ink-1); letter-spacing: 0.015em; }
.st-divider::before, .st-divider::after { content: ''; flex: none; width: clamp(32px, 7vw, 62px); height: 2.5px; background: #DCAB5E; }

/* eyebrow gold-dash motif (echoes the medicine-for-the-body divider) */
.st-features-head .st-rule { display: none; }
.st-features-head .st-eyebrow,
.st-offerings-intro .st-eyebrow,
.st-offer-body .st-eyebrow,
.st-connect .st-eyebrow,
.st-events .st-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
}
.st-features-head .st-eyebrow::before, .st-features-head .st-eyebrow::after,
.st-offerings-intro .st-eyebrow::before, .st-offerings-intro .st-eyebrow::after,
.st-offer-body .st-eyebrow::before, .st-offer-body .st-eyebrow::after,
.st-connect .st-eyebrow::before, .st-connect .st-eyebrow::after,
.st-events .st-eyebrow::before, .st-events .st-eyebrow::after {
  content: ''; flex: none; width: 30px; height: 2px; background: var(--gold); margin-top: -0.08em;
}
/* compensate trailing letter-spacing so flanking dashes look symmetric */
.st-features-head .st-eyebrow::after,
.st-offerings-intro .st-eyebrow::after,
.st-offer-body .st-eyebrow::after,
.st-connect .st-eyebrow::after,
.st-events .st-eyebrow::after { margin-left: -0.22em; }
/* left-aligned bio eyebrow: a single leading dash */
.st-bio .st-eyebrow { display: inline-flex; align-items: center; gap: 14px; }
.st-bio .st-eyebrow::before { content: ''; flex: none; width: 26px; height: 2px; background: var(--gold); margin-top: -0.08em; }

/* =========================================================
   FOOTER (injected by site.js)
   ========================================================= */
.st-footer { background: #764035; color: var(--ink-on-dark); margin-top: var(--st-gap); text-align: center; }
.st-footer-inner { max-width: 1180px; margin: 0 auto; padding: 60px 28px 30px; }
.st-footer img { width: 50px; height: 50px; object-fit: contain; margin: 0 auto 14px; }
.st-footer-word { font-family: var(--font-display); font-weight: 500; font-size: 25px; color: var(--cream-50); }
.st-footer-word em { font-style: italic; color: var(--gold); }
.st-footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin: 22px 0; }
.st-footer-nav a { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tan-300); text-decoration: none; transition: color .2s; }
.st-footer-nav a:hover { color: var(--gold); }
.st-footer-email { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--ink-on-dark-2); text-decoration: none; }
.st-footer-email:hover { color: var(--cream-50); }
.st-footer-phone { display: block; margin-top: 10px; font-size: 14px; letter-spacing: .04em; color: var(--ink-on-dark-2); text-decoration: none; }
.st-footer-phone:hover { color: var(--cream-50); }
.st-footer-base { border-top: 1px solid color-mix(in oklab, var(--cream) 12%, transparent); margin-top: 28px; padding-top: 22px; font-size: 13px; color: var(--ink-on-dark-2); }

/* =========================================================
   REVEAL — content is VISIBLE by default. Only once JS confirms the
   animation engine runs (body.st-anim-on) do we hide-then-transition.
   A stray .is-in can never strand content hidden: is-in always = visible.
   ========================================================= */
[data-reveal] { opacity: 1; transform: none; }
body.st-anim-on [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
body.st-anim-on [data-reveal].is-in { opacity: 1; transform: none; }
/* mobile: stronger rise + slower duration so the reveal reads on a fast-scrolling small screen */
@media (max-width: 768px) {
  body.st-anim-on [data-reveal] { transform: translateY(48px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
}
@media (prefers-reduced-motion: reduce) {
  body.st-anim-on [data-reveal] { opacity: 1; transform: none; transition: none; }
}
/* probe keyframe — used by site.js to confirm the animation engine runs */
@keyframes stProbe { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* homepage offering cards: photo 45% / text 55%, text centred to photo height */
@media (min-width: 861px) {
  .st-features:not(.st-features--landing) .st-feature { grid-template-columns: 45fr 55fr; }
  .st-features:not(.st-features--landing) .st-feature.is-reverse { grid-template-columns: 55fr 45fr; }
  /* noticeably larger offering cards on desktop */
  .st-features:not(.st-features--landing) .st-feature { max-width: 1340px; gap: 88px; }
  .st-features:not(.st-features--landing) .st-feature-title { font-size: clamp(42px, 4.8vw, 62px); }
  .st-features:not(.st-features--landing) .st-feature-text { font-size: 21px; line-height: 1.9; max-width: 56ch; }
  .st-features:not(.st-features--landing) .st-features-list { gap: 120px; }
  /* bigger, stronger OFFERINGS label on the homepage */
  .st-features-head .st-eyebrow { font-size: 17px; gap: 22px; }
  .st-features-head .st-eyebrow::before, .st-features-head .st-eyebrow::after { width: 38px; }
  /* long pre-conception detail title stays one line on desktop */
  [data-page="offerings-preconception"] .st-offer-title { white-space: nowrap; font-size: clamp(34px, 4vw, 42px); }
}

@media (max-width: 860px) {
  .st-nav { display: none; }
  .st-burger { display: block; }
  .st-bio { padding-top: 64px; }
  .st-bio-grid { grid-template-columns: 1fr; gap: 34px; }
  .st-bio.is-reverse .st-bio-media { order: 0; }
  .st-features-list { gap: 56px; }
  .st-bio-media { width: 100%; max-width: 380px; margin: 0 auto; }
  .st-feature { grid-template-columns: 1fr; gap: 0; }
  .st-features--landing .st-feature { gap: 0; }
  .st-feature.is-reverse .st-feature-media { order: 0; }
  .st-feature-copy { padding: 0.85rem 0 1.5rem; }
  .st-features-head { margin-bottom: 48px; }
  .st-offer-photo { aspect-ratio: 4 / 3; }
  .st-offer-photo--portrait { aspect-ratio: 3 / 4; max-width: 380px; }
  .st-offer-carousel { max-width: 380px; }
  .st-offer-gallery { max-width: 380px; }
  .st-hero-photo { height: auto; }
  .st-hero-arrow { font-size: 30px; min-width: 36px; min-height: 36px; }
  .st-grid { grid-template-columns: 1fr; gap: 36px; }
  .st-connect-photo .st-photo { aspect-ratio: 4 / 3; }
  .st-connect .st-divider { flex-direction: column; gap: 20px; max-width: 100%; white-space: nowrap; margin: 40px auto;
    font-size: clamp(19px, 5.4vw, 24px); color: #3d2b1f; }
  .st-connect .st-divider::before, .st-connect .st-divider::after { width: 52px; }
  .st-contact-cards { flex-direction: column; gap: 16px; }
  .st-contact-card { width: auto; font-size: 16px; padding: 4px 0; gap: 10px; }
  .st-contact-card + .st-contact-card { border-left: none; }
  .st-connect-welcome-badge { white-space: nowrap; font-size: 12px; letter-spacing: 0.1em; }
  .st-connect-lead { font-size: clamp(17px, 4.6vw, 20px); line-height: 1.45; text-wrap: balance; }
  .st-connect-title { white-space: normal; font-size: clamp(16px, 4.6vw, 19px); line-height: 1.45; max-width: none; }
}

/* hero: portrait crop on phones */
@media (max-width: 768px) {
  .st-hero-photo { height: 82vh; min-height: 460px; }
  .st-hero-slide { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .st-hero-slide--1 { object-position: center 42%; }
  .st-hero-slide--3 { object-position: center center; }
  .st-hero-arrow { min-width: 44px; min-height: 44px; }
  .st-brandblock-mark { display: none; }
  .st-brandblock-title { display: block; font-family: var(--font-display); font-weight: 500; font-size: 34px;
                         line-height: 1; letter-spacing: 0.01em; color: var(--ink-1); margin: 0 0 22px; white-space: nowrap; }
  .st-brandblock { display: none; }
  .st-brandblock-rule { display: block; width: 52px; height: 0.5px; background: #DCAB5E; }
  .st-brandblock-rule--top { margin-bottom: 20px; }
  .st-brandblock-rule--bottom { margin-top: 20px; }
  .st-brandblock-sub { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(19px, 5.4vw, 24px);
                       letter-spacing: 0; text-transform: none; color: #3d2b1f; text-align: center; line-height: 1.3; max-width: none; white-space: nowrap; }
  .st-brandblock-sub span { display: inline; }
  .st-features { margin-top: 52px; }
}

/* PREMIUM — photo float shadow */
.st-feature-media .st-photo,
.st-bio-portrait,
.st-offer-photo--portrait,
.st-offer-gallery,
.st-connect-photo .st-photo {
  box-shadow: 0 6px 20px rgba(58,41,32,0.24), 0 24px 56px rgba(58,41,32,0.22);
}

/* =========================================================
   Offering-card hover states — desktop pointers only, CSS only.
   @media (hover: hover) keeps these off touch / mobile.
   ========================================================= */
@media (hover: hover) {
  /* transitions on the base elements so hover-in AND hover-out animate */
  .st-feature { transition: transform .4s var(--ease-out); }
  .st-feature-media .st-photo { transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
  .st-feature-link { transition: gap .2s var(--ease-soft), border-color .2s var(--ease-soft), color .3s var(--ease-soft); }

  .st-feature:hover { transform: translateY(-4px); }            /* card lifts */
  .st-feature:hover .st-photo {                                  /* photo zooms + shadow deepens */
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(58, 41, 32, 0.30), 0 38px 84px rgba(58, 41, 32, 0.26);
  }
  .st-feature:hover .st-feature-link { color: var(--gold); }    /* Explore link rust -> gold */
}

/* =========================================================
   Mobile only: body/description copy set in Cormorant italic
   (softer, editorial feel at small sizes). Desktop untouched.
   ========================================================= */
@media (max-width: 860px) {
  .st-feature-text,
  .st-bio-prose p,
  .st-offer-desc p,
  .st-offer-item p {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 1.15em;
  }

  /* offerings.html intro: heading fits one line; subtext in Cormorant */
  .st-offerings-title { font-size: clamp(22px, 5.5vw, 28px); }
  .st-offerings-lead { font-family: var(--font-display); font-style: normal; }
}
