:root {
  --paper: #fbf6ed;
  --paper-2: #f4eadb;
  --paper-3: #fffaf2;
  --ink: #2f3b34;
  --soft-ink: #647066;
  --muted: #827c70;
  --sage: #b9c6ad;
  --sage-dark: #72846d;
  --reader: #f6dccf;
  --paperpen: #f4e8bc;
  --mystic: #dfd9ef;
  --mist: #d7e4df;
  --rose: #e5c3c8;
  --line: rgba(47, 59, 52, 0.14);
  --shadow: 0 20px 65px rgba(87, 67, 44, 0.12);
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); color: var(--ink); }
body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 9% 9%, rgba(246, 220, 207, 0.62), transparent 24rem),
    radial-gradient(circle at 78% 12%, rgba(221, 213, 234, 0.52), transparent 25rem),
    radial-gradient(circle at 46% 48%, rgba(244, 232, 188, 0.38), transparent 30rem),
    radial-gradient(circle at 82% 82%, rgba(215, 228, 223, 0.52), transparent 27rem),
    linear-gradient(180deg, var(--paper-3), var(--paper) 44%, #f1e3cf);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.nav { position: sticky; top: 0; z-index: 20; background: rgba(251, 246, 237, 0.86); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { font-family: var(--serif); font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--soft-ink); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; }
.nav-links a:hover, .footer-links a:hover, .text-link:hover { color: var(--ink); }
.nav-menu { position: relative; display: none; }
.nav-menu summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary::after { content: "+"; font-size: 17px; line-height: 1; }
.nav-menu[open] summary::after { content: "×"; }
.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(251, 246, 237, 0.98);
  box-shadow: var(--shadow);
}
.mobile-nav-panel a {
  display: block;
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { background: rgba(185, 198, 173, 0.2); color: var(--ink); }
.pill-link { padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.46); }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; text-wrap: pretty; }
h1 { max-width: 760px; color: #435449; font-size: clamp(43px, 6.5vw, 84px); line-height: 1.06; letter-spacing: -0.025em; }
h2 { color: #49594e; font-size: clamp(38px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.025em; }
h3 { color: #526157; }
.hush { color: #776d8b; font-style: italic; }
.eyebrow, .section-kicker, .card-kicker {
  display: inline-flex;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow { align-items: center; gap: 10px; margin-bottom: 20px; padding: 10px 14px; border: 1px solid rgba(114, 132, 109, 0.18); border-radius: 999px; background: rgba(255, 255, 255, 0.38); }
.eyebrow::before { width: 9px; height: 9px; content: ""; border-radius: 50%; background: linear-gradient(135deg, var(--reader), var(--mystic)); box-shadow: 0 0 0 5px rgba(246, 220, 207, 0.28); }
.hero-copy { max-width: 690px; margin: 24px 0 0; color: var(--soft-ink); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.68; }
.microcopy { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.hero { min-height: calc(100vh - 74px); display: grid; align-items: center; padding: 70px 0 86px; }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid rgba(47, 59, 52, 0.2); border-radius: 999px; background: rgba(255, 255, 255, 0.42); color: var(--ink); box-shadow: 0 8px 22px rgba(87, 67, 44, 0.05); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; transition: 0.2s ease; }
.btn:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.7); border-color: rgba(47, 59, 52, 0.32); }
.btn.primary { border-color: #809174; background: #809174; color: #fffaf2; box-shadow: 0 12px 32px rgba(114, 132, 109, 0.22); }
.btn.primary:hover { background: #72846d; }
.btn:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }

.product-field { position: relative; min-height: 620px; overflow: hidden; padding: 24px; border: 1px solid rgba(47, 59, 52, 0.12); border-radius: 44px; background: radial-gradient(circle at 18% 18%, rgba(246, 220, 207, 0.78), transparent 18rem), radial-gradient(circle at 86% 8%, rgba(221, 213, 234, 0.66), transparent 17rem), radial-gradient(circle at 42% 92%, rgba(244, 232, 188, 0.62), transparent 19rem), linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2)); box-shadow: var(--shadow); }
.product-field::before { position: absolute; inset: 20px; content: ""; border: 1px solid rgba(47, 59, 52, 0.08); border-radius: 34px; }
.product-main, .product-side { position: absolute; z-index: 1; overflow: hidden; background: white; box-shadow: 0 18px 48px rgba(62, 47, 31, 0.12); }
.product-main { right: 4%; top: 5%; width: min(470px, 78%); border-radius: 28px; transform: rotate(0.4deg); }
.product-side { left: 5%; bottom: 6%; width: min(235px, 38%); border-radius: 24px; transform: rotate(-2deg); }

.home-hero { min-height: auto; padding: 46px 0 54px; }
.home-hero h1 { max-width: 650px; font-size: clamp(43px, 5.35vw, 68px); }
.home-hero .hero-copy { max-width: 620px; margin-top: 18px; font-size: clamp(17px, 1.55vw, 20px); line-height: 1.6; }
.home-hero .actions { margin-top: 24px; }
.home-hero .product-field { min-height: 440px; }

section { padding: 92px 0; border-top: 1px solid var(--line); }
.first-section { padding-top: 32px; border-top: 0; }
.section-head { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 48px; align-items: start; margin-bottom: 38px; }
.compact-head > div h2 { margin-top: 9px; }
.lead { max-width: 740px; margin: 0; color: var(--soft-ink); font-size: 19px; line-height: 1.7; }
.pathway-first { padding-bottom: 70px; }
.pathway-head { display: block; margin-bottom: 24px; }
.pathway-head h2 { max-width: 650px; font-size: clamp(36px, 4.4vw, 58px); }
.pathway-door-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.pathway-door {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(87, 67, 44, 0.05);
  transition: 0.2s ease;
}
.pathway-door:hover { transform: translateY(-3px); border-color: rgba(47, 59, 52, 0.24); }
.pathway-index { color: rgba(47, 59, 52, 0.38); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; }
.pathway-cue { margin-top: 28px; color: var(--sage-dark); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.pathway-door h3 { margin: 8px 0 22px; font-size: 25px; line-height: 1.08; }
.pathway-door .text-link { margin-top: auto; font-size: 11px; }
.pathway-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.breath-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.breath { min-height: 138px; padding: 24px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: 0 16px 38px rgba(87, 67, 44, 0.05); }
.breath:nth-child(1) { background: linear-gradient(145deg, rgba(246, 220, 207, 0.48), rgba(255, 255, 255, 0.32)); }
.breath:nth-child(2) { background: linear-gradient(145deg, rgba(244, 232, 188, 0.48), rgba(255, 255, 255, 0.32)); }
.breath:nth-child(3) { background: linear-gradient(145deg, rgba(221, 213, 234, 0.48), rgba(255, 255, 255, 0.32)); }
.breath:nth-child(4) { background: linear-gradient(145deg, rgba(215, 228, 223, 0.52), rgba(255, 255, 255, 0.32)); }
.breath span { display: block; margin-bottom: 12px; color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.breath p, .step p { margin: 0; color: var(--soft-ink); line-height: 1.58; }

.guide-grid { display: grid; gap: 16px; }
.featured-grid, .library-grid { grid-template-columns: repeat(2, 1fr); }
.avatar-grid { grid-template-columns: repeat(3, 1fr); }
.related-grid { grid-template-columns: repeat(3, 1fr); }
.guide-card { position: relative; min-height: 310px; display: flex; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 255, 255, 0.42); box-shadow: 0 16px 40px rgba(87, 67, 44, 0.055); transition: 0.2s ease; }
.guide-card::after { position: absolute; right: -45px; bottom: -45px; width: 150px; height: 150px; content: ""; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 50%; background: rgba(255, 255, 255, 0.25); }
.guide-card:hover { transform: translateY(-3px); border-color: rgba(47, 59, 52, 0.24); }
.guide-card h3 { max-width: 500px; margin: 16px 0 12px; font-size: 34px; line-height: 1.08; }
.guide-card p { max-width: 590px; margin: 0 0 24px; color: var(--soft-ink); line-height: 1.62; }
.guide-card .text-link { margin-top: auto; }
.text-link { position: relative; z-index: 1; color: var(--sage-dark); font-size: 13px; font-weight: 750; letter-spacing: 0.06em; }
.tone-reader, .tone-selfcare { background: linear-gradient(145deg, rgba(246, 220, 207, 0.7), rgba(255, 255, 255, 0.4)); }
.tone-artist, .tone-gentle, .tone-travel { background: linear-gradient(145deg, rgba(215, 228, 223, 0.72), rgba(255, 255, 255, 0.4)); }
.tone-wanderer, .tone-holiday { background: linear-gradient(145deg, rgba(229, 195, 200, 0.58), rgba(255, 255, 255, 0.4)); }
.tone-paperpen, .tone-rainy { background: linear-gradient(145deg, rgba(244, 232, 188, 0.74), rgba(255, 255, 255, 0.4)); }
.tone-mystic { background: linear-gradient(145deg, rgba(221, 213, 234, 0.74), rgba(255, 255, 255, 0.4)); }
.section-action { margin-top: 26px; text-align: center; }

.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: step; }
.step { padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, 0.38); box-shadow: 0 16px 38px rgba(87, 67, 44, 0.05); }
.step::before { display: block; margin-bottom: 16px; counter-increment: step; content: "0" counter(step); color: #b98972; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; }
.step h3 { margin-bottom: 10px; font-size: 28px; }

.list-section { padding: 60px 0; }
.list-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 44px; border: 1px solid rgba(114, 132, 109, 0.2); border-radius: 34px; background: linear-gradient(135deg, rgba(185, 198, 173, 0.28), rgba(255, 255, 255, 0.48)); }
.list-panel h2 { margin: 10px 0 18px; font-size: clamp(38px, 4.5vw, 60px); }
.email-placeholder { padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.5); }
.email-placeholder label { display: block; margin-bottom: 9px; color: var(--soft-ink); font-size: 13px; }
.email-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 16px; }
.email-row input { min-height: 50px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.72); color: var(--ink); }

