/* ============================================================
   Ginger Steg, personal brand hub
   Built around HER assets: book cover (cream + sage + blush poppies)
   and her soft watercolor lavender. Two palettes via data-theme.
   Default "Bloom" = her world. "Garnet" = bolder alternative.
   Fonts: Fraunces (display) + Mulish (body).
   ============================================================ */

:root {
  /* BLOOM (default, harmonizes with her book cover) */
  --ivory: #f5eee4;
  --paper: #fffbf5;
  --wine: #614a83;        /* amethyst plum, the purple she asked for */
  --wine-deep: #46355f;
  --gold: #93a47d;        /* sage from her FF book + logo */
  --gold-soft: #cdd7bd;   /* soft sage */
  --rose: #cf938c;        /* blush poppy from her FF brand */
  --lilac: #b9a7d6;       /* soft lilac accent */
  --ink: #38323f;
  --ink-soft: #6e6678;
  --line: rgba(56, 50, 63, 0.14);

  --display: "Fraunces", Georgia, serif;
  --body: "Mulish", -apple-system, sans-serif;
  --maxw: 1180px;
  --r: 18px;

  /* Editorial Devotional aliases (match experience.html design system) */
  --cream: var(--ivory);
  --plum: var(--wine);
  --plum-deep: var(--wine-deep);
  --sage: var(--gold);
  --sage-deep: #65764f;
  --blush: var(--rose);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(92%, var(--maxw)); margin-inline: auto; }

.eyebrow { font-weight: 800; font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; color: var(--wine); }

/* ---------- No orphans, site-wide. Balance short blocks, prettify body prose. ---------- */
h1, h2, h3, blockquote,
.hero__lede, .subhero p, .section__head p, .mission p, .prose p,
.signup__copy p, .feature__copy p, .pillar p, .door p, .channel p { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body); font-weight: 800; font-size: 1rem; letter-spacing: 0.02em;
  padding: 1rem 1.7rem; border-radius: 100px;
  border: 1.5px solid var(--wine); background: var(--wine); color: var(--paper);
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(71, 63, 89, 0.5); }
.btn--ghost { background: transparent; color: var(--wine); }
.btn--ghost:hover { background: var(--wine); color: var(--paper); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.btn--gold:hover { box-shadow: 0 14px 30px -12px rgba(147, 164, 125, 0.55); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--ivory) 82%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; }
.brandmark { font-family: var(--display); font-weight: 500; font-size: 1.4rem; color: var(--wine); }
.brandmark span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { font-weight: 700; font-size: 0.98rem; transition: color 0.2s; }
.nav__links a:hover { color: var(--gold); }
.nav__links .btn { padding: 0.7rem 1.3rem; }
@media (max-width: 920px) { .nav__links a:not(.btn) { display: none; } }

/* hero */
.hero { position: relative; padding: clamp(4rem, 11vw, 9rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero::after { content: ""; position: absolute; top: -25%; right: -10%; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle at center, color-mix(in srgb, var(--gold-soft) 70%, transparent), transparent 62%); z-index: 0; pointer-events: none; }
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); letter-spacing: -0.015em; margin: 1.2rem 0; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lede { font-size: clamp(1.15rem, 1.8vw, 1.38rem); color: var(--ink-soft); max-width: 36ch; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* portrait, holds her real photo */
.portrait { position: relative; aspect-ratio: 4 / 5; border-radius: 220px 220px var(--r) var(--r); overflow: hidden; border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: 0 40px 80px -40px rgba(71, 63, 89, 0.45); background: linear-gradient(160deg, var(--rose), var(--wine)); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,251,245,0.3); border-radius: inherit; pointer-events: none; }
@media (max-width: 820px) { .hero__in { grid-template-columns: 1fr; } .portrait { max-width: 380px; margin-inline: auto; } }

/* sections */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section__head { max-width: 660px; margin-bottom: 3rem; }
.section__head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 0.8rem 0 1rem; }
.section__head p { color: var(--ink-soft); font-size: 1.12rem; }
.center { text-align: center; margin-inline: auto; }

/* mission */
.mission { text-align: center; max-width: 1000px; margin-inline: auto; }
.mission h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0.9rem 0 1.4rem; text-wrap: balance; }
.mission p { max-width: 66ch; margin-inline: auto; font-size: clamp(1.15rem, 1.8vw, 1.3rem); color: var(--ink-soft); font-family: var(--display); font-style: italic; line-height: 1.55; text-wrap: balance; }

