/* ─── The Wounded Healer Collection — Shared Brand Styles ──────────────── */
/* Fonts are loaded via <link rel="preconnect"> + <link rel="stylesheet"> in each page's <head> for performance. */

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --cream:        #F6F0E8;
  --cream-alt:    #EFE5D2;
  --cream-deep:   #E8DDC8;
  --charcoal:     #2F2D2B;
  --charcoal-soft:#4A4641;
  --taupe:        #B8AA9A;
  --taupe-light:  #D4C8B8;
  --sage:         #8A9A8A;
  --sage-dim:     rgba(138,154,138,0.12);
  --sage-mid:     rgba(138,154,138,0.28);
  --clay:         #B97A57;
  --clay-dim:     rgba(185,122,87,0.10);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --radius:    12px;
  --radius-sm: 7px;
  --max-w:     1080px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

/* Subtle paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: clamp(80px, 10vw, 130px) 0; }

/* ─── Scroll fade-up ────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.10s; }
.fade-up.d2 { transition-delay: 0.20s; }
.fade-up.d3 { transition-delay: 0.30s; }
.fade-up.d4 { transition-delay: 0.40s; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.22s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 2px 14px rgba(138,154,138,0.25);
}
.btn-primary:hover {
  background: #7a8c7a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(138,154,138,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal-soft);
  border: 1.5px solid var(--taupe);
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-dim);
}
.btn-clay {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 2px 14px rgba(185,122,87,0.25);
}
.btn-clay:hover {
  background: #a86b49;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(185,122,87,0.32);
}
.btn-large  { padding: 16px 34px; font-size: 15px; }
.btn-full   { width: 100%; justify-content: center; }

/* ─── Forms ─────────────────────────────────────────────────────────────── */
.text-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--taupe-light);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.text-input::placeholder { color: var(--taupe); }
.text-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-dim);
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  background: rgba(246,240,232,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--taupe-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(47,45,43,0.08); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  user-select: none;
}
.nav-wm-eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2px;
}
.nav-wm-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.28s var(--ease-out);
}
.nav-logo:hover .nav-wm-title { color: var(--sage); }
.nav-wm-sub {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 2px;
  transition: color 0.28s var(--ease-out);
}
.nav-logo:hover .nav-wm-sub { color: var(--sage); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
  transform-origin: left;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { font-size: 13px; padding: 10px 20px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px 28px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--taupe-light);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-mobile a:hover { color: var(--sage); }
.nav-mobile .btn { align-self: flex-start; margin-top: 8px; }

/* ─── Section Headers ───────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--sage);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ─── Divider ───────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--taupe);
  margin: 0 auto 48px;
}

/* ─── Imperfect Circle SVG motif ────────────────────────────────────────── */
.circle-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}
.circle-motif svg { width: 100%; height: 100%; }

/* ─────────────────────────────────────────────────────────────────────────
   HOMEPAGE
───────────────────────────────────────────────────────────────────────── */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  padding: 120px 28px 120px;
  background: radial-gradient(ellipse 80% 65% at 50% 32%, #EDE8DC 0%, var(--cream) 70%);
}
.hero-bg-circle {
  position: absolute;
  top: 50%; left: 50%;
  width: min(780px, 95vw);
  height: min(780px, 95vw);
  opacity: 0.16;
  pointer-events: none;
  animation: circle-drift 60s linear infinite;
}
@keyframes circle-drift {
  from { transform: translate(-50%, -52%) rotate(0deg); }
  to   { transform: translate(-50%, -52%) rotate(360deg); }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 22px;
  opacity: 0;
  animation: hero-in 0.8s var(--ease-out) 0.1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 30px;
  opacity: 0;
  animation: hero-in 0.9s var(--ease-out) 0.25s forwards;
  max-width: 820px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
}
.hero-sub {
  max-width: 500px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin: 0 auto 48px;
  opacity: 0;
  animation: hero-in 0.9s var(--ease-out) 0.4s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-in 0.9s var(--ease-out) 0.55s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0;
  animation: hero-in 0.8s var(--ease-out) 1s forwards;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--taupe), transparent);
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.55); opacity: 0.2; }
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero logo — real PNG, multiply blend makes the white background invisible */
.hero-logo {
  margin: 0 auto 44px;
  opacity: 0;
  animation: hero-in 0.9s var(--ease-out) 0.05s forwards;
}
.hero-logo img {
  height: clamp(170px, 24vw, 260px);
  width: auto;
  mix-blend-mode: multiply;
  margin: 0 auto;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0.88;
}
.hero-logo img:hover {
  transform: scale(1.02);
  opacity: 1;
}