.page-hero { padding: 96px 0 58px; }
.narrow-hero { max-width: 980px; margin-inline: auto; }
.affiliate-disclosure-line { margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; }
.affiliate-disclosure-line strong { color: var(--soft-ink); }

.guide-hero { padding: 86px 0 72px; border-bottom: 1px solid var(--line); }
.guide-hero-inner { max-width: 970px; }
.guide-hero h1 { margin-top: 14px; }
.breadcrumb { display: block; width: fit-content; margin-bottom: 36px; color: var(--sage-dark); font-size: 13px; }
.breadcrumb::before { content: "← "; }
.best-for { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.best-for span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.44); color: var(--soft-ink); font-size: 13px; }
.guide-article { padding-top: 52px; }
.article-intro { max-width: 850px; margin: 0 auto; padding: 28px 0 80px; }
.article-intro p { margin: 14px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); line-height: 1.45; }
.article-section { padding-inline: 0; }
.article-heading { max-width: 760px; margin-bottom: 34px; }
.article-heading h2 { margin: 10px 0 14px; }
.article-heading p { margin: 0; color: var(--soft-ink); font-size: 18px; line-height: 1.65; }
.item-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; counter-reset: item; }
.item-card { position: relative; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 255, 255, 0.43); box-shadow: 0 16px 40px rgba(87, 67, 44, 0.05); }
.item-card:nth-child(5) { grid-column: 1 / -1; min-height: 0; }
.item-number::before { counter-increment: item; content: "0" counter(item); color: #b98972; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; }
.item-card h3 { margin: 18px 0 12px; font-size: 31px; }
.item-card > p { margin: 0 0 24px; color: var(--soft-ink); line-height: 1.62; }
.item-card dl { margin: 0; }
.item-card dl div { padding: 13px 0; border-top: 1px solid var(--line); }
.item-card dt { margin-bottom: 4px; color: var(--sage-dark); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.item-card dd { margin: 0; color: var(--soft-ink); line-height: 1.55; }
.ritual-section { border-top: 1px solid var(--line); }
.ritual-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: ritual; }
.ritual-list li { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.38); color: var(--soft-ink); line-height: 1.6; }
.ritual-list li::before { display: block; margin-bottom: 20px; counter-increment: ritual; content: counter(ritual); color: var(--sage-dark); font-family: var(--serif); font-size: 34px; }
.editorial-details { margin: 0 0 70px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--soft-ink); }
.editorial-details summary { width: fit-content; color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
.editorial-details p { max-width: 820px; margin: 14px 0 0; line-height: 1.65; }

.wide-page-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: end; }
.exhale-section { background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(185, 198, 173, 0.08)); }

