/* =============================================
   GUIDE PAGE — guide.css
   Book-style reading experience
   ============================================= */

:root {
  --guide-text:    #1a1a1a;
  --guide-muted:   #555;
  --guide-rule:    #e0e0e0;
  --guide-bg:      #ffffff;
  --guide-alt:     #faf8f6;
  --guide-max:     720px;
  --persimmon:     #FF6347;
}

/* ── BASE ── */
.guide-page {
  background: var(--guide-bg);
  color: var(--guide-text);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.guide-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--guide-rule);
}

.guide-nav__home {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--guide-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.guide-nav__home:hover { color: var(--persimmon); }

.guide-nav__title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--guide-muted);
  letter-spacing: 0.06em;
  display: none;
}
@media (min-width: 640px) { .guide-nav__title { display: block; } }

.guide-nav__pdf {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--persimmon);
  background: none;
  border: 1.5px solid var(--persimmon);
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.guide-nav__pdf:hover { background: var(--persimmon); color: #fff; }
.guide-nav__pdf svg { flex-shrink: 0; }

/* ── COVER ── */
.guide-cover {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Text side */
.guide-cover__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(36px, 5vw, 80px);
  text-align: left;
}
.guide-cover__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,99,71,0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* Image side */
.guide-cover__image {
  position: relative;
  overflow: hidden;
}
.guide-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
/* Gradient blend: image fades into black on the left edge */
.guide-cover__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .guide-cover {
    grid-template-columns: 1fr;
  }
  .guide-cover__image {
    height: 55vw;
    min-height: 280px;
    order: -1;
  }
  .guide-cover__image::before {
    background: linear-gradient(to bottom, transparent 60%, #0a0a0a 100%);
  }
  .guide-cover__inner {
    padding: 48px 28px 72px;
    text-align: center;
    align-items: center;
  }
}

.guide-cover__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--persimmon);
  display: block;
  margin-bottom: 32px;
}

.guide-cover__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.95;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.guide-cover__subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  color: var(--persimmon);
  margin: 0 0 28px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.guide-cover__tagline {
  font-family: 'Lora', serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin: 0 0 40px;
}

.guide-cover__rule {
  width: 48px;
  height: 2px;
  background: var(--persimmon);
  margin: 0 auto 28px;
}

.guide-cover__byline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin: 0;
}
.guide-cover__byline strong { color: rgba(255,255,255,0.95); }

/* ── CHAPTER SCROLL REVEAL ── */
.guide-chapter,
.guide-cta-section,
.guide-closing {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.guide-chapter.ch-visible,
.guide-cta-section.ch-visible,
.guide-closing.ch-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CHAPTER LAYOUT ── */
.guide-chapter {
  padding: 88px 24px;
  background: var(--guide-bg);
}
.guide-chapter--alt {
  background: var(--guide-alt);
}
.guide-chapter__inner {
  max-width: var(--guide-max);
  margin: 0 auto;
}

/* ── CHAPTER HEADER ── */
.guide-chapter__header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--guide-rule);
}
.guide-chapter__label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--persimmon);
  display: block;
  margin-bottom: 12px;
}
.guide-chapter__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--guide-text);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ── BODY TYPOGRAPHY ── */
.guide-body p {
  margin: 0 0 1.4em;
  color: var(--guide-text);
}

.guide-drop-cap::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.2em;
  line-height: 0.75;
  float: left;
  margin: 0.06em 0.1em 0 0;
  color: var(--persimmon);
}

.guide-welcome {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--persimmon);
  margin-bottom: 28px !important;
}

/* ── PULL INLINE ── */
.guide-pull-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--persimmon);
  background: #fff8f6;
}
.guide-pull-inline span {
  font-family: 'Lora', serif;
  font-size: 1.15em;
  font-style: italic;
  color: var(--guide-text);
}
.guide-pull-inline--dark {
  background: #0a0a0a;
  border-left-color: var(--persimmon);
}
.guide-pull-inline--dark span {
  color: #fff;
  font-size: 1.3em;
}

/* ── CALLOUT BOX ── */
.guide-callout {
  background: var(--guide-alt);
  border-top: 2px solid var(--guide-text);
  border-bottom: 2px solid var(--guide-text);
  padding: 28px 32px;
  margin: 36px 0;
}
.guide-callout__lead {
  font-family: 'Lora', serif;
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 16px !important;
  color: var(--guide-text);
}

/* ── LISTS ── */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-list li {
  font-family: 'Lora', serif;
  font-size: 1em;
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--guide-text);
}
.guide-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--persimmon);
  font-style: normal;
}
.guide-list--plain li::before { content: '·'; }

