/* ============================================================
   THE QUIET MIND — styles.css
   Domain config: update --site-domain when confirmed
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Colors */
  --color-bg:           #FAF6F1;
  --color-bg-deep:      #F0EAE0;
  --color-bg-dark:      #2C2218;
  --color-text:         #1C1410;
  --color-text-muted:   #6B5B4E;
  --color-text-light:   #A08070;
  --color-accent:       #8B6914;
  --color-accent-hover: #6D520F;
  --color-border:       #D4C8B8;
  --color-white:        #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  /* Type scale — desktop */
  --text-hero:    56px;
  --text-section: 36px;
  --text-sub:     24px;
  --text-body:    18px;
  --text-small:   14px;
  --text-button:  16px;

  /* Line heights */
  --lh-hero:    1.15;
  --lh-section: 1.25;
  --lh-sub:     1.35;
  --lh-body:    1.7;
  --lh-small:   1.5;

  /* Layout */
  --width-text:  720px;
  --width-wide:  1080px;
  --width-hero:  640px;
  --width-cta:   560px;

  /* Spacing */
  --space-section:     100px;
  --space-section-mob: 60px;

  /* Transitions */
  --transition-btn:  background-color 0.3s ease;
  --transition-fade: opacity 0.6s ease, transform 0.6s ease;

  /* Domain — update when confirmed */
  /* --site-domain: stoic-wisdom.com; */
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper texture — barely perceptible */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* All content above the texture */
body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent-hover);
}

p {
  margin-bottom: 1.4em;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   3. SKIP LINK (ACCESSIBILITY)
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text);
  line-height: var(--lh-section);
}

/* Hero headline */
.headline-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: var(--lh-hero);
  font-weight: 400;
  color: var(--color-text);
}

/* Section headline */
.headline-section {
  font-family: var(--font-display);
  font-size: var(--text-section);
  line-height: var(--lh-section);
  font-weight: 400;
}

/* Sub-headline */
.headline-sub {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  line-height: var(--lh-sub);
  font-weight: 400;
}

/* Body text */
.body-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}

/* Small label — uppercase, letter-spaced */
.label {
  font-family: var(--font-display);
  font-size: var(--text-small);
  line-height: var(--lh-small);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1rem;
}

/* Caption / small text */
.caption {
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: var(--lh-small);
  color: var(--color-text-light);
}

/* Muted body text */
.text-muted {
  color: var(--color-text-muted);
}

/* Italic */
.text-italic {
  font-style: italic;
}

/* Justified body copy */
.text-justified {
  text-align: justify;
  hyphens: auto;
}

/* Section divider — ✦ ✦ ✦ */
.divider {
  text-align: center;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: var(--text-body);
  letter-spacing: 0.4em;
  margin: 2.5rem auto;
  display: block;
  user-select: none;
}

/* ============================================================
   5. LAYOUT CONTAINERS
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--width-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--text {
  max-width: var(--width-text);
}

.container--hero {
  max-width: var(--width-hero);
}

.container--cta {
  max-width: var(--width-cta);
}

/* Section wrapper */
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section--bg {
  background-color: var(--color-bg);
}

.section--bg-deep {
  background-color: var(--color-bg-deep);
}

.section--bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.section--bg-dark h1,
.section--bg-dark h2,
.section--bg-dark h3,
.section--bg-dark .headline-section,
.section--bg-dark .headline-hero {
  color: var(--color-white);
}