.purchase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.purchase-card { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); }
.purchase-card h3 { max-width: 520px; margin: 16px 0 14px; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.04; }
.purchase-card > p { color: var(--soft-ink); font-size: 17px; line-height: 1.67; }
.purchase-card .btn { margin-top: 24px; }
.purchase-owned { background: linear-gradient(145deg, rgba(246, 220, 207, 0.8), rgba(255, 255, 255, 0.52)); }
.purchase-curated { background: linear-gradient(145deg, rgba(221, 213, 234, 0.72), rgba(255, 255, 255, 0.52)); }
.purchase-number { position: absolute; right: 28px; top: 22px; color: rgba(47, 59, 52, 0.18); font-family: var(--serif); font-size: 76px; }
.purchase-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.purchase-images img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 20px; }
.mini-category-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.mini-category-cloud span, .preference-chips span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.5); color: var(--soft-ink); font-size: 13px; }
.affiliate-copy { padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px !important; }
.affiliate-copy strong { color: var(--ink); }
.compact-shopping { padding: 72px 0; }
.compact-shopping .section-head { display: block; margin-bottom: 26px; }
.compact-shopping .purchase-card { padding: 28px; border-radius: 28px; }
.compact-shopping .purchase-card h3 { margin: 12px 0 10px; font-size: clamp(34px, 3.6vw, 48px); }
.compact-shopping .purchase-card > p { margin: 0; font-size: 16px; }
.compact-shopping .purchase-number { font-size: 58px; }
.compact-shopping .purchase-images { max-width: 430px; margin-top: 18px; }
.compact-shopping .purchase-images img { border-radius: 17px; }
.compact-shopping .purchase-card .btn { margin-top: 18px; }
.compact-shopping .mini-category-cloud { margin: 22px 0 4px; }