/* Faithfully Flourishing heading: two balanced lines, no orphan word */
#faithfully .feature h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); text-wrap: balance; }

/* Growing section head: one line on desktop */
#next .section__head { max-width: 820px; }
#next .section__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); text-wrap: balance; }

/* Subscribe heading: one line so "inbox" is not an orphan */
#subscribe .signup h2 { font-size: clamp(1.7rem, 2.6vw, 2.15rem); text-wrap: balance; }

/* ---------- ecosystem pillar grid (home: all the rooms of her world) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative; display: flex; flex-direction: column;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.9rem 1.7rem; transition: transform .3s, box-shadow .3s, border-color .3s; overflow: hidden;
}
.section--paper .pillar { background: var(--paper); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--wine), var(--lilac)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.pillar:hover { transform: translateY(-7px); box-shadow: 0 28px 56px -34px rgba(70, 53, 95, 0.42); border-color: color-mix(in srgb, var(--wine) 45%, transparent); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .ico { display: block; width: 30px; height: 30px; margin-bottom: 0.85rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23cf938c'%3E%3Cellipse cx='12' cy='6.6' rx='2.5' ry='3.4'/%3E%3Cellipse cx='16.6' cy='10' rx='3.4' ry='2.5' transform='rotate(40 16.6 10)'/%3E%3Cellipse cx='14.7' cy='15.6' rx='2.5' ry='3.4' transform='rotate(72 14.7 15.6)'/%3E%3Cellipse cx='9.3' cy='15.6' rx='2.5' ry='3.4' transform='rotate(-72 9.3 15.6)'/%3E%3Cellipse cx='7.4' cy='10' rx='3.4' ry='2.5' transform='rotate(-40 7.4 10)'/%3E%3C/g%3E%3Ccircle cx='12' cy='11.6' r='2.4' fill='%2393a47d'/%3E%3C/svg%3E") no-repeat left center; background-size: contain; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 0.45rem; }
.pillar p { color: var(--ink-soft); font-size: 1rem; flex: 1; margin-bottom: 1.1rem; line-height: 1.55; }
.pillar .go { font-weight: 800; color: var(--wine); font-size: 0.95rem; display: inline-flex; gap: 0.45em; transition: gap .25s; }
.pillar:hover .go { gap: 0.85em; }
.pillar .ext { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* external link-out note */
.linkout { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* doors */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .doors { grid-template-columns: 1fr; } }
.door { position: relative; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r); padding: 2.4rem 2rem 2.2rem; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; overflow: hidden; }
.door::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.door:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -34px rgba(71, 63, 89, 0.4); border-color: color-mix(in srgb, var(--gold) 60%, transparent); }
.door:hover::before { transform: scaleX(1); }
.door__num { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem; }
.door h3 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.door p { color: var(--ink-soft); font-size: 1.05rem; flex: 1; margin-bottom: 1.6rem; }
.door__link { font-weight: 800; color: var(--wine); display: inline-flex; gap: 0.5em; transition: gap 0.25s; }
.door:hover .door__link { gap: 0.95em; }
.tag-soon { align-self: flex-start; font-weight: 800; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent); border-radius: 100px; padding: 0.25rem 0.7rem; margin-bottom: 1rem; }

/* feature split (book) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature__media { order: -1; } }
.feature__media { border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 70px -36px rgba(71, 63, 89, 0.5); border: 1px solid var(--line); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
/* full-length / story photos: show the whole subject, never crop at ankles or wrists */
.feature__media--natural { align-self: center; border-radius: 200px 200px var(--r) var(--r); background: linear-gradient(160deg, var(--rose), var(--wine)); }
.feature__media--natural img { height: auto; object-fit: contain; }
/* centered accent photo (groups page intro) */
.groups-photo { width: min(420px, 80%); margin: 2.4rem auto 0; border-radius: 200px 200px var(--r) var(--r); overflow: hidden; border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: 0 30px 70px -38px rgba(71, 63, 89, 0.5); }
.groups-photo img { width: 100%; height: auto; display: block; }
.feature h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.8rem 0 1.3rem; }
.feature p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.1rem; }