/* ── PULL QUOTES ── */
.guide-pull-quote {
  margin: 28px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--guide-text);
  background: var(--guide-alt);
}
.guide-pull-quote blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.6;
  color: var(--guide-text);
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: none;
}
.guide-pull-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--guide-muted);
  font-style: normal;
}
.guide-pull-quote--persimmon {
  border-left-color: var(--persimmon);
  background: #fff8f6;
}
.guide-pull-quote--persimmon blockquote { color: var(--guide-text); }
.guide-pull-quote--serif blockquote { font-size: clamp(16px, 1.8vw, 20px); }
.guide-pull-quote--hillman {
  border-left: none;
  background: #0a0a0a;
  text-align: center;
  margin: 48px 0;
  padding: 48px 40px;
}
.guide-pull-quote--hillman blockquote { color: rgba(255,255,255,0.88); }
.guide-pull-quote--hillman cite { color: rgba(255,255,255,0.75); }
.guide-pull-quote--closing {
  border-left-color: var(--persimmon);
  background: #fff8f6;
  text-align: center;
  border-left: none;
  border-top: 1px solid var(--persimmon);
  border-bottom: 1px solid var(--persimmon);
  margin: 48px 0;
}
.guide-pull-quote--closing blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
}

/* ── EMPHASIS ── */
.guide-emphasis {
  font-family: 'Lora', serif;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--guide-text);
  margin: 1.6em 0 !important;
}
.guide-emphasis--italic { font-style: italic; }

/* ── INTERLUDE ── */
.guide-interlude {
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: 1px;
  background: var(--guide-alt);
  font-size: 0.94em;
  font-style: italic;
  color: var(--guide-muted);
  border-left: 2px solid var(--guide-rule);
}
.guide-interlude p { margin: 0; color: var(--guide-muted); }

/* ── TWO COL CONTEXTS ── */
.guide-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--guide-rule);
  margin: 40px 0;
  border: 1px solid var(--guide-rule);
}
.guide-two-col__item {
  background: var(--guide-bg);
  padding: 28px 24px;
  text-align: center;
}
.guide-two-col__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--persimmon);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.guide-two-col__item p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1em;
  margin: 0 !important;
}

/* ── VIDEO EMBED ── */
.guide-video {
  margin: 40px 0;
}
.guide-video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.guide-video__wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.guide-video__caption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--guide-muted);
  font-style: italic;
  margin-top: 12px !important;
  text-align: center;
}

/* ── TESTIMONIAL ── */
.guide-testimonial {
  background: var(--guide-alt);
  border-left: 3px solid var(--guide-rule);
  padding: 24px 28px;
  margin: 32px 0;
}
.guide-testimonial p {
  font-style: italic;
  font-size: 0.96em;
  margin-bottom: 8px !important;
}
.guide-testimonial cite {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--guide-muted);
  font-style: normal;
}

/* ── TWO STEPS ── */
.guide-two-steps {
  text-align: center;
  margin: 40px 0;
  padding: 32px;
  background: var(--guide-alt);
}
.guide-two-steps__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.guide-two-steps__item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.05em;
  color: var(--guide-text);
  line-height: 1.1;
}
.guide-two-steps__item span:first-child { color: var(--guide-muted); }
.guide-two-steps__note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1em;
  color: var(--guide-muted);
  margin: 0 !important;
}

/* ── THREE WORDS ── */
.guide-three-words {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0;
  padding: 0 0 0 28px;
  border-left: 4px solid var(--persimmon);
}
.guide-three-words span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--guide-text);
}
.guide-three-words span:last-child { color: var(--persimmon); }

/* ── MANTRA ── */
.guide-mantra {
  margin: 40px 0;
  padding: 36px;
  background: #0a0a0a;
  text-align: center;
}
.guide-mantra p {
  font-family: 'Lora', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px !important;
  line-height: 1.6;
}
.guide-mantra p:last-child { margin-bottom: 0 !important; }

/* ── FREEDOM LIST ── */
.guide-freedom-list {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guide-freedom-list p {
  margin: 0 !important;
  font-size: 1.05em;
  padding-left: 20px;
  position: relative;
}
.guide-freedom-list p::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--persimmon);
}

/* ── CTA SECTION ── */
.guide-cta-section {
  background: var(--persimmon);
  padding: 56px 24px;
}
.guide-cta-section__inner {
  max-width: var(--guide-max);
  margin: 0 auto;
  text-align: center;
  background: transparent;
}
.guide-cta-section__inner .guide-chapter__label { color: rgba(255,255,255,0.7); }

/* Pull quote inside the persimmon CTA — high-contrast white card */
.guide-cta-section .guide-pull-quote,
.guide-cta-section .guide-pull-quote--serif,
.guide-cta-section .guide-pull-quote--persimmon {
  background: rgba(255,255,255,0.97) !important;
  border-left: 5px solid var(--persimmon) !important;
  border-top: none !important;
  border-bottom: none !important;
  margin: 36px 0 !important;
  padding: 28px 36px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15) !important;
}
.guide-cta-section .guide-pull-quote blockquote {
  color: #1a1a1a !important;
}
.guide-cta-section .guide-pull-quote cite {
  color: var(--persimmon) !important;
}
/* Ensure no child element creates a white box */
.guide-cta-section .guide-interlude,
.guide-cta-section .guide-callout,
.guide-cta-section .guide-testimonial {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.guide-cta-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}
.guide-cta-section p {
  font-family: 'Lora', serif;
  font-size: 1.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2em;
  line-height: 1.75;
}