.quiz-invite-panel { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 52px; align-items: center; padding: 46px; border: 1px solid rgba(114, 132, 109, 0.2); border-radius: 38px; background: linear-gradient(135deg, rgba(185, 198, 173, 0.28), rgba(255, 255, 255, 0.5)); box-shadow: var(--shadow); }
.quiz-invite-panel h2 { margin: 10px 0 18px; }
.quiz-invite-panel blockquote { margin: 0; padding: 34px; border-radius: 28px; background: rgba(255, 250, 242, 0.76); box-shadow: 0 16px 40px rgba(87, 67, 44, 0.06); }
.quiz-invite-panel blockquote p { margin: 0; color: #526157; font-family: var(--serif); font-size: 28px; line-height: 1.5; }
.compact-quiz-invite { padding: 64px 0; }
.compact-quiz-panel { grid-template-columns: 1.4fr auto; gap: 32px; padding: 34px 38px; border-radius: 30px; }
.compact-quiz-panel h2 { font-size: clamp(36px, 4.2vw, 54px); }
.compact-quiz-panel .lead { font-size: 17px; }
.compact-quiz-panel .actions { margin-top: 0; }
.home-guides { padding-top: 72px; }
.home-guides .section-head { display: block; }
.home-featured-grid { grid-template-columns: repeat(3, 1fr); }
.home-featured-grid .guide-card { min-height: 275px; padding: 24px; }
.home-featured-grid .guide-card h3 { font-size: 29px; }
.home-blog { padding: 72px 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(221, 213, 234, 0.11)); }
.home-blog .section-head { align-items: end; }
.home-blog .section-head > p { max-width: 520px; margin: 0; color: var(--soft-ink); font-size: 17px; line-height: 1.65; }
.home-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-blog-grid .blog-card { min-height: 310px; padding: 25px; }
.home-blog-grid .blog-card h3 { font-size: clamp(27px, 2.7vw, 36px); }
.about-teaser { padding: 72px 0; }
.about-teaser-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-teaser h2 { max-width: 620px; margin-top: 10px; font-size: clamp(38px, 4.5vw, 60px); }
.about-teaser p { max-width: 670px; margin: 0 0 24px; color: var(--soft-ink); font-size: 18px; line-height: 1.7; }
.founder-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 22px; }
.founder-mini {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
}
.founder-mini img { width: 76px; height: 76px; object-fit: cover; border-radius: 16px; }
.founder-mini figcaption { display: grid; gap: 4px; color: var(--soft-ink); font-size: 13px; line-height: 1.35; }
.founder-mini strong { color: var(--ink); font-family: var(--serif); font-size: 20px; font-weight: 500; }

.owned-product-grid { display: grid; gap: 20px; margin-top: 28px; }
.owned-product-card { display: grid; grid-template-columns: minmax(260px, 0.85fr) 1.15fr; gap: 38px; align-items: center; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: 34px; background: rgba(255, 255, 255, 0.44); box-shadow: 0 18px 48px rgba(62, 47, 31, 0.07); }
.owned-product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.owned-product-card h2 { margin: 10px 0 14px; font-size: clamp(35px, 4.5vw, 58px); }
.owned-product-card p { max-width: 680px; margin: 0 0 24px; color: var(--soft-ink); font-size: 17px; line-height: 1.65; }
.next-path { background: rgba(244, 232, 188, 0.18); }
.split-purchase { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.split-purchase h2 { margin: 10px 0 16px; }
.split-purchase .actions { justify-content: flex-end; margin-top: 0; }
.split-purchase-compact { margin-top: 26px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 255, 255, 0.46); }
.split-purchase-compact h3 { margin: 10px 0 12px; font-size: 30px; }
.split-purchase-compact p { margin: 0; color: var(--soft-ink); line-height: 1.65; }