/* verse / pull quote */
.verse { background: var(--wine); color: var(--paper); position: relative; overflow: hidden; }
.verse::after { content: ""; position: absolute; inset: auto -10% -40% auto; width: 60vw; height: 60vw; max-width: 620px; max-height: 620px; background: radial-gradient(circle, color-mix(in srgb, var(--gold-soft) 45%, transparent), transparent 60%); }
.verse__in { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.verse .mark { font-family: var(--display); font-size: 5rem; line-height: 0; color: var(--gold-soft); display: block; height: 2.2rem; }
.verse blockquote { font-family: var(--display); font-style: italic; font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.28; color: var(--paper); }
.verse cite { display: block; margin-top: 1.6rem; font-family: var(--body); font-style: normal; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.8rem; color: var(--gold-soft); }

/* connect: 3 IG channels */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 760px) { .channels { grid-template-columns: 1fr; } }
.channel { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.25s, border-color 0.25s; }
.channel:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--gold) 60%, transparent); }
.channel .k { font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
.channel h3 { font-size: 1.3rem; }
.channel p { color: var(--ink-soft); font-size: 0.98rem; }

/* signup / contact */
.signup { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 820px) { .signup { grid-template-columns: 1fr; } }
.signup h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.signup p { color: var(--ink-soft); font-size: 1.1rem; }
.form { display: flex; flex-direction: column; gap: 0.9rem; }
.form__row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.field { flex: 1; min-width: 0; font-family: var(--body); font-size: 1.02rem; padding: 1rem 1.2rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); }
.field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent); }
textarea.field { resize: vertical; min-height: 120px; }
.form__note { font-size: 0.9rem; color: var(--ink-soft); }

/* footer */
.foot { background: var(--wine-deep); color: rgba(255, 251, 245, 0.85); padding: 4rem 0 2.5rem; }
.foot__in { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.foot .brandmark { color: var(--paper); }
.foot__links { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.foot__col h4 { font-family: var(--body); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-soft); margin-bottom: 1rem; }
.foot__col a { display: block; margin-bottom: 0.6rem; opacity: 0.85; transition: opacity 0.2s; }
.foot__col a:hover { opacity: 1; color: var(--gold-soft); }
.foot__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 251, 245, 0.16); font-size: 0.86rem; opacity: 0.7; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* draft tag + theme toggle */
.draft { position: fixed; bottom: 18px; left: 18px; z-index: 9998; background: var(--ink); color: var(--gold-soft); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 0.9rem; border-radius: 100px; border: 1px solid color-mix(in srgb, var(--gold-soft) 40%, transparent); }
.themer { position: fixed; bottom: 18px; right: 18px; z-index: 9998; display: flex; gap: 0.3rem; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 0.3rem; box-shadow: 0 10px 30px -12px rgba(0,0,0,0.25); }
.themer button { font-family: var(--body); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; border: none; background: transparent; color: var(--ink-soft); padding: 0.45rem 0.85rem; border-radius: 100px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.themer button.active { background: var(--wine); color: var(--paper); }

/* reveal: scroll-triggered fade-rise (IntersectionObserver adds .in) */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; } .d2 { transition-delay: 0.18s; } .d3 { transition-delay: 0.31s; } .d4 { transition-delay: 0.44s; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

/* interior page hero */
.subhero { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; }
.subhero::after { content: ""; position: absolute; top: -30%; left: -10%; width: 60vw; height: 60vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, color-mix(in srgb, var(--gold-soft) 60%, transparent), transparent 62%); pointer-events: none; }
.subhero__in { position: relative; z-index: 1; max-width: 760px; }
.subhero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 1rem 0 1.3rem; }
.subhero h1 em { font-style: italic; color: var(--gold); }
.subhero p { font-size: 1.2rem; color: var(--ink-soft); max-width: 54ch; }
.back { font-weight: 800; color: var(--gold); letter-spacing: 0.04em; font-size: 0.92rem; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 2.4rem 0 1rem; }
.prose p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 1.2rem; }
.prose ul { list-style: none; margin: 1rem 0 1.6rem; }
.prose li { position: relative; padding-left: 1.8rem; margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 1.08rem; }
.prose li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   EDITORIAL DEVOTIONAL: shared design system (from experience.html)
   Signature vine, expressive Fraunces heroes, watercolor edge washes,
   asymmetric editorial section, parallax. Applied site-wide.
   ============================================================ */

