/* ===== Design tokens ===== */
:root{
  --cream: #FBF8F3;
  --cream-deep: #F1E8DB;
  --paper: #FFFEFB;
  --ink: #33312D;
  --ink-soft: #6B655D;
  --teal: #5B7A9D;
  --teal-deep: #3F5A78;
  --teal-tint: #E7EDF3;
  --coral: #E3A857;
  --coral-deep: #C68A3A;
  --coral-tint: #FBEEDA;
  --sage: #8FA8A0;
  --line: #E6DED2;
  --shadow: 0 20px 50px -25px rgba(51, 49, 45, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(51, 49, 45, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--serif); margin: 0; font-weight: 600; line-height: 1.15; color: var(--ink); }
p{ margin: 0; }
.container{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.italic{ font-style: italic; }

::selection{ background: var(--coral-tint); color: var(--coral-deep); }

/* ===== Reveal on scroll ===== */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--teal-deep); transform: translateY(-2px); }
.btn-coral{ background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn-coral:hover{ background: var(--coral-deep); transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }
.btn-outline-light{ background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-outline-light:hover{ background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 20px; font-size: 13.5px; }
.btn[disabled], .btn-buy{ position: relative; }

/* ===== Nav ===== */
.nav-wrap{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s ease, box-shadow .3s ease, padding .3s ease; padding: 18px 0; }
.nav-wrap.is-scrolled{ background: rgba(251, 244, 234, 0.92); backdrop-filter: blur(10px); box-shadow: 0 8px 24px -18px rgba(52,48,42,.4); padding: 10px 0; }
.nav{ max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo{ height: 44px; width: 44px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-word{ font-family: var(--serif); font-size: 20px; font-weight: 600; }
.brand-word em{ color: var(--coral); font-style: italic; }
.nav-links{ display: flex; align-items: center; gap: 28px; }
.nav-link{ font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s ease; position: relative; }
.nav-link:hover{ color: var(--teal-deep); }
.nav-cta{ margin-left: 6px; }
.nav-toggle{ display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span{ width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ===== Hero ===== */
.hero{ position: relative; padding: 168px 0 96px; overflow: hidden; }
.hero-bg-shape{ position: absolute; top: -120px; right: -160px; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--teal-tint), transparent 70%); z-index: 0; }
.hero-bg-shape-2{ position: absolute; bottom: -180px; left: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 60% 40%, var(--coral-tint), transparent 70%); z-index: 0; }
.hero .container{ position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow{ display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-tint); padding: 8px 16px; border-radius: 999px; }
.eyebrow .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.hero-title{ font-size: clamp(34px, 4.4vw, 54px); margin-top: 18px; }
.hero-title .accent{ color: var(--coral); font-style: italic; }
.hero-sub{ margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 46ch; }
.hero-actions{ margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media{ position: relative; }
.hero-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.hero-badge{ position: absolute; bottom: -22px; left: -22px; background: var(--paper); border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 260px; }
.hero-badge-icon{ width: 42px; height: 42px; border-radius: 50%; background: var(--coral-tint); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-badge strong{ display: block; font-size: 14px; font-family: var(--serif); }
.hero-badge span{ font-size: 12.5px; color: var(--ink-soft); }

/* ===== Section basics ===== */
.section{ padding: 96px 0; }
.section-alt{ background: var(--paper); }
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.kicker{ display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 12px; }
.section-title{ font-size: clamp(28px, 3.4vw, 40px); }
.section-title .accent{ color: var(--teal); font-style: italic; }
.section-sub{ margin-top: 16px; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }

/* ===== Not doing it wrong ===== */
.nw-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.nw-media{ position: relative; }
.nw-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nw-quote{ position: absolute; top: -18px; right: -18px; background: var(--teal); color: #fff; border-radius: var(--radius-md); padding: 16px 20px; font-family: var(--serif); font-style: italic; font-size: 15px; max-width: 220px; box-shadow: var(--shadow-sm); }
.nw-copy .section-title{ margin-bottom: 18px; }
.nw-copy p{ font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.nw-copy p:last-child{ margin-bottom: 0; }
.nw-copy strong{ color: var(--ink); }

/* ===== Beliefs strip ===== */
.beliefs{ background: var(--teal-deep); color: #fff; padding: 64px 0; }
.beliefs-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.belief{ text-align: center; padding: 0 12px; }
.belief-mark{ font-family: var(--serif); font-size: 40px; color: var(--coral); line-height: 1; margin-bottom: 14px; }
.belief p{ font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.92); }
.mission-line{ text-align: center; max-width: 760px; margin: 44px auto 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.6; color: #fff; }

/* ===== Pathway ===== */
.pathway{ display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.pathway-media{ position: sticky; top: 110px; }
.pathway-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.pathway-steps{ display: flex; flex-direction: column; gap: 18px; }
.step-card{ background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start; transition: transform .3s ease, box-shadow .3s ease; transform-origin: center; }
.step-card:hover{ transform: scale(1.045); box-shadow: var(--shadow); position: relative; z-index: 2; }
.step-letter{ font-family: var(--serif); font-size: 30px; font-weight: 700; width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step-card:nth-child(1) .step-letter{ background: var(--coral-tint); color: var(--coral-deep); }
.step-card:nth-child(2) .step-letter{ background: var(--teal-tint); color: var(--teal-deep); }
.step-card:nth-child(3) .step-letter{ background: var(--coral-tint); color: var(--coral-deep); }
.step-card:nth-child(4) .step-letter{ background: var(--teal-tint); color: var(--teal-deep); }
.step-card:nth-child(5) .step-letter{ background: var(--coral-tint); color: var(--coral-deep); }
.step-body h3{ font-size: 19px; }
.step-body .step-tag{ display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.step-body p{ margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.pathway-footline{ margin-top: 28px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--teal-deep); }

/* ===== Work with me ===== */
.work-panel{ background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); border-radius: var(--radius-lg); padding: 64px; color: #fff; position: relative; overflow: hidden; }
.work-panel::before{ content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.08); top: -140px; right: -100px; }
.work-inner{ position: relative; z-index: 1; max-width: 680px; }
.work-panel .kicker{ color: var(--coral); }
.work-panel h2{ color: #fff; }
.work-panel .section-sub{ color: rgba(255,255,255,.85); }
.work-callout{ margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; }
.work-actions{ margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== About ===== */
.about-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.about-media{ position: relative; }
.about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-copy .kicker{ display: block; }
.about-quote{ font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--teal-deep); margin: 18px 0 22px; }
.about-copy p{ font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 16px; }
.about-closing{ font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--coral-deep); margin-top: 20px; }
.badge-row{ display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.badge-row img{ height: 56px; width: auto; object-fit: contain; filter: saturate(.95); }

/* ===== Shop ===== */
.shop-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.shop-card{ background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.shop-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.shop-media{ position: relative; aspect-ratio: 16/11; overflow: hidden; }
.shop-media img{ width: 100%; height: 100%; object-fit: cover; }
.shop-media img.obj-top{ object-position: top; }
.shop-price{ position: absolute; top: 14px; right: 14px; background: var(--coral); color: #fff; font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.shop-price.free{ background: var(--teal); }
.shop-body{ padding: 24px; display: flex; flex-direction: column; flex: 1; }
.shop-body h3{ font-size: 18.5px; margin-bottom: 10px; }
.shop-body p{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.shop-list{ margin: 12px 0 0; }
.shop-list li{ font-size: 13.5px; color: var(--ink-soft); padding-left: 16px; position: relative; margin-bottom: 6px; }
.shop-list li::before{ content: "•"; color: var(--coral); position: absolute; left: 0; }
.shop-cta{ margin-top: 18px; }

/* Placeholder buy button toast */
.btn-buy{ cursor: pointer; }

.toast{ position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 999px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; z-index: 200; white-space: nowrap; }
.toast.is-visible{ opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Community strip ===== */
.community{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card{ background: var(--cream-deep); border-radius: var(--radius-md); padding: 30px; }
.community-card .icon{ font-size: 26px; margin-bottom: 14px; display: block; }
.community-card h4{ font-size: 17px; margin-bottom: 8px; }
.community-card p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.community-cta{ margin-top: 16px; }

/* ===== Contact ===== */
.contact-panel{ background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; }
.contact-info{ padding: 64px; background: var(--teal-deep); color: #fff; }
.contact-info .kicker{ color: var(--coral); }
.contact-info h2{ color: #fff; }
.contact-info h2 .accent{ color: var(--coral); }
.contact-info p{ color: rgba(255,255,255,.85); margin-top: 14px; font-size: 15.5px; line-height: 1.6; }
.contact-rows{ margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.contact-row{ display: flex; align-items: center; gap: 14px; }
.contact-icon{ width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-row strong{ display: block; font-size: 15px; }
.contact-row small{ font-size: 13px; color: rgba(255,255,255,.7); }
.social-row{ margin-top: 30px; display: flex; gap: 12px; }
.social-row a{ width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .2s ease, transform .2s ease; }
.social-row a:hover{ background: rgba(255,255,255,.26); transform: translateY(-2px); }
.contact-form{ padding: 64px; display: flex; flex-direction: column; gap: 18px; }
.contact-form label{ display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.contact-form input, .contact-form textarea{ font-family: var(--sans); font-size: 15px; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); resize: none; }
.contact-form input:focus, .contact-form textarea:focus{ outline: none; border-color: var(--teal); }
.checkbox-row{ flex-direction: row; align-items: center; gap: 10px; font-size: 13.5px; }
.checkbox-row input{ width: auto; padding: 0; accent-color: var(--teal); }
.form-note{ font-size: 13px; color: var(--ink-soft); text-align: center; margin: 0; }

/* ===== Footer ===== */
.footer{ padding: 56px 0 32px; text-align: center; }
.footer .brand{ justify-content: center; margin-bottom: 14px; }
.footer-tag{ font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 15px; }
.footer-email{ margin-top: 10px; font-size: 14.5px; }
.footer-email a{ color: var(--teal-deep); font-weight: 600; }
.footer-legal{ margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.footer-legal a{ color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover{ color: var(--teal-deep); }
.footer-copy{ margin-top: 18px; font-size: 13px; color: var(--ink-soft); }

/* ===== Apparel page ===== */
.apparel-group{ margin-bottom: 64px; }
.apparel-group:last-child{ margin-bottom: 0; }
.apparel-group-head{ margin-bottom: 28px; }
.apparel-group-head h2{ font-size: 22px; }
.apparel-group-head p{ margin-top: 6px; font-size: 14.5px; color: var(--ink-soft); }
.apparel-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.apparel-card{ background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.apparel-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.apparel-cover{ aspect-ratio: 1/1; overflow: hidden; background: var(--cream-deep); }
.apparel-cover img{ width: 100%; height: 100%; object-fit: cover; }
.apparel-body{ padding: 18px; display: flex; flex-direction: column; flex: 1; }
.apparel-body h3{ font-size: 15px; line-height: 1.35; margin-bottom: 10px; flex: 1; }
.apparel-price{ font-size: 13px; font-weight: 700; color: var(--coral-deep); margin-bottom: 12px; }
@media (max-width: 980px){
  .apparel-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .apparel-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ===== Podcast page ===== */
.podcast-intro{ background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 40px 48px; margin-bottom: 48px; }
.podcast-intro p{ font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.podcast-list{ display: flex; flex-direction: column; gap: 24px; }
.podcast-card{ background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 30px 34px; transition: box-shadow .25s ease; }
.podcast-card:hover{ box-shadow: var(--shadow); }
.podcast-meta{ display: flex; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 10px; }
.podcast-meta .dot{ width: 4px; height: 4px; border-radius: 50%; background: var(--ink-soft); }
.podcast-card h3{ font-size: 19px; margin-bottom: 12px; }
.podcast-card p{ font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.podcast-player{ width: 100%; height: 42px; border-radius: 999px; }
.podcast-player::-webkit-media-controls-panel{ background: var(--cream-deep); }
.podcast-more{ margin-bottom: 18px; }
.podcast-more summary{ cursor: pointer; font-size: 13.5px; font-weight: 700; color: var(--teal-deep); list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.podcast-more summary::-webkit-details-marker{ display: none; }
.podcast-more summary::before{ content: "+"; font-size: 16px; line-height: 1; transition: transform .2s ease; }
.podcast-more[open] summary::before{ content: "−"; }
.podcast-more summary:hover{ color: var(--coral-deep); }
.podcast-more-body{ margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.podcast-more-body p{ font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 12px; }
.podcast-more-body p:last-child{ margin-bottom: 0; }
@media (max-width: 720px){
  .podcast-intro{ padding: 28px 26px; }
  .podcast-card{ padding: 24px; }
}

/* ===== Books page ===== */
.books-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.book-card{ background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.book-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.book-cover{ aspect-ratio: 3/4; overflow: hidden; background: var(--cream-deep); }
.book-cover img{ width: 100%; height: 100%; object-fit: cover; }
.book-body{ padding: 22px; display: flex; flex-direction: column; flex: 1; }
.book-body h3{ font-size: 17px; margin-bottom: 8px; }
.book-body .book-character{ display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 8px; }
.book-body p{ font-size: 14px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.book-cta{ margin-top: 16px; }
.books-note{ margin-top: 40px; text-align: center; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 980px){
  .books-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .books-grid{ grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ===== Legal pages ===== */
.legal-hero{ padding: 150px 0 40px; }
.legal-hero .kicker{ display: block; }
.legal-panel{ background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 56px; }
.legal-updated{ font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; display: block; }
.legal-panel h2{ font-size: 22px; margin: 32px 0 12px; }
.legal-panel h2:first-child{ margin-top: 0; }
.legal-panel p{ font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.legal-panel ul{ margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal-panel li{ font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.legal-panel a{ color: var(--teal-deep); font-weight: 600; }
.legal-note{ margin-top: 32px; padding: 20px 24px; background: var(--cream-deep); border-radius: var(--radius-md); font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 720px){
  .legal-panel{ padding: 32px 24px; }
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; max-width: 420px; margin: 0 auto; }
  .nw-grid, .about-grid{ grid-template-columns: 1fr; }
  .nw-media, .about-media{ max-width: 460px; margin: 0 auto; }
  .pathway{ grid-template-columns: 1fr; }
  .pathway-media{ position: static; max-width: 460px; margin: 0 auto; }
  .beliefs-grid, .community{ grid-template-columns: 1fr; }
  .shop-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-info, .contact-form{ padding: 44px 32px; }
}

@media (max-width: 900px){
  .nav-links{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--paper); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 32px; gap: 22px; box-shadow: var(--shadow);
    transform: translateX(100%); transition: transform .3s ease; z-index: 90;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-toggle{ display: flex; z-index: 110; }
  .nav-cta{ margin-left: 0; }
}

@media (max-width: 720px){
  .hero-copy{ text-align: center; }
  .section-head{ text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions, .work-actions{ justify-content: center; }
  .nw-copy .section-title, .about-copy .section-title{ text-align: center; }
  .badge-row{ flex-direction: column; align-items: center; gap: 20px; }
  .badge-row img{ height: 72px; }
  .work-panel{ padding: 44px 28px; }
  .shop-grid{ grid-template-columns: 1fr; }
  .section{ padding: 72px 0; }
  .hero{ padding-top: 140px; }
  .hero-badge{ position: static; margin-top: 18px; max-width: none; }
}