/* Hero book stack */
.hero-books {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 58px;
  opacity: 0;
  animation: hero-in 1s var(--ease-out) 0.75s forwards;
  position: relative;
  z-index: 1;
}
.hero-book {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(47,45,43,0.18), 0 4px 14px rgba(47,45,43,0.08);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  cursor: pointer;
}
.hero-book img {
  width: 104px;
  height: 138px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-book-1 { transform: rotate(-4deg) translateY(6px); }
.hero-book-2 { transform: rotate(0deg) translateY(-14px); z-index: 2; position: relative; }
.hero-book-3 { transform: rotate(4deg) translateY(6px); }
.hero-book:hover { transform: translateY(-14px) rotate(0deg) scale(1.05) !important; }

/* Free Resources */
.resources-free { background: var(--cream-alt); }
.free-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.free-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 1px solid var(--taupe-light);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.free-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.free-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(47,45,43,0.08); }
.free-card:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.free-card:hover::before { transform: scaleX(1); }
.free-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sage-dim);
  border: 1px solid rgba(138,154,138,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.free-card-icon svg { width: 22px; height: 22px; stroke: var(--sage); }
.free-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.free-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.free-card p {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.free-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}
.free-card:hover .free-card-link { gap: 10px; }
.free-card-link svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }

/* About section */
.about-section { background: var(--cream); }
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-circle {
  width: 72px; height: 72px;
  margin: 0 auto 32px;
  opacity: 0.75;
  transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.about-inner:hover .about-circle {
  transform: rotate(20deg) scale(1.1);
  opacity: 0.95;
}
.about-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.about-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-closing {
  font-size: 14px;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.about-attrib {
  display: inline-block;
  font-style: normal;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  vertical-align: middle;
  margin-left: 4px;
}
.about-cta {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.about-cta:hover { color: var(--sage); border-color: var(--sage); }

/* Products preview */
.products-section { background: var(--cream-alt); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--taupe-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(47,45,43,0.12); border-color: var(--taupe); }
.product-cover {
  aspect-ratio: 3/4;
  max-height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.product-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(160deg, var(--cream-alt) 0%, var(--cream-deep) 100%);
}
.product-cover-placeholder .book-series-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.product-cover-placeholder .book-circle {
  opacity: 0.25;
}
.product-cover-placeholder .book-title-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-cover-placeholder .book-subtitle-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.4;
}
.product-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
}
.product-info { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-series {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-title-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-subtitle-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.4;
  margin-bottom: 14px;
}
.product-desc {
  font-size: 13px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
}
.products-cta-row {
  text-align: center;
  margin-top: 44px;
}

/* ─────────────────────────────────────────────────────────────────────────
   LANDING PAGE (hidden-life.html)
───────────────────────────────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: rgba(246,240,232,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--taupe-light);
}
.landing-nav .nav-logo { gap: 12px; }

.landing-hero {
  padding: 120px 28px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.landing-hero-content {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Book 3D display */
.landing-book-display { flex-shrink: 0; }
.landing-book-inner {
  width: 200px;
  height: 267px;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  box-shadow:
    -10px 12px 36px rgba(47,45,43,0.24),
    4px 4px 14px rgba(47,45,43,0.08),
    inset -4px 0 14px rgba(47,45,43,0.06);
  transform: perspective(900px) rotateY(-14deg);
  transition: transform 0.45s var(--ease-out);
  cursor: default;
}
.landing-book-inner:hover { transform: perspective(900px) rotateY(-7deg); }
.landing-book-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.landing-hero-text { text-align: left; }
.landing-hero-text .landing-title { margin-left: 0; margin-right: 0; text-align: left; }
.landing-hero-text .landing-sub   { margin-left: 0; margin-right: 0; text-align: left; }
.landing-hero-text .landing-free-note { text-align: left; }
.landing-hero-text .landing-badge { justify-content: flex-start; }
.landing-hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  pointer-events: none;
  opacity: 0.14;
}
.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-dim);
  border: 1px solid rgba(138,154,138,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}
.landing-badge span { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.landing-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 90px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 22px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.landing-title em { font-style: italic; font-weight: 300; }
.landing-sub {
  max-width: 520px;
  margin: 0 auto 16px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.8;
}
.landing-free-note {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 0;
}

.landing-content { background: var(--cream); }
.landing-inner { max-width: 680px; margin: 0 auto; }

.whats-inside {
  background: var(--cream-alt);
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 48px;
}
.whats-inside h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
}
.inside-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.inside-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.inside-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 8px;
  flex-shrink: 0;
}

.capture-card-landing {
  background: var(--cream);
  border: 1.5px solid var(--taupe-light);
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(47,45,43,0.06);
  margin-bottom: 32px;
}
.capture-card-landing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.15;
}
.capture-card-landing p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.capture-form-landing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.capture-fine {
  font-size: 12px;
  color: var(--taupe);
  margin-top: 10px;
  text-align: center;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 0 16px;
  margin-bottom: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.05em;
}
.trust-item svg { width: 14px; height: 14px; stroke: var(--taupe); }