/* signature: vine drawing down the page */
.vine { position: fixed; top: 0; left: max(2.5vw, 18px); height: 100vh; width: 60px; z-index: 5; pointer-events: none; }
.vine path { fill: none; stroke: var(--sage); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.vine .leaf { fill: var(--sage); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0); }
.vine .bloom { fill: var(--blush); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0); }
@media (max-width: 600px) { .vine { display: none; } }

/* soft watercolor edge accent: a fading wash, never a squared block */
.edgewash { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; filter: saturate(.95);
  background: top right / cover no-repeat;
  -webkit-mask-image: radial-gradient(125% 125% at 100% 0%, #000 26%, transparent 70%);
  mask-image: radial-gradient(125% 125% at 100% 0%, #000 26%, transparent 70%); }

/* ---------------- HOME EDITORIAL HERO ---------------- */
.ehero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.ehero__bg { position: absolute; top: 0; right: 0; width: 58vw; max-width: 760px; height: 78%; z-index: 0; background: url('assets/IMG_7344.jpeg') top right / cover no-repeat; opacity: .5; filter: saturate(.95); -webkit-mask-image: radial-gradient(125% 125% at 100% 0%, #000 28%, transparent 70%); mask-image: radial-gradient(125% 125% at 100% 0%, #000 28%, transparent 70%); }
.ehero__glow { position: absolute; top: -15%; left: -10%; width: 55vw; height: 55vw; max-width: 640px; max-height: 640px; background: radial-gradient(circle, color-mix(in srgb, var(--lilac) 38%, transparent), transparent 62%); z-index: 1; pointer-events: none; }
.ehero__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 2vw; align-items: center; width: min(92%, var(--maxw)); margin-inline: auto; padding-block: 8vh; }
.ehero h1 { font-family: var(--display); font-weight: 300; line-height: 1.04; letter-spacing: -.02em; font-size: clamp(3rem, 7.2vw, 6.2rem); color: var(--plum); margin: 0; }
.ehero h1 .ln { display: block; }
.ehero h1 .ln span { display: block; opacity: 0; transform: translateY(.4em); transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s ease; }
.ehero h1 .ln:nth-child(2) span { transition-delay: .08s; }
.ehero h1 .ln:nth-child(3) span { transition-delay: .16s; }
.ehero h1 .ln:nth-child(4) span { transition-delay: .24s; }
.ehero h1 em { font-style: italic; color: var(--blush); }
.ehero h1 .accent { font-style: italic; color: var(--sage); }
.ehero__lede { margin-top: 1.8rem; max-width: 40ch; font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--ink-soft); opacity: 0; transform: translateY(20px); transition: all 1s ease .9s; }
.ehero__cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; transform: translateY(20px); transition: all 1s ease 1.05s; }
.loaded .ehero h1 .ln span { transform: none; opacity: 1; }
.loaded .ehero__lede, .loaded .ehero__cta { opacity: 1; transform: none; }
.ehero__portrait { position: relative; justify-self: end; width: min(31vw, 380px); aspect-ratio: 1706/2560; border-radius: 230px 230px 16px 16px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: 0 50px 90px -45px rgba(70,53,95,.6); will-change: transform; }
.ehero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ehero__cue { position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%); z-index: 3; font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep); opacity: 0; transition: opacity 1s ease 1.4s; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.loaded .ehero__cue { opacity: .8; }
.ehero__cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--sage-deep), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 820px) { .ehero__in { grid-template-columns: 1fr; gap: 3rem; } .ehero__portrait { justify-self: center; width: min(70vw, 340px); } }