.section--centered {
  text-align: center;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav {
  background-color: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.site-nav.scrolled {
  border-bottom-color: var(--color-border);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--width-wide);
  margin: 0 auto;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  white-space: nowrap;
}

.site-nav__brand:hover,
.site-nav__brand:focus {
  color: var(--color-accent);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.site-nav__links a:hover,
.site-nav__links a:focus,
.site-nav__links a[aria-current="page"] {
  color: var(--color-accent);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--width-hero);
  width: 100%;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 1.25rem auto 2.5rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero__note {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.75rem;
}

.hero__social-proof {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background-color: var(--color-accent);
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
  cursor: default;
  user-select: none;
  z-index: 2;
}

.scroll-indicator__chevron {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--color-text-light);
  border-bottom: 1.5px solid var(--color-text-light);
  transform: rotate(45deg);
  display: block;
  margin-top: 4px;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================================
   8. BUTTONS & CTAs
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-btn);
  white-space: nowrap;
  line-height: 1;
  border: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Solid gold — primary buy CTA */
.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1.5px solid var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

/* Ghost / outlined — free guide CTA */
.btn--ghost {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Larger variant for closing CTA */
.btn--large {
  font-size: 17px;
  padding: 1rem 2.5rem;
}

/* Dark section variant — ghost on dark bg */
.btn--ghost-light {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Text link styled CTA */
.link-cta {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.link-cta:hover,
.link-cta:focus {
  color: var(--color-accent-hover);
}

.link-cta--small {
  font-size: var(--text-small);
  margin-top: 0.5rem;
}

/* Inline note beneath CTA buttons */
.cta-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   9. PULL QUOTES
   ============================================================ */

.pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.45;
  border-left: 3px solid var(--color-border);
  padding: 0.75rem 0 0.75rem 1.75rem;
  margin: 2.5rem 0;
  max-width: var(--width-text);
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* Centered pull quote — for closing CTAs */
.pull-quote--centered {
  border-left: none;
  padding-left: 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  margin: 0 auto 2.5rem;
}

.pull-quote--centered cite {
  text-align: center;
}

/* On dark background */
.section--bg-dark .pull-quote {
  color: rgba(255, 255, 255, 0.8);
  border-left-color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   10. IMAGE PLACEHOLDERS
   ============================================================ */

.placeholder-image {
  background-color: var(--color-border);
  border: 1.5px dashed #B8A898;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.placeholder-image__label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
}

/* 16:9 aspect ratio — hero / atmosphere */
.placeholder-hero {
  aspect-ratio: 16 / 9;
}

/* 2:3 aspect ratio — book cover */
.placeholder-book-cover {
  aspect-ratio: 2 / 3;
  max-width: 280px;
  box-shadow: 8px 12px 32px rgba(44, 34, 24, 0.18), 2px 4px 8px rgba(44, 34, 24, 0.10);
}

/* ============================================================
   11. BOOK SECTION
   ============================================================ */

.book-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.book-details {
  list-style: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.book-details__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.5;
}

.book-details__key {
  color: var(--color-text-light);
  min-width: 80px;
  white-space: nowrap;
}

.book-details__val {
  color: var(--color-text);
}

/* ============================================================
   12. CHAPTER LIST
   ============================================================ */

.chapter-list {
  list-style: none;
  max-width: var(--width-text);
  margin: 0 auto;
}

.chapter-list__item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.chapter-list__item:first-child {
  border-top: 1px solid var(--color-border);
}

.chapter-list__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.chapter-list__desc {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Infinite-scroll ticker */
.testimonials-ticker {
  overflow: hidden;
  margin-top: 3rem;
  /* soft fade at both edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: testimonials-scroll 60s linear infinite;
  will-change: transform;
}


@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonials-track .testimonial-card {
  width: 320px;
  flex-shrink: 0;
}

/* Subtitle row + pause button */
.testimonials-subtitle-row {
  position: relative;
  text-align: center;
  margin-top: 0.5rem;
}

.testimonials-ticker {
  position: relative;
}

.testimonials-pause-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0.45;
  padding: 0;
}

.testimonials-pause-btn:hover,
.testimonials-pause-btn:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
}

/* Pause icon — two thin vertical bars */
.testimonials-pause-btn__icon {
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonials-pause-btn__icon span {
  display: block;
  width: 2.5px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: transform 0.18s, width 0.18s;
}

/* Play icon — single right-pointing triangle via clip-path */
.testimonials-pause-btn.is-paused .testimonials-pause-btn__icon span:first-child {
  width: 0;
  height: 0;
  background: transparent;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
  border-radius: 0;
  transform: translateX(1px);
}

.testimonials-pause-btn.is-paused .testimonials-pause-btn__icon span:last-child {
  display: none;
}

/* Paused state stops the track */
.testimonials-ticker.is-paused .testimonials-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
  .testimonials-ticker {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
  .testimonials-pause-btn {
    display: none;
  }
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 2px;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* ============================================================
   14. FORMS (EMAIL CAPTURE)
   ============================================================ */

.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 1.75rem auto 0;
}

.email-form__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-right: none;
  padding: 0.85rem 1.1rem;
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.email-form__input:focus {
  border-color: var(--color-accent);
}

.email-form__input::placeholder {
  color: var(--color-text-light);
}

.email-form__submit {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1.5px solid var(--color-accent);
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  line-height: 1;
}

.email-form__submit:hover,
.email-form__submit:focus {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.email-form__submit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* Deep-bg form variant */
.section--bg-deep .email-form__input {
  background-color: var(--color-bg);
}

/* ============================================================
   15. SOURCES LIST (ABOUT PAGE)
   ============================================================ */

.sources-list {
  list-style: none;
  max-width: var(--width-text);
  margin: 2rem auto 0;
}

.sources-list__item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.sources-list__item:first-child {
  border-top: 1px solid var(--color-border);
}

.sources-list__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.sources-list__author {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.sources-list__note {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   16. ABOUT PAGE — STOICS SECTION
   ============================================================ */

.stoic-entry {
  max-width: var(--width-text);
  margin: 0 auto;
}

.stoic-entry + .stoic-entry {
  margin-top: 0;
}

/* ============================================================
   17. LEGAL PAGE
   ============================================================ */

.legal-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.legal-nav a {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.1rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a:focus {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.legal-section {
  max-width: var(--width-text);
  scroll-margin-top: 100px;
}

.legal-section + .legal-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.legal-section h2 {
  font-size: 28px;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  font-size: 20px;
  margin: 2rem 0 0.75rem;
}

.legal-section p,
.legal-section li {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-placeholder {
  display: inline-block;
  background-color: #FFF3CD;
  border: 1px dashed #C8A000;
  color: #7A5C00;
  padding: 0.15rem 0.4rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  border-radius: 2px;
}

/* ============================================================
   18. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-bg-dark);
  padding: 2.5rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.site-footer__disclaimer {
  width: 100%;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================================
   19. SCROLL ANIMATIONS
   ============================================================ */

/* Elements start invisible and slightly shifted */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pull quotes — slightly longer fade */
.pull-quote.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.8s ease;
  border-left-color: transparent;
}

.pull-quote.fade-in.visible {
  border-left-color: var(--color-border);
}

/* Staggered delay variants for grouped elements */
.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }

/* No-JS fallback — all visible if JS disabled */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   20. UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }

.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Visually hidden — accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   21. LAUNCH PRICING (HIDDEN — uncomment in HTML when ready)
   ============================================================ */

.launch-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.price-original {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 500;
}

.price-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================================
   22. REAL IMAGES
   ============================================================ */

/* Product cover image — fills the 2:3 cover area */
.product-card__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Keep paper texture above the image */
.product-card__cover::before,
.product-featured__cover::before {
  z-index: 1;
}

/* Hero background — actual image replaces placeholder div */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

/* Book cover — actual image */
.book-cover-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  box-shadow: 8px 12px 32px rgba(44, 34, 24, 0.22), 2px 4px 8px rgba(44, 34, 24, 0.12);
  border-radius: 1px;
}

@media (max-width: 767px) {
  .book-cover-img {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ============================================================
   23. PRICE DISPLAY — was / now
   ============================================================ */

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 2rem;
}

.price-block--centered {
  align-items: center;
}

.price-was {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
  letter-spacing: 0.02em;
}

.price-intro {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   24. INLINE EMAIL CAPTURE — compact mid-page form
   ============================================================ */

.email-capture {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 2rem 2.25rem;
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.email-capture__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.5rem;
}

.email-capture__heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.email-capture__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.email-capture .email-form {
  margin-top: 0;
  max-width: 100%;
}

.email-capture .form-note {
  text-align: left;
  margin-top: 0.6rem;
}

/* On dark sections */
.section--bg-dark .email-capture {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--bg-dark .email-capture__heading {
  color: var(--color-white);
}

.section--bg-dark .email-capture__sub {
  color: rgba(255, 255, 255, 0.6);
}

.section--bg-dark .email-capture .form-note {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  .email-capture {
    padding: 1.5rem 1.25rem;
  }

  .email-capture .email-form {
    flex-direction: column;
  }

  .email-capture .email-form__input {
    border-right: 1.5px solid var(--color-border);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }

  .email-capture .email-form__submit {
    border-radius: 0 0 2px 2px;
  }

  .email-capture .form-note {
    text-align: center;
  }
}

/* ============================================================
   25. RESPONSIVE — TABLET (768px–1079px)
   ============================================================ */

@media (max-width: 1079px) {
  .book-layout {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (below 768px)
   ============================================================ */

@media (max-width: 767px) {
  :root {
    --text-hero:    34px;
    --text-section: 26px;
    --text-sub:     21px;
    --text-body:    17px;
    --space-section:     var(--space-section-mob);
  }

  .site-nav__inner {
    padding: 0.9rem 1.25rem;
    gap: 1rem;
  }

  .site-nav__brand {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .site-nav__links {
    gap: 1.1rem;
  }

  .site-nav__links a {
    font-size: 13px;
  }

  .hero {
    padding: 5rem 1.25rem 4rem;
  }

  .hero__subheadline {
    font-size: 18px;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .placeholder-book-cover {
    max-width: 200px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
  }

  .email-form {
    flex-direction: column;
    max-width: 100%;
  }

  .email-form__input {
    border-right: 1.5px solid var(--color-border);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }

  .email-form__input:focus {
    border-color: var(--color-accent);
  }

  .email-form__submit {
    border-radius: 0 0 2px 2px;
    padding: 0.9rem;
    text-align: center;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pull-quote {
    font-size: 20px;
    padding-left: 1.25rem;
  }

  .legal-nav {
    gap: 1rem;
  }

  .hero .scroll-indicator {
    display: none;
  }

  /* About page hero padding */
  .about-hero {
    padding-top: 80px !important;
  }
}

/* ============================================================
   27. EMOTIONAL BLOCKS GRID
   ============================================================ */

.emotional-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.emotional-block {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.emotional-block__icon {
  display: block;
  font-size: 28px;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.emotional-block__label {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.emotional-block__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .emotional-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .emotional-block {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .emotional-blocks {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   29. OUTCOMES LIST — What You Will Feel
   ============================================================ */

.outcomes-list {
  list-style: none;
  max-width: var(--width-text);
  margin: 0 auto;
}

.outcomes-list__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.outcomes-list__item:first-child {
  border-top: 1px solid var(--color-border);
}

.outcomes-list__check {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-accent);
  line-height: 1.4;
  font-weight: 500;
}

.outcomes-list__item strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.outcomes-list__item p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   30. GUARANTEE BADGE
   ============================================================ */

.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  max-width: 100%;
}

.guarantee-badge--centered {
  justify-content: center;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-badge__icon {
  font-size: 18px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.4;
  flex-shrink: 0;
}

.guarantee-badge__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
}

.guarantee-badge__text strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  font-size: 14px;
}

.guarantee-badge__text span {
  color: var(--color-text-muted);
}

/* On deep bg sections */
.section--bg-deep .guarantee-badge {
  background-color: var(--color-bg);
}

/* ============================================================
   31. SECURITY NOTE
   ============================================================ */

.security-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   32. SOCIAL PROOF TRUST BAR — sits flush below hero
   ============================================================ */

.trust-bar-strip {
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
  padding: 1.5rem 0;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 2rem;
}

.trust-bar__number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}

.trust-bar__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-bar__sep {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  align-self: center;
}

@media (max-width: 700px) {
  .trust-bar {
    gap: 0.25rem 0;
  }

  .trust-bar__item {
    padding: 0.5rem 1.25rem;
  }

  .trust-bar__sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__sep {
    display: none;
  }
}

/* ============================================================
   33. TESTIMONIAL STAR RATINGS
   ============================================================ */

.testimonial-card__stars {
  font-size: 15px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  line-height: 1;
}

/* ============================================================
   34. CREATOR SOURCES
   ============================================================ */

.creator-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--width-text);
  margin: 0 auto;
}

.creator-source {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.creator-source strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.3rem;
}

.creator-source span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .creator-sources {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .creator-source {
    text-align: left;
    padding: 1rem 1.25rem;
  }
}

/* ============================================================
   35. FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: var(--width-text);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.35;
  padding: 1.4rem 2.5rem 1.4rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.25s ease;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--color-text-light);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.25s ease, color 0.25s ease;
  line-height: 1;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
  color: var(--color-accent);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item[open] .faq-item__question {
  color: var(--color-text);
}

.faq-item__answer {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  max-width: 640px;
}

.faq-item__answer p {
  margin: 0;
}

/* ============================================================
   36. KIT FORM BACKGROUND BANNER
   ============================================================ */

.kit-form-bg {
  background-image:
    linear-gradient(rgba(28, 20, 16, 0.45), rgba(28, 20, 16, 0.45)),
    url('../images/hero-atmosphere2.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  width: 100%;
  margin-left: 0;
  border-radius: 3px;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

/* Kit form centering */
.kit-form-bg > * {
  position: relative;
  z-index: 1;
}

.kit-form-bg .formkit-form {
  margin-left: auto;
  margin-right: auto;
}

/* Reset global p margin inside Kit form so it matches Kit editor spacing */
.kit-form-bg p,
.kit-form-bg .formkit-form p,
.kit-form-bg [data-uid] p {
  margin-bottom: 0;
}

/* ============================================================
   37. PRINT
   ============================================================ */

@media print {
  .site-nav,
  .scroll-indicator,
  .hero__ctas,
  .btn,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
}

/* ============================================================
   38. PRODUCTS PAGE
   ============================================================ */

/* Page header — compact, editorial, not full-viewport */
.products-page-hero {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.products-page-hero .headline-hero {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.products-page-hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Jump navigation — section anchor pills */
.products-jump-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.products-jump-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.products-jump-nav__link:hover,
.products-jump-nav__link:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.products-jump-nav__sep {
  color: var(--color-text-light);
  font-size: 11px;
  opacity: 0.4;
  user-select: none;
}

/* Products section header */
.products-section-header {
  margin-bottom: 3rem;
}

.products-section-header .label {
  margin-bottom: 0.6rem;
}

.products-section-header .headline-section {
  margin-bottom: 0.75rem;
}

.products-section-header__sub {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  text-align: center;
}

/* Free guide section */
.products-free__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

/* ============================================================
   Product grid layouts
   ============================================================ */

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   Product card
   ============================================================ */

.product-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(44, 34, 24, 0.11);
  transform: translateY(-3px);
}

/* Cover area — 2:3 book proportions */
.product-card__cover {
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle paper texture on cover */
.product-card__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Cover typography elements */
.product-cover__imprint {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 1.25rem;
  position: relative;
}

.product-cover__rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 auto 1.25rem;
  opacity: 0.4;
  position: relative;
}

.product-cover__name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  display: block;
  position: relative;
}

/* ---- Per-product cover colour schemes ---- */

.product-cover--deck {
  background-color: #2E3B2E;
}
.product-cover--deck .product-cover__imprint,
.product-cover--deck .product-cover__name { color: #C8D4C0; }
.product-cover--deck .product-cover__rule  { background-color: #C8D4C0; }

.product-cover--beginning {
  background-color: #2A3040;
}
.product-cover--beginning .product-cover__imprint,
.product-cover--beginning .product-cover__name { color: #C4CED8; }
.product-cover--beginning .product-cover__rule  { background-color: #C4CED8; }

.product-cover--journal {
  background-color: #3C2820;
}
.product-cover--journal .product-cover__imprint,
.product-cover--journal .product-cover__name { color: #E0CFC4; }
.product-cover--journal .product-cover__rule  { background-color: #E0CFC4; }

.product-cover--quiet-mind {
  background-color: #2C2218;
}
.product-cover--quiet-mind .product-cover__imprint,
.product-cover--quiet-mind .product-cover__name { color: #FAF6F1; }
.product-cover--quiet-mind .product-cover__rule  { background-color: var(--color-accent); }

.product-cover--serena {
  background-color: #3A2010;
}
.product-cover--serena .product-cover__imprint,
.product-cover--serena .product-cover__name { color: #EDD8C4; }
.product-cover--serena .product-cover__rule  { background-color: #EDD8C4; }

.product-cover--year {
  background-color: #1A2535;
}
.product-cover--year .product-cover__imprint,
.product-cover--year .product-cover__name { color: #C0CDD8; }
.product-cover--year .product-cover__rule  { background-color: #C0CDD8; }

.product-cover--art {
  background-color: #1A2C1A;
}
.product-cover--art .product-cover__imprint,
.product-cover--art .product-cover__name { color: #BED0BE; }
.product-cover--art .product-cover__rule  { background-color: #BED0BE; }

/* ============================================================
   Product card body
   ============================================================ */

.product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__format {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* Sale price — gold, prominent */
.price-current {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}

.product-card .btn {
  margin-top: 0.75rem;
  align-self: flex-start;
  font-size: 13px;
  padding: 0.7rem 1.4rem;
}

/* Language / edition badge */
.product-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-accent);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ============================================================
   Featured product — Art of Living Well
   ============================================================ */

.product-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.product-featured__cover {
  aspect-ratio: 2 / 3;
  background-color: #1A2C1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 12px 40px rgba(44, 34, 24, 0.2), 2px 4px 8px rgba(44, 34, 24, 0.1);
  border-radius: 1px;
}

.product-featured__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.product-featured__cover-imprint {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(190, 208, 190, 0.5);
  display: block;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-featured__cover-rule {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #BED0BE;
  opacity: 0.4;
  margin: 0 auto 1.5rem;
  position: relative;
}

.product-featured__cover-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: #BED0BE;
  display: block;
  position: relative;
}

.product-featured__title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.product-featured__sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.product-featured__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 1.75rem 0 0.5rem;
}

.product-featured__price .price-current {
  font-size: 28px;
}

/* ============================================================
   Bundle section
   ============================================================ */

.bundle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 780px;
  margin: 3.5rem auto 0;
  text-align: left;
}

.bundle-includes__heading,
.bundle-savings__heading {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
  display: block;
}

.bundle-includes__list {
  list-style: none;
}

.bundle-includes__list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.bundle-includes__list li::before {
  content: '✓';
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}

.bundle-savings__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 14px;
}

.bundle-savings__row-label {
  color: rgba(255, 255, 255, 0.55);
}

.bundle-savings__row-value {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-size: 13px;
}

.bundle-savings__row--total {
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
}

.bundle-savings__row--total .bundle-savings__row-label {
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
}

.bundle-savings__row--total .bundle-savings__row-value {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}

.bundle-savings__save {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.bundle-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.bundle-cta .btn {
  font-size: 17px;
  padding: 1.1rem 3rem;
}

.bundle-cta__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   38b. PRODUCTS PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1079px) {
  .product-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-featured {
    grid-template-columns: 220px 1fr;
    gap: 2.75rem;
  }
}

@media (max-width: 767px) {
  .products-page-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .product-grid--2col {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-card .btn {
    align-self: stretch;
    text-align: center;
  }

  .product-featured {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .product-featured__cover {
    max-width: 220px;
    margin: 0 auto;
  }

  .bundle-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-jump-nav__sep {
    display: none;
  }
}

@media (max-width: 400px) {
  .product-grid--4col {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   39. LIBRARY SHOWCASE — 3-column ebook grid on index page
   ============================================================ */

.product-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* Featured card — accent border on the hero product */
.product-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(139, 105, 20, 0.13);
}

/* "Also in the library" secondary product pills */
.also-in-library {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.also-in-library__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 1.25rem;
}

.also-in-library__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0;
}

.also-in-library__item {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: border-color 0.25s ease, color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.also-in-library__item em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
}

.also-in-library__item:hover,
.also-in-library__item:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ============================================================
   40. PASS IT ON — Referral promo on index page
   ============================================================ */

.pass-it-on-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem auto 0;
  max-width: var(--width-text);
}

.pass-it-on-step {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
}

.pass-it-on-step__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pass-it-on-step__reward {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   41. RESPONSIVE — new components
   ============================================================ */

@media (max-width: 1079px) {
  .product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid--3col .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-grid--3col {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid--3col .product-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .product-grid--3col .product-card .btn {
    align-self: stretch;
    text-align: center;
  }

  .pass-it-on-grid {
    grid-template-columns: 1fr;
  }

  .also-in-library__list {
    gap: 0.4rem;
  }
}

/* ============================================================
   41. ANNOUNCEMENT BAR — social proof top strip
   ============================================================ */

.announcement-bar {
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 0.55rem 1.5rem;
}

.announcement-bar__text {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.05em;
  margin: 0;
}

/* ============================================================
   42. PASS IT ON PAGE — referral.html
   ============================================================ */

/* Hero — full viewport, light parchment, words carry it */
.pio-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4.5rem;
  position: relative;
  background-color: var(--color-bg);
}

.pio-hero__inner {
  max-width: 600px;
  width: 100%;
}

.pio-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin: 1.25rem auto 1.75rem;
}

.pio-hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 1.5em;
  line-height: 1.75;
}

.pio-cta-note {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 0.85rem;
}

/* How It Works — prose block */
.pio-prose-wrap {
  max-width: 640px;
}

.pio-prose p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.75em;
}

.pio-prose p:last-child {
  margin-bottom: 0;
}

.pio-prose strong {
  font-weight: 600;
  color: var(--color-text);
}

/* ✦ ✦ ✦ — tier divider */
.pio-divider {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.55em;
  margin: 3.5rem auto;
  opacity: 0.6;
  user-select: none;
}

/* Intro italic beneath section label */
.pio-tiers-intro {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

/* Individual tier block — typographic, sits on deeper parchment */
.pio-tier {
  background-color: var(--color-bg-deep);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.pio-tier__numeral {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
}

.pio-tier__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.pio-tier__count {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.6rem;
}

.pio-tier__reward {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.pio-tier__desc {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* Tier V — capstone italic note */
.pio-tier__capstone-note {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 1.35rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Second CTA — short, centered, no repetition */
.pio-cta {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.pio-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.pio-cta__body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Closing line — alone before the footer */
.pio-closing {
  padding: var(--space-section) 1.5rem;
  background-color: var(--color-bg);
  text-align: center;
}

.pio-closing__quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 23px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .pio-hero {
    padding: 5.5rem 1.25rem 3.5rem;
  }

  .pio-tier {
    padding: 2.5rem 1.25rem;
  }

  .pio-divider {
    margin: 2.5rem auto;
  }

  .pio-prose-wrap {
    max-width: 100%;
  }
}

/* ============================================================
   43. PRODUCT COVER IMAGE POSITION — show top of image
   ============================================================ */

.product-cover--art .product-card__cover-img,
.product-featured__cover .product-card__cover-img,
.product-cover--beginning .product-card__cover-img,
.product-cover--year .product-card__cover-img,
.product-cover--journal .product-card__cover-img,
.product-cover--deck .product-card__cover-img {
  object-position: top center;
}

/* ============================================================
   44. BUNDLE IMAGE
   ============================================================ */

.bundle-image-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bundle-image-wrap img {
  display: inline-block;
  width: auto;
  max-width: 220px;
  height: auto;
  box-shadow: 12px 16px 48px rgba(0, 0, 0, 0.45), 3px 6px 12px rgba(0, 0, 0, 0.25);
  border-radius: 1px;
}

@media (max-width: 767px) {
  .bundle-image-wrap img {
    max-width: 160px;
  }
}

/* ============================================================
   45. PRODUCT CARD — learn more + clickable cover
   ============================================================ */

.product-card__cover[data-modal-trigger] {
  cursor: pointer;
}

.product-card__cover[data-modal-trigger]:hover .product-card__cover-img {
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.product-card__learn-more {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
  align-self: flex-start;
  transition: border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.product-card__learn-more:hover,
.product-card__learn-more:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.product-card .product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}

.product-card .product-card__actions .btn {
  margin-top: 0;
}

@media (max-width: 767px) {
  .product-card .product-card__actions {
    flex-direction: column;
  }

  .product-card .product-card__actions .btn,
  .product-card__learn-more {
    align-self: stretch;
    text-align: center;
  }
}

/* ============================================================
   46. PRODUCT MODAL
   ============================================================ */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 16, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--color-bg);
  border-radius: 2px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(28, 20, 16, 0.35), 0 8px 24px rgba(28, 20, 16, 0.2);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.product-modal-overlay.is-open .product-modal {
  transform: translateY(0);
}

.product-modal__cover-col {
  position: relative;
  min-height: 320px;
}

.product-modal__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal__body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(28, 20, 16, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-modal__close:hover {
  background: rgba(28, 20, 16, 0.14);
  color: var(--color-text);
}

.product-modal__format {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.6rem;
}

.product-modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.product-modal__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}

.product-modal__desc p {
  margin-bottom: 0.9em;
}

.product-modal__desc p:last-child {
  margin-bottom: 0;
}

.product-modal__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.product-modal__price .price-current {
  font-size: 26px;
}

.product-modal__buy {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .product-modal__cover-col {
    min-height: 220px;
    max-height: 260px;
  }

  .product-modal__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .product-modal__title {
    font-size: 22px;
  }

  .product-modal__buy {
    align-self: stretch;
    text-align: center;
  }
}

/* ============================================================
   47. NEWSLETTER SECTION (Kit embed)
   ============================================================ */

.newsletter-section {
  background-color: var(--color-bg-deep);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.newsletter-section .container {
  max-width: 560px;
}