/* ─────────────────────────────────────────────────────────────────────────
   SHOP PAGE
───────────────────────────────────────────────────────────────────────── */
.shop-header {
  padding: 140px 28px 70px;
  background: var(--cream);
  text-align: center;
}
.shop-header .section-title { margin-bottom: 12px; }
.shop-header p {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 460px;
  margin: 0 auto;
}
.shop-grid-section { background: var(--cream-alt); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.shop-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--taupe);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}
.free-strip {
  background: var(--cream);
  padding: clamp(60px, 7vw, 90px) 0;
}
.free-strip-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.free-strip-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.free-strip-inner p {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.free-resources-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--taupe-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  background: var(--cream-alt);
  transition: all 0.2s;
  cursor: pointer;
}
.chip:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-dim); }
.chip svg { width: 14px; height: 14px; stroke: currentColor; }

/* ─────────────────────────────────────────────────────────────────────────
   PRODUCT PAGE (after-dday.html)
───────────────────────────────────────────────────────────────────────── */
.product-hero {
  padding: 130px 28px 80px;
  background: var(--cream);
}
.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.product-hero-cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(47,45,43,0.14);
  aspect-ratio: 3/4;
  position: sticky;
  top: 90px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-info { padding-top: 8px; }
.product-series-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.product-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 480px;
}
.product-hero-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.product-price-note {
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 24px;
}
.product-buy-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.product-trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--taupe);
}
.product-trust-item svg { width: 13px; height: 13px; stroke: currentColor; }

.product-body { background: var(--cream-alt); padding: clamp(60px,8vw,100px) 28px; }
.product-body-inner { max-width: 700px; margin: 0 auto; }
.product-body-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.15;
}
.inside-list-large { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.inside-list-large li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--taupe-light);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.inside-list-large li .check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-dim);
  border: 1px solid rgba(138,154,138,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.inside-list-large li .check-icon svg { width: 10px; height: 10px; stroke: var(--sage); }

.product-description { margin-bottom: 40px; }
.product-description p {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}

.author-note {
  background: var(--cream);
  border: 1px solid var(--taupe-light);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.author-note p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}
.author-note cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.product-cta-section {
  background: var(--cream);
  padding: clamp(60px,7vw,90px) 28px;
  text-align: center;
}
.product-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}
.product-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,40px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.product-cta-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.product-disclaimer {
  font-size: 12px;
  color: var(--taupe);
  line-height: 1.65;
  max-width: 480px;
  margin: 20px auto 0;
}

.related-section { background: var(--cream-alt); }

/* ─────────────────────────────────────────────────────────────────────────
   MODAL (14-day plan, free resources)
───────────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47,45,43,0.5);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(47,45,43,0.18);
  transform: translateY(12px);
  transition: transform 0.3s var(--ease-out);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--taupe);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--cream-alt); color: var(--charcoal); }
.modal-close svg { width: 16px; height: 16px; stroke: currentColor; }
.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.modal-box h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.modal-box p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.modal-fine { font-size: 12px; color: var(--taupe); }
.modal-fine a { color: var(--sage); }

/* Success state */
.success-message {
  padding: 18px 20px;
  background: var(--sage-dim);
  border: 1px solid rgba(138,154,138,0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--sage);
  font-weight: 500;
  text-align: center;
  animation: hero-in 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: clamp(52px,7vw,80px) 28px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184,170,154,0.15);
  margin-bottom: 32px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  flex-shrink: 0;
}
.footer-brand .footer-logo .footer-logo-text { display: none; }
.footer-brand .footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(246,240,232,0.85);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(184,170,154,0.7);
  line-height: 1.65;
  max-width: 220px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184,170,154,0.55);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 14px;
  color: rgba(246,240,232,0.65);
  transition: color 0.2s;
}
.footer-col li a:hover { color: rgba(246,240,232,0.9); }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-note {
  font-size: 12px;
  color: rgba(184,170,154,0.45);
  line-height: 1.65;
  max-width: 520px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(184,170,154,0.35);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .free-resources-grid { grid-template-columns: 1fr 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-cover { position: static; max-width: 280px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 760px) {
  .landing-hero-content { flex-direction: column; align-items: center; gap: 36px; }
  .landing-hero-text { text-align: center; }
  .landing-hero-text .landing-title,
  .landing-hero-text .landing-sub,
  .landing-hero-text .landing-free-note { text-align: center; margin-left: auto; margin-right: auto; }
  .landing-hero-text .landing-badge { justify-content: center; }
  .landing-book-inner { width: 160px; height: 213px; transform: none; }
}
@media (max-width: 640px) {
  .free-resources-grid { grid-template-columns: 1fr; }
  .whats-inside { padding: 28px 24px; }
  .capture-card-landing { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trust-strip { gap: 20px; }
  .hero-books { gap: 12px; margin-top: 44px; }
  .hero-book img { width: 80px; height: 107px; }
}