/* ---------------- EXPRESSIVE SUBHERO (room pages) ---------------- */
.subhero h1 { font-weight: 300; line-height: 1.04; letter-spacing: -.02em; }
.subhero__wash { position: absolute; top: 0; right: 0; width: 50vw; max-width: 620px; height: 100%; z-index: 0; background: url('assets/IMG_7344.jpeg') top right / cover no-repeat; opacity: .4; filter: saturate(.92); -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000 22%, transparent 68%); mask-image: radial-gradient(120% 120% at 100% 0%, #000 22%, transparent 68%); }

/* ---------------- ASYMMETRIC EDITORIAL SECTION ---------------- */
.editorial { position: relative; padding: clamp(5rem, 14vw, 12rem) 0; overflow: hidden; }
.editorial__in { position: relative; z-index: 1; width: min(86%, 1100px); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
@media (min-width: 1025px) { .editorial__in { padding-left: 3rem; } }
@media (max-width: 820px) { .editorial__in { grid-template-columns: 1fr; gap: 2rem; } }
.editorial .label { font-weight: 800; letter-spacing: .32em; text-transform: uppercase; font-size: .74rem; color: var(--sage-deep); }
.editorial h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.04; color: var(--plum); margin-top: 1rem; text-wrap: balance; }
.editorial h2 em { font-style: italic; color: var(--blush); }
.editorial .body p { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 1.3rem; text-wrap: pretty; }
.editorial .body p:first-child::first-letter { font-family: var(--display); font-style: italic; font-size: 4.2rem; line-height: .7; float: left; padding: .1em .12em 0 0; color: var(--sage); }
.editorial .pulled { font-family: var(--display); font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--plum); line-height: 1.35; border-left: 3px solid var(--gold); padding-left: 1.4rem; margin-top: 1rem; text-wrap: pretty; }

@media (prefers-reduced-motion: reduce) {
  .ehero h1 .ln span, .ehero__lede, .ehero__cta, .ehero__cue { transition: none !important; transform: none !important; opacity: 1 !important; }
  .vine path { stroke-dashoffset: 0 !important; }
  .vine .leaf, .vine .bloom { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ADDED MOTION (tasteful, soft): staggered grid reveals,
   gentle hover micro-interactions, soft ambient drift.
   All guarded by prefers-reduced-motion below.
   ============================================================ */

/* Staggered grid reveals: children fade-rise in sequence when their
   grid (which carries .reveal) enters. motion.js sets --si per child. */
.stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--si, 0) * .08s);
}
.stagger.in > * { opacity: 1; transform: none; }

/* Gentle hover micro-interactions: a touch of scale on top of the
   existing lift, a soft glow on buttons. Understated. */
.pillar, .door { transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .3s; }
.pillar:hover { transform: translateY(-7px) scale(1.012); }
.door:hover { transform: translateY(-8px) scale(1.012); }
.channel:hover { transform: translateY(-5px) scale(1.012); }
.btn:hover { box-shadow: 0 16px 34px -12px rgba(71, 63, 89, 0.55), 0 0 0 4px color-mix(in srgb, var(--wine) 12%, transparent); }
.btn--gold:hover { box-shadow: 0 16px 34px -12px rgba(147, 164, 125, 0.6), 0 0 0 4px color-mix(in srgb, var(--gold) 16%, transparent); }

/* Slow ambient drift on the hero glow wash (very low amplitude). */
@keyframes gs-drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(2.2%, 1.6%); } }
.ehero__glow { animation: gs-drift 16s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pillar:hover, .door:hover, .channel:hover { transform: none !important; }
  .ehero__glow { animation: none !important; }
}

/* ============================================================
   STORE: cart link in nav, product grid, cart drawer, checkout states
   Built in her Bloom palette using the existing card + button system.
   ============================================================ */