.shop-hero { display: block; padding: 48px 0 30px; }
.shop-hero-copy { max-width: 820px; }
.shop-hero h1 { font-size: clamp(43px, 5vw, 66px); }
.shop-hero .hero-copy { margin-top: 16px; font-size: 18px; line-height: 1.6; }
.shop-hero .actions { margin-top: 20px; }
.shop-main-section { padding-top: 24px; }
.starter-shelf-head { margin-bottom: 18px; }
.starter-shelf-head h2 { margin-top: 9px; font-size: clamp(34px, 4vw, 50px); }
.starter-shelf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.starter-shelf { min-height: 185px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 34px rgba(87, 67, 44, 0.045); transition: 0.2s ease; }
.starter-shelf:hover { transform: translateY(-2px); border-color: rgba(47, 59, 52, 0.24); }
.starter-shelf h3 { margin: 12px 0 8px; font-size: 29px; line-height: 1.08; }
.starter-shelf p { margin: 0 0 18px; color: var(--soft-ink); line-height: 1.5; }
.starter-shelf .text-link { margin-top: auto; }
.catalog-controls { display: grid; grid-template-columns: 0.8fr 0.8fr 1.4fr; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, 0.44); }
.catalog-controls label { display: block; margin: 0 0 8px; color: var(--sage-dark); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.catalog-controls select, .catalog-controls input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.78); color: var(--ink); }
.catalog-meta { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; margin: 24px 0 18px; }
.catalog-meta strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.catalog-meta p { margin: 0; color: var(--muted); font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { min-height: 310px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, 0.46); box-shadow: 0 16px 38px rgba(87, 67, 44, 0.05); }
.product-card:nth-child(6n + 1), .product-card:nth-child(6n + 5) { background: linear-gradient(145deg, rgba(246, 220, 207, 0.56), rgba(255, 255, 255, 0.42)); }
.product-card:nth-child(6n + 2), .product-card:nth-child(6n + 6) { background: linear-gradient(145deg, rgba(215, 228, 223, 0.62), rgba(255, 255, 255, 0.42)); }
.product-card:nth-child(6n + 3) { background: linear-gradient(145deg, rgba(244, 232, 188, 0.62), rgba(255, 255, 255, 0.42)); }
.product-card:nth-child(6n + 4) { background: linear-gradient(145deg, rgba(221, 213, 234, 0.62), rgba(255, 255, 255, 0.42)); }
.product-card-top { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.product-avatar, .product-category { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.46); color: var(--soft-ink); font-size: 11px; }
.product-card h2 { margin-bottom: 10px; color: #526157; font-size: 25px; line-height: 1.15; }
.product-why { margin: 0 0 20px; color: var(--soft-ink); line-height: 1.6; }
.product-card-footer { display: flex; gap: 13px; align-items: center; margin-top: auto; }
.product-link { flex: 1; }
.empty-state { padding: 50px; border: 1px solid var(--line); border-radius: 28px; text-align: center; background: rgba(255, 255, 255, 0.42); }
.empty-state h2 { font-size: 38px; }
.empty-state p { color: var(--soft-ink); }
.catalog-care { margin-top: 44px; margin-bottom: 0; }

.quiz-shell { max-width: 900px; }
.quiz-progress { height: 8px; overflow: hidden; margin-top: 28px; border-radius: 999px; background: rgba(47, 59, 52, 0.1); }
.quiz-progress span { display: block; height: 100%; width: 10%; border-radius: inherit; background: linear-gradient(90deg, var(--sage-dark), #b98972, #887a9f); transition: width 0.25s ease; }
.quiz-progress-text { margin: 12px 0 28px; color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.quiz-question { margin: 0; padding: 0; border: 0; }
.quiz-question legend { max-width: 780px; padding: 0; color: #49594e; font-family: var(--serif); font-size: clamp(36px, 5vw, 58px); line-height: 1.08; }
.quiz-instruction { margin: 16px 0 24px; color: var(--soft-ink); font-size: 17px; }
.quiz-answer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quiz-answer-grid input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-answer { min-height: 92px; display: flex; gap: 14px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, 0.44); color: var(--ink); line-height: 1.5; cursor: pointer; transition: 0.18s ease; }
.quiz-answer:hover { transform: translateY(-1px); border-color: rgba(47, 59, 52, 0.28); background: rgba(255, 255, 255, 0.7); }
.quiz-answer-marker { flex: 0 0 auto; width: 24px; height: 24px; border: 2px solid rgba(47, 59, 52, 0.3); border-radius: 50%; background: rgba(255, 255, 255, 0.7); }
.quiz-answer-grid input[type="checkbox"] + .quiz-answer .quiz-answer-marker { border-radius: 7px; }
.quiz-answer-grid input:checked + .quiz-answer { border-color: #72846d; background: rgba(185, 198, 173, 0.32); box-shadow: 0 12px 30px rgba(114, 132, 109, 0.1); }
.quiz-answer-grid input:checked + .quiz-answer .quiz-answer-marker { border: 7px solid #72846d; }
.quiz-answer-grid input:focus-visible + .quiz-answer { outline: 3px solid rgba(114, 132, 109, 0.58); outline-offset: 4px; }
.quiz-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.quiz-status { min-height: 24px; margin: 18px 0 0; color: #8a4e42; font-weight: 700; }
.quiz-disclaimer { margin: 24px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.quiz-result-wrap { display: grid; gap: 18px; }
.quiz-result-card { padding: 38px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, rgba(246, 220, 207, 0.58), rgba(255, 255, 255, 0.52)); box-shadow: var(--shadow); }
.quiz-result-card:nth-of-type(3) { background: linear-gradient(145deg, rgba(221, 213, 234, 0.58), rgba(255, 255, 255, 0.52)); }
.quiz-result-card h2 { margin: 12px 0 6px; }
.quiz-result-card h3 { margin: 28px 0 12px; font-size: 32px; }
.quiz-result-card h4 { margin: 28px 0 10px; color: var(--sage-dark); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; }
.result-eyebrow { margin: 0; color: #776d8b; font-family: var(--serif); font-size: 22px; font-style: italic; }
.result-copy { max-width: 740px; color: var(--soft-ink); font-size: 18px; line-height: 1.72; }
.result-start-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.result-start-list li { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.48); color: var(--soft-ink); font-size: 13px; }
.quiz-context { padding: 26px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, 0.42); }
.quiz-context h3 { margin-bottom: 14px; font-size: 28px; }
.quiz-context p { margin: 0; color: var(--soft-ink); line-height: 1.6; }
.preference-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.text-button { width: fit-content; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--sage-dark); cursor: pointer; }

.prose { max-width: 820px; }
.prose h2 { margin: 46px 0 14px; font-size: 38px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--soft-ink); font-size: 18px; line-height: 1.75; }
.prose a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }

.blog-index-hero { padding-bottom: 44px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.blog-card {
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(244, 232, 188, 0.24));
  box-shadow: 0 16px 40px rgba(87, 67, 44, 0.055);
  transition: 0.2s ease;
}
.blog-card:nth-child(3n + 2) { background: linear-gradient(145deg, rgba(246, 220, 207, 0.58), rgba(255, 255, 255, 0.4)); }
.blog-card:nth-child(3n + 3) { background: linear-gradient(145deg, rgba(221, 213, 234, 0.58), rgba(255, 255, 255, 0.4)); }
.blog-card:hover { transform: translateY(-3px); border-color: rgba(47, 59, 52, 0.24); }
.blog-card h3 { margin: 16px 0 13px; font-size: clamp(29px, 3.2vw, 42px); line-height: 1.08; overflow-wrap: anywhere; }
.blog-card p { margin: 0 0 26px; color: var(--soft-ink); font-size: 16px; line-height: 1.65; }
.blog-card .text-link { margin-top: auto; }

.blog-hero { padding: 68px 0 64px; border-bottom: 1px solid var(--line); }
.blog-hero-inner { max-width: 980px; }
.blog-hero h1 { max-width: 920px; margin-top: 16px; font-size: clamp(43px, 6vw, 76px); overflow-wrap: anywhere; }
.breadcrumb-trail { margin-bottom: 42px; color: var(--sage-dark); font-size: 13px; }
.breadcrumb-trail ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb-trail li { display: flex; gap: 8px; }
.breadcrumb-trail [aria-current="page"] { color: var(--muted); }
.article-byline { margin: 26px 0 0; color: var(--muted); font-size: 13px; letter-spacing: 0.035em; }

.blog-article { max-width: 920px; padding-top: 70px; padding-bottom: 84px; }
.blog-prose { max-width: 760px; margin-inline: auto; overflow-wrap: anywhere; }
.blog-prose h2 { margin: 64px 0 20px; font-size: clamp(35px, 4.4vw, 52px); line-height: 1.1; }
.blog-prose h2:first-child { margin-top: 0; }
.blog-prose h3 { margin: 42px 0 14px; font-size: clamp(27px, 3.1vw, 36px); line-height: 1.18; }
.blog-prose p, .blog-prose li { color: var(--soft-ink); font-size: 18px; line-height: 1.78; }
.blog-prose p { margin: 0 0 24px; }
.blog-prose ul, .blog-prose ol { margin: 0 0 28px; padding-left: 27px; }
.blog-prose li { margin-bottom: 12px; padding-left: 5px; }
.blog-prose strong { color: var(--ink); }
.blog-prose a { color: var(--sage-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.blog-next-step { margin-top: 74px; padding: 36px; border: 1px solid rgba(114, 132, 109, 0.22); border-radius: 30px; background: linear-gradient(135deg, rgba(185, 198, 173, 0.28), rgba(255, 255, 255, 0.54)); }
.blog-next-step h2 { max-width: 680px; margin: 12px 0 26px; font-size: clamp(34px, 4vw, 48px); }
.related-reading { padding-top: 72px; }
.related-content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 16px; }
.related-content-grid .guide-card, .related-content-grid .blog-card { min-height: 300px; }
.related-content-grid .guide-card h3, .related-content-grid .blog-card h3 { font-size: 29px; }

.about-hero { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 70px; align-items: end; border-bottom: 1px solid var(--line); }
.about-hero h1 { margin-top: 16px; }
.about-hero-note { max-width: 520px; margin: 0 0 12px; color: var(--soft-ink); font-family: var(--serif); font-size: clamp(25px, 2.7vw, 38px); line-height: 1.42; }
.founder-section { padding: 84px 0; }
.founder-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.founder-portrait { margin: 0; }
.founder-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(47, 59, 52, 0.12); border-radius: 8px; box-shadow: 18px 18px 0 rgba(221, 213, 234, 0.42); }
.founder-portrait figcaption { margin-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.founder-copy { max-width: 720px; }
.founder-copy h2 { margin: 12px 0 24px; font-size: clamp(39px, 4.7vw, 64px); }
.founder-copy > p { margin: 0 0 20px; color: var(--soft-ink); font-size: 18px; line-height: 1.72; }
.founder-copy .founder-aside { margin-top: 34px; padding: 24px 0 0 26px; border-top: 1px solid var(--line); border-left: 3px solid rgba(185, 137, 114, 0.58); color: var(--ink); font-family: var(--serif); font-size: 21px; line-height: 1.55; }
.founder-source-link { display: inline-block; margin-top: 10px; }
.founder-erlinda-section { background: rgba(244, 232, 188, 0.14); }
.founder-erlinda { grid-template-columns: 1.12fr 0.88fr; }
.founder-portrait-erlinda img { box-shadow: -18px 18px 0 rgba(246, 220, 207, 0.58); }
.origin-story { background: rgba(255, 255, 255, 0.22); }
.origin-story-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(50px, 7vw, 96px); align-items: start; }
.origin-story h2 { margin: 12px 0 0; font-size: clamp(40px, 4.8vw, 66px); }
.origin-story-copy p { margin: 0 0 20px; color: var(--soft-ink); font-size: 18px; line-height: 1.72; }
.origin-gallery { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 22px; align-items: end; margin-top: 62px; }
.origin-figure { margin: 0; }
.origin-figure img { width: 100%; object-fit: cover; border: 1px solid rgba(47, 59, 52, 0.12); border-radius: 7px; box-shadow: 12px 16px 0 rgba(229, 195, 200, 0.25); }
.origin-board img { aspect-ratio: 4 / 5; }
.origin-basket img { aspect-ratio: 4 / 3; }
.origin-figure figcaption { max-width: 580px; margin-top: 16px; color: var(--soft-ink); font-family: var(--serif); font-size: 17px; line-height: 1.5; }
.origin-note { max-width: 890px; margin: 42px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.6; }
.founder-together { background: #f4eee4; }
.founder-together-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.founder-together h2 { margin: 12px 0 0; font-size: clamp(38px, 4.4vw, 60px); }
.founder-together p { margin: 0; color: var(--soft-ink); font-size: 18px; line-height: 1.72; }

footer { padding: 50px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 36px; align-items: start; }
.footer-brand { display: inline-block; margin-bottom: 8px; font-size: 19px; }
.footer-grid p { margin: 0 0 9px; }
.footer-links { display: grid; gap: 7px; color: var(--soft-ink); }

[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(114, 132, 109, 0.58); outline-offset: 4px; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-menu { display: block; }
}

@media (max-width: 920px) {
  .hero-grid, .section-head, .list-panel, .footer-grid, .wide-page-hero, .quiz-invite-panel, .split-purchase, .about-teaser-grid, .about-hero, .founder-layout, .origin-story-grid, .founder-together-grid { grid-template-columns: 1fr; }
  .product-field { min-height: 560px; }
  .home-hero .product-field { min-height: 500px; }
  .pathway-door-grid { grid-template-columns: repeat(3, 1fr); }
  .home-featured-grid { grid-template-columns: 1fr; }
  .home-featured-grid .guide-card { min-height: 240px; }
  .compact-quiz-panel { grid-template-columns: 1fr; }
  .compact-quiz-panel .actions { margin-top: 0; }
  .breath-strip, .flow, .avatar-grid, .ritual-list { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-controls { grid-template-columns: 1fr 1fr; }
  .catalog-search { grid-column: 1 / -1; }
  .related-grid { grid-template-columns: 1fr; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .split-purchase .actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1180px); }
  .nav-inner { min-height: 66px; }
  .brand { font-size: 18px; }
  .hero { padding: 48px 0 64px; }
  .home-hero { padding: 34px 0 44px; }
  .home-hero .hero-copy { font-size: 17px; }
  h1 { font-size: clamp(39px, 13vw, 58px); line-height: 1.08; }
  section { padding: 70px 0; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .product-field { min-height: 510px; border-radius: 28px; }
  .home-hero .product-field { min-height: 410px; }
  .product-main { top: 7%; right: 4%; width: 82%; }
  .product-side { left: 4%; bottom: 5%; width: 40%; }
  .pathway-door-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-door { min-height: 195px; padding: 18px; }
  .pathway-door h3 { font-size: 23px; }
  .pathway-actions { flex-direction: column; }
  .compact-shopping, .compact-quiz-invite, .home-guides, .home-blog, .about-teaser { padding: 58px 0; }
  .founder-mini-grid { grid-template-columns: 1fr; }
  .compact-shopping .purchase-card { padding: 24px 20px; }
  .compact-quiz-panel { padding: 28px 20px; }
  .starter-shelf-grid { grid-template-columns: 1fr; }
  .shop-hero { padding: 38px 0 22px; }
  .breath-strip, .flow, .featured-grid, .avatar-grid, .library-grid, .item-grid, .ritual-list, .purchase-grid, .product-grid, .quiz-answer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .owned-product-card { grid-template-columns: 1fr; }
  .catalog-controls { grid-template-columns: 1fr; }
  .catalog-search { grid-column: auto; }
  .catalog-meta { display: block; }
  .catalog-meta p { margin-top: 8px; }
  .quiz-invite-panel, .quiz-result-card { padding: 28px 20px; }
  .quiz-controls { flex-direction: column-reverse; }
  .quiz-controls .btn { width: 100%; }
  .product-card-footer { align-items: stretch; flex-direction: column; }
  .item-card:nth-child(5) { grid-column: auto; }
  .guide-card { min-height: 270px; }
  .list-panel { padding: 28px 20px; }
  .email-row { grid-template-columns: 1fr; }
  .page-hero { padding: 66px 0 40px; }
  .guide-hero { padding: 58px 0 52px; }
  .blog-hero { padding: 46px 0 48px; }
  .breadcrumb-trail { margin-bottom: 30px; }
  .blog-article { padding-top: 50px; padding-bottom: 64px; }
  .blog-next-step { padding: 28px 20px; }
  .ritual-list li { min-height: 0; }
  .about-hero { gap: 28px; }
  .founder-section { padding: 64px 0; }
  .founder-portrait img { box-shadow: 10px 10px 0 rgba(221, 213, 234, 0.42); }
  .founder-portrait-erlinda img { box-shadow: -10px 10px 0 rgba(246, 220, 207, 0.58); }
  .founder-copy .founder-aside { padding-left: 18px; }
  .origin-gallery { grid-template-columns: 1fr; margin-top: 42px; }
  .origin-board img, .origin-basket img { aspect-ratio: auto; }
}