/* ── CTA BUTTON ── */
.guide-cta-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 40px;
  background: #fff;
  color: var(--persimmon);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.guide-cta-btn:hover {
  background: #0a0a0a;
  color: #fff;
}

/* ── CLOSING ── */
.guide-closing {
  background: #0a0a0a;
  padding: 96px 24px;
}
.guide-closing__inner {
  max-width: var(--guide-max);
  margin: 0 auto;
  text-align: center;
}
.guide-closing__inner .guide-chapter__label { color: rgba(255,255,255,0.75); }
.guide-closing__mantra {
  margin: 40px 0;
}
.guide-closing__mantra p {
  font-family: 'Lora', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-closing__mantra p:last-child {
  color: var(--persimmon);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}
.guide-closing__cta p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.guide-closing__byline {
  margin-top: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* ── FOOTER ── */
.guide-footer {
  background: #f5f5f5;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--guide-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.guide-footer a {
  color: var(--persimmon);
  text-decoration: none;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   GATE OVERLAY
══════════════════════════════════════════ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0a0a0a;
}

.gate-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: #fff;
  overflow-y: auto;
}

.gate-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}
.gate-brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #0a0a0a;
}
.gate-brand__sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--persimmon);
}

.gate-rule {
  width: 40px;
  height: 2px;
  background: var(--persimmon);
  margin-bottom: 32px;
}

.gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  color: #0a0a0a;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.gate-subtitle {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-style: italic;
  color: #666;
  margin: 0 0 32px;
}

.gate-intro {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gate-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gate-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
}
.gate-field input {
  padding: 13px 16px;
  font-family: 'Lora', serif;
  font-size: 15px;
  border: 1.5px solid #ddd;
  background: #fafafa;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.gate-field input:focus {
  border-color: var(--persimmon);
  background: #fff;
}

.gate-btn {
  margin-top: 4px;
  padding: 15px 32px;
  background: var(--persimmon);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}
.gate-btn:hover { background: #e5452e; }

.gate-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #aaa;
  margin: 0 !important;
  letter-spacing: 0.04em;
}

/* ── GATE VISUAL PANEL ── */
.gate-visual {
  position: relative;
  overflow: hidden;
}
.gate-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.7);
}
.gate-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,99,71,0.18) 0%, rgba(0,0,0,0.55) 100%);
}
.gate-visual__quote {
  position: absolute;
  bottom: 48px;
  left: 40px;
  right: 40px;
  font-family: 'Lora', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* ── MOBILE GATE ── */
@media (max-width: 768px) {
  .gate-overlay { grid-template-columns: 1fr; }
  .gate-visual { display: none; }
  .gate-card { min-height: 100vh; }
}

/* ── GUIDE CONTENT ALWAYS VISIBLE ── */
.guide-wrap { visibility: visible; }

/* ══════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════ */
@media print {
  @page {
    size: A4;
    margin: 1.5cm;
    /* Suppresses browser URL/date chrome in Chrome/Edge.
       Firefox: user must uncheck "Print headers and footers" in Print dialog. */
  }

  /* Hide elements that shouldn't appear in print */
  .gate-overlay,
  .guide-nav,
  .guide-nav__pdf,
  .guide-footer { display: none !important; }

  .guide-wrap[aria-hidden="true"] {
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
  }

  .guide-page { font-size: 11pt; color: #000; }
  .guide-cover { min-height: 0; padding: 48pt 0; background: #000 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .guide-chapter { padding: 32pt 0; opacity: 1 !important; transform: none !important; }
  #ch-power { padding-bottom: 16pt; }
  .guide-cta-section { background: var(--persimmon) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .guide-closing { background: #0a0a0a !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .guide-pull-quote--hillman, .guide-mantra { background: #0a0a0a !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  .guide-video { display: none; }
  .guide-chapter { page-break-inside: auto; }
  .guide-cta-section { page-break-inside: auto; }
  .guide-cover { page-break-after: always; page-break-inside: avoid; }
  .guide-pull-quote, .guide-callout, .guide-two-col__item { page-break-inside: avoid; }
  .guide-cta-section, .guide-closing { page-break-before: auto; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .guide-pull-quote { margin: 32px 0; padding: 24px 20px; }
  .guide-two-col { grid-template-columns: 1fr; }
  .guide-nav { padding: 12px 20px; }
  .guide-chapter { padding: 60px 24px; }
  .guide-three-words span { font-size: clamp(32px, 8vw, 52px); }
}