/* cart link + count badge in the nav */
.nav__cart { position: relative; display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-size: 0.98rem; color: var(--wine); transition: color 0.2s; }
.nav__cart:hover { color: var(--gold); }
.nav__cart .bag { width: 22px; height: 22px; display: inline-block; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23614a83' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 12H7L6 8Z'/%3E%3Cpath d='M9 8a3 3 0 0 1 6 0'/%3E%3C/svg%3E") no-repeat center / contain; }
.nav__count { min-width: 1.45em; height: 1.45em; padding: 0 0.4em; display: inline-flex; align-items: center; justify-content: center; border-radius: 100px; background: var(--rose); color: var(--paper); font-size: 0.74rem; font-weight: 800; line-height: 1; }
.nav__count.is-empty { background: var(--gold-soft); color: var(--wine-deep); }
@media (max-width: 920px) { .nav__cart { display: inline-flex; } }

/* product grid */
.shopgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 900px) { .shopgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shopgrid { grid-template-columns: 1fr; } }
.product { position: relative; display: flex; flex-direction: column; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .3s; }
.section--paper .product { background: var(--paper); }
.product:hover { transform: translateY(-7px) scale(1.012); box-shadow: 0 28px 56px -34px rgba(70, 53, 95, 0.42); border-color: color-mix(in srgb, var(--wine) 45%, transparent); }
.product__media { aspect-ratio: 3 / 2; overflow: hidden; background: linear-gradient(160deg, var(--gold-soft), var(--rose)); border-bottom: 1px solid var(--line); }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__body { display: flex; flex-direction: column; flex: 1; padding: 1.6rem 1.5rem 1.7rem; }
.product__tag { align-self: flex-start; font-weight: 800; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent); border-radius: 100px; padding: 0.22rem 0.65rem; margin-bottom: 0.9rem; }
.product h3 { font-size: 1.35rem; margin-bottom: 0.5rem; line-height: 1.12; }
.product__blurb { color: var(--ink-soft); font-size: 1rem; flex: 1; margin-bottom: 1.2rem; line-height: 1.55; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product__price { font-family: var(--display); font-size: 1.5rem; color: var(--wine); }
.product .btn { padding: 0.75rem 1.25rem; font-size: 0.94rem; }
.product .btn.added { background: var(--gold); border-color: var(--gold); }

/* cart drawer */
.cart-toggle { background: none; border: none; cursor: pointer; font: inherit; }
.cart-scrim { position: fixed; inset: 0; z-index: 200; background: rgba(56, 50, 63, 0.42); opacity: 0; visibility: hidden; transition: opacity .3s; backdrop-filter: blur(2px); }
.cart-scrim.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 201; width: min(420px, 92vw); height: 100%; background: var(--paper); border-left: 1px solid var(--line); box-shadow: -30px 0 70px -40px rgba(70, 53, 95, 0.6); transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
@media (prefers-reduced-motion: reduce) { .cart-scrim, .cart-drawer { transition: none; } }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart-drawer__head h2 { font-size: 1.6rem; }
.cart-close { background: none; border: 1px solid var(--line); border-radius: 100px; width: 2.3rem; height: 2.3rem; cursor: pointer; color: var(--ink); font-size: 1.3rem; line-height: 1; transition: background .2s, color .2s; }
.cart-close:hover { background: var(--wine); color: var(--paper); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; }
.cart-empty { color: var(--ink-soft); text-align: center; padding: 2.5rem 0; font-size: 1.05rem; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__img { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--gold-soft); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { font-family: var(--display); font-size: 1.05rem; color: var(--wine); line-height: 1.15; }
.cart-line__price { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.cart-qty { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 0.5rem; }
.cart-qty button { width: 1.7rem; height: 1.7rem; border-radius: 8px; border: 1px solid var(--line); background: var(--ivory); color: var(--wine); font-weight: 800; cursor: pointer; line-height: 1; font-size: 1rem; transition: background .2s, color .2s; }
.cart-qty button:hover { background: var(--wine); color: var(--paper); }
.cart-qty span { min-width: 1.4rem; text-align: center; font-weight: 700; }
.cart-line__remove { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 0.82rem; font-weight: 700; text-decoration: underline; padding: 0; margin-top: 0.4rem; }
.cart-line__remove:hover { color: var(--rose); }
.cart-foot { border-top: 1px solid var(--line); padding: 1.4rem 1.6rem 1.7rem; background: var(--ivory); }
.cart-foot__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-foot__row .k { font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.76rem; color: var(--ink-soft); }
.cart-foot__row .v { font-family: var(--display); font-size: 1.7rem; color: var(--wine); }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.9rem; text-align: center; line-height: 1.45; }
.cart-note.show-preview { color: var(--wine-deep); background: color-mix(in srgb, var(--gold-soft) 45%, transparent); border-radius: 12px; padding: 0.8rem 0.9rem; }

/* checkout result pages */
.result { min-height: 70vh; display: flex; align-items: center; }
.result__in { max-width: 640px; margin-inline: auto; text-align: center; }
.result h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1rem; }
.result h1 em { font-style: italic; color: var(--gold); }
.result p { color: var(--ink-soft); font-size: 1.18rem; margin-bottom: 1.8rem; max-width: 50ch; margin-inline: auto; }
.result .btn { margin: 0 0.4rem 0.6rem; }
.result__bloom { width: 64px; height: 64px; margin: 0 auto 1.4rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23cf938c'%3E%3Cellipse cx='12' cy='6.6' rx='2.5' ry='3.4'/%3E%3Cellipse cx='16.6' cy='10' rx='3.4' ry='2.5' transform='rotate(40 16.6 10)'/%3E%3Cellipse cx='14.7' cy='15.6' rx='2.5' ry='3.4' transform='rotate(72 14.7 15.6)'/%3E%3Cellipse cx='9.3' cy='15.6' rx='2.5' ry='3.4' transform='rotate(-72 9.3 15.6)'/%3E%3Cellipse cx='7.4' cy='10' rx='3.4' ry='2.5' transform='rotate(-40 7.4 10)'/%3E%3C/g%3E%3Ccircle cx='12' cy='11.6' r='2.4' fill='%2393a47d'/%3E%3C/svg%3E") no-repeat center / contain; }

/* ============================================================
   LINK-IN-BIO: mobile-first vertical button stack in Bloom branding
   ============================================================ */
.links-page { min-height: 100vh; padding: clamp(2.5rem, 8vw, 4rem) 0 4rem; display: flex; align-items: flex-start; justify-content: center; position: relative; overflow: hidden; }
.links-page__glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 120vw; max-width: 640px; height: 480px; background: radial-gradient(circle, color-mix(in srgb, var(--lilac) 34%, transparent), transparent 64%); z-index: 0; pointer-events: none; }
.links-wrap { position: relative; z-index: 1; width: min(94%, 460px); margin-inline: auto; text-align: center; }
.links-photo { width: 132px; height: 132px; margin: 0 auto 1.2rem; border-radius: 100px; overflow: hidden; border: 3px solid var(--paper); box-shadow: 0 22px 44px -22px rgba(70, 53, 95, 0.55); background: linear-gradient(160deg, var(--rose), var(--wine)); }
.links-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.links-name { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 8vw, 2.6rem); color: var(--wine); line-height: 1.05; }
.links-name .dot { color: var(--gold); }
.links-tag { color: var(--ink-soft); font-size: 1.06rem; margin-top: 0.5rem; line-height: 1.45; text-wrap: balance; }
.links-bloom { width: 30px; height: 30px; margin: 1.1rem auto 1.4rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23cf938c'%3E%3Cellipse cx='12' cy='6.6' rx='2.5' ry='3.4'/%3E%3Cellipse cx='16.6' cy='10' rx='3.4' ry='2.5' transform='rotate(40 16.6 10)'/%3E%3Cellipse cx='14.7' cy='15.6' rx='2.5' ry='3.4' transform='rotate(72 14.7 15.6)'/%3E%3Cellipse cx='9.3' cy='15.6' rx='2.5' ry='3.4' transform='rotate(-72 9.3 15.6)'/%3E%3Cellipse cx='7.4' cy='10' rx='3.4' ry='2.5' transform='rotate(-40 7.4 10)'/%3E%3C/g%3E%3Ccircle cx='12' cy='11.6' r='2.4' fill='%2393a47d'/%3E%3C/svg%3E") no-repeat center / contain; opacity: 0.9; }
.links-stack { display: flex; flex-direction: column; gap: 0.85rem; }
.link-btn { display: flex; align-items: center; justify-content: center; gap: 0.6em; width: 100%; min-height: 62px; padding: 1.05rem 1.4rem; border-radius: 16px; background: var(--paper); border: 1.5px solid color-mix(in srgb, var(--wine) 26%, transparent); color: var(--wine); font-family: var(--body); font-weight: 800; font-size: 1.08rem; letter-spacing: 0.01em; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s; }
.link-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(70, 53, 95, 0.45); background: var(--wine); color: var(--paper); border-color: var(--wine); }
.link-btn--primary { background: var(--wine); color: var(--paper); border-color: var(--wine); }
.link-btn--primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.link-btn--gold { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.link-btn--gold:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.links-social-label { margin: 1.8rem 0 0.6rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
.links-foot { margin-top: 2rem; font-size: 0.84rem; color: var(--ink-soft); }
.links-foot a { color: var(--wine); font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .link-btn:hover { transform: none; } }
