/* ═══════════════════════════════════════════════════════════════
   OFF THE BOOKS — Confessional Interview Advertorial
   LanderLab-compatible, mobile-first, zero-framework CSS
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Ink scale */
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-muted: #8a8a8a;

  /* Surfaces */
  --cream: #FAF8F5;
  --paper: #FFFFFF;
  --rule: #E8E4DD;
  --dark: #1a1a1a;

  /* Accents — two only: pink + ink. No gold. */
  --accent: #D4458C;
  --accent-hover: #B83678;
  --accent-wash: #FCE7F1;

  /* Placeholder (hero image pre-upload) */
  --placeholder-bg: linear-gradient(135deg, #F4EDE0 0%, #E8DFD0 100%);
  --placeholder-border: #C9B994;
  --placeholder-text: #8A7A5A;

  /* Typography */
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout widths */
  --wrap: 640px;
  --wrap-wide: 860px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  /* Lock zoom — prevents pinch-to-zoom + double-tap zoom on touch devices */
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  touch-action: pan-x pan-y;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Soft-pink editorial highlight */
.hl-pink {
  background: linear-gradient(transparent 58%, var(--accent-wash) 58%, var(--accent-wash) 92%, transparent 92%);
  padding: 0 2px;
  font-weight: inherit;
}

/* Inline pink product-name CTA — every body-copy mention of Klavv is a live link,
   same pink as the drop-cap T. Keeps narrative flow while making product clickable. */
.klavv-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.15s;
  font-style: inherit;
}
.klavv-cta:hover,
.klavv-cta:active { color: var(--accent-hover); }

/* ── Masthead — mobile-tight ── */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 10px 16px;
  text-align: center;
}
.masthead-brand {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.masthead-tagline {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 3px;
  display: none;
}
@media (min-width: 720px) {
  .masthead { padding: 18px 20px; }
  .masthead-brand { font-size: 22px; }
  .masthead-tagline { display: block; }
}

/* ── Article header ── */
.article-header {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 18px 10px;
}
.article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--rule);
}
.article-meta .tag { color: var(--accent); }
.article-meta .sep { color: var(--rule); }
@media (min-width: 720px) {
  .article-header { padding: 40px 24px 24px; }
  .article-meta { gap: 14px; font-size: 11px; margin-bottom: 24px; padding-bottom: 18px; }
}

/* Headline — sentence case, proper punctuation */
.headline {
  font-family: var(--serif);
  font-size: clamp(24px, 7vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
@media (min-width: 720px) {
  .headline { line-height: 1.05; margin-bottom: 22px; }
}

/* Deck replaced with Dani skeptic quote */
.deck-quote {
  font-family: var(--serif);
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.38;
  color: var(--ink-soft);
  font-style: italic;
  padding: 8px 0 8px 12px;
  margin-bottom: 10px;
  border-left: 3px solid var(--accent);
}
.deck-quote p { margin: 0 0 4px 0; }
.deck-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  line-height: 1.25;
}
@media (min-width: 720px) {
  .deck-quote { line-height: 1.55; padding: 18px 0 18px 20px; margin-bottom: 22px; }
  .deck-quote p { margin-bottom: 10px; }
  .deck-quote cite { font-size: 12px; margin-top: 8px; }
}

/* Byline */
.byline {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
  line-height: 1.35;
}
.byline strong { color: var(--ink); font-weight: 600; font-style: normal; }
.byline .credential { color: var(--ink-soft); font-style: italic; font-weight: 400; }
@media (min-width: 720px) {
  .byline { font-size: 13px; padding-top: 14px; }
}

/* ── Hero image ── */
.hero { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 16px 4px; }
.hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.img-placeholder {
  background: var(--placeholder-bg);
  border: 2px dashed var(--placeholder-border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  min-height: 180px;
}
.img-placeholder-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--placeholder-text);
  font-weight: 600;
  margin-bottom: 6px;
}
.img-placeholder-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.img-placeholder-desc {
  display: none;
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.55;
  margin-top: 10px;
}
@media (min-width: 720px) {
  .hero { padding: 0 16px 12px; }
  .img-placeholder { min-height: 320px; padding: 40px 28px; aspect-ratio: 16/9; }
  .img-placeholder-label { font-size: 11px; margin-bottom: 12px; }
  .img-placeholder-title { font-size: 20px; margin-bottom: 12px; }
  .img-placeholder-desc { display: block; }
}

.hero-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: var(--wrap);
  margin: 14px auto 0;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 720px) {
  .hero-caption { font-size: 18px; line-height: 1.5; margin-top: 18px; padding: 0 24px; }
}

/* ── Body wrap ── */
.article-body {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 24px 20px 0;
}
.article-body p {
  margin-bottom: 1.3em;
  color: var(--ink);
}
.article-body p.lede {
  font-family: var(--serif);
  font-size: 19.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.4em;
}
@media (min-width: 720px) {
  .article-body { padding: 32px 24px 0; }
  .article-body p { margin-bottom: 1.4em; }
  .article-body p.lede { font-size: 22px; line-height: 1.5; margin-bottom: 1.6em; }
}

/* HERO QUOTE — the "willpower" one-of-us statement. Big. Bold. Center of gravity. */
.hero-quote {
  margin: 24px 0 28px;
  padding: 0;
  text-align: center;
}
.hero-quote p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 5.6vw, 32px);
  line-height: 1.28;
  color: var(--ink);
  font-style: normal;
  letter-spacing: -0.01em;
  margin: 0;
}
.hero-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-top: 16px;
}
@media (min-width: 720px) {
  .hero-quote { margin: 36px 0 40px; }
  .hero-quote p { line-height: 1.3; }
  .hero-quote cite { font-size: 12px; margin-top: 20px; }
}

/* Segue line — tiny, italic, transitions from hero quote to Maya's extended voice */
.maya-intro-line {
  font-family: var(--sans);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 4px !important;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 720px) {
  .maya-intro-line { font-size: 15px; }
}

/* ── Publication attribution label (inline, subtle) ── */
.pub-attr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline;
}
.pub-attr + span { display: inline; }

/* ── Embedded quote highlight inside narrative paragraph ── */
.embed-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* ── Maya's extended first-person block (her full story arc, her voice) ── */
.maya-extended {
  margin: 28px 0;
  padding: 22px 20px 18px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.maya-extended p {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1em;
  font-style: normal;
  font-weight: 400;
}
.maya-extended p:first-of-type::before {
  content: '"';
  font-family: var(--serif);
  font-size: 1.1em;
  font-weight: 500;
}
.maya-extended p:last-of-type::after {
  content: '"';
  font-family: var(--serif);
}
.maya-extended p:last-of-type { margin-bottom: 0; }
.maya-extended cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 14px;
}
@media (min-width: 720px) {
  .maya-extended { margin: 36px 0; padding: 30px 32px 26px; }
  .maya-extended p { font-size: 18px; line-height: 1.6; }
  .maya-extended cite { font-size: 12px; margin-top: 16px; }
}

/* ── Social proof figure (the "Nick" pattern — secondary person with photo + claim) ── */
.social-proof {
  margin: 28px 0;
  text-align: center;
}
.social-proof-photo {
  background: var(--placeholder-bg);
  border: 2px dashed var(--placeholder-border);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.social-proof-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.social-proof-photo-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--placeholder-text);
  font-weight: 600;
  margin-bottom: 6px;
}
.social-proof-photo-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.social-proof-photo-desc {
  display: none;
  font-size: 12.5px;
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.5;
  margin-top: 8px;
}
.social-proof-claim {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-top: 14px;
  padding: 0 10px;
}
.social-proof-claim .hl-pink { font-weight: 600; }
@media (min-width: 720px) {
  .social-proof { margin: 36px 0; }
  .social-proof-photo { min-height: 260px; padding: 28px; }
  .social-proof-photo-title { font-size: 17px; }
  .social-proof-photo-desc { display: block; }
  .social-proof-claim { font-size: 20px; margin-top: 18px; }
}

/* ── Interview transition line (italic serif, sets up the Q&A) ── */
.interview-transition {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 28px 0 8px;
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .interview-transition { font-size: 18.5px; line-height: 1.55; margin: 36px 0 12px; padding: 22px 0 0; }
}

/* ── Q&A blocks ── */
.qa { margin: 30px 0; }
.qa-block { margin-bottom: 24px; }
.qa-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.qa-a { font-size: 17px; line-height: 1.65; color: var(--ink); }
.qa-a p { margin-bottom: 1em; }
.qa-a p:last-child { margin-bottom: 0; }
@media (min-width: 720px) {
  .qa { margin: 36px 0; }
  .qa-block { margin-bottom: 28px; }
  .qa-q { font-size: 19px; line-height: 1.5; margin-bottom: 14px; padding-left: 20px; }
  .qa-a { font-size: 18px; line-height: 1.7; }
  .qa-a p { margin-bottom: 1.1em; }
}

/* ── Pull quote ── */
.pullquote {
  max-width: var(--wrap);
  margin: 36px auto;
  padding: 30px 24px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.pullquote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 4.5vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.pullquote-attr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (min-width: 720px) {
  .pullquote { margin: 48px auto; padding: 40px 32px; }
  .pullquote-attr { font-size: 12px; letter-spacing: 0.24em; }
}

/* ── Reveal block (the product drop) ── */
.reveal {
  max-width: var(--wrap);
  margin: 30px auto;
  padding: 32px 22px 28px;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
  text-align: center;
}
.reveal-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.reveal-product-img {
  max-width: 210px;
  width: 65%;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}
.reveal-text {
  font-family: var(--serif);
  font-size: clamp(19px, 3.5vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}
.reveal-product-name {
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0;
  letter-spacing: -0.01em;
}
.reveal-product-name a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.reveal-product-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.reveal-mechanism {
  margin-top: 22px;
  padding: 20px;
  background: var(--cream);
  border-radius: 8px;
  text-align: left;
}
.reveal-mechanism-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.reveal-mechanism p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.reveal-mechanism strong { color: var(--ink); font-weight: 600; }
@media (min-width: 720px) {
  .reveal { margin: 40px auto; padding: 44px 32px 40px; }
  .reveal-product-img { max-width: 240px; width: 70%; margin-bottom: 24px; }
  .reveal-mechanism { padding: 24px; }
  .reveal-mechanism p { font-size: 16px; }
}

/* ── Testimonials ── */
.testimonials-intro {
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding: 0 20px;
}
.testimonials-intro h2 {
  font-family: var(--serif);
  font-size: clamp(23px, 4.5vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}
.testimonials-intro p { color: var(--ink-soft); font-size: 15px; }
.testimonial-grid {
  max-width: var(--wrap-wide);
  margin: 24px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .testimonials-intro { padding: 0 24px; }
  .testimonials-intro p { font-size: 16px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 20px; margin: 28px auto; }
}
.testimonial {
  background: var(--paper);
  padding: 18px 20px 20px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  font-family: var(--sans);
}
.testimonial-avatar.c2 { background: #5B8DEF; }
.testimonial-avatar.c3 { background: #7BA05B; }
.testimonial-avatar.c4 { background: #E8A02B; }
.testimonial-avatar.c5 { background: #9063CD; }
.testimonial-body { flex: 1; min-width: 0; }
.testimonial-header { margin-bottom: 5px; }
.testimonial-name { font-weight: 600; font-size: 13px; color: var(--ink); }
.testimonial-city { font-size: 11px; color: var(--ink-muted); margin-left: 5px; }
.testimonial-text { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* ── FAQ rapid-fire ── */
.faq-block { max-width: var(--wrap); margin: 40px auto 0; padding: 0 20px; }
.faq-block h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.faq-intro-a {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.faq-rapid { display: grid; gap: 18px; }
.faq-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.faq-a { font-size: 15px; color: var(--ink); line-height: 1.5; }
@media (min-width: 720px) {
  .faq-block { padding: 0 24px; }
  .faq-block h3 { font-size: 20px; }
  .faq-intro-a { font-size: 17px; padding-bottom: 20px; }
  .faq-rapid { gap: 20px; }
  .faq-q { font-size: 17px; }
  .faq-a { font-size: 16px; line-height: 1.55; }
}

/* ── CTA offer card ── */
.cta-block {
  max-width: var(--wrap);
  margin: 44px auto 28px;
  padding: 32px 22px;
  background: var(--ink);
  border-radius: 12px;
  text-align: center;
  color: var(--paper);
  position: relative;
}
.cta-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 22px;
  text-align: left;
}
.cta-product-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.cta-product-details { flex: 1; min-width: 0; }
.cta-product-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 3px;
  line-height: 1.2;
}
.cta-product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.cta-price-now { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--paper); }
.cta-price-was { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.cta-price-save {
  display: inline-block;
  background: var(--accent);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.cta-product-bullets { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1.5; margin-top: 4px; }
.cta-editor-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 20px;
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--paper);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 4px 0 16px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.cta-button:hover { background: var(--accent-hover); }
.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}
.cta-trust-row span::before { content: "✓ "; color: var(--accent); font-weight: 700; }
@media (min-width: 720px) {
  .cta-block { margin: 56px auto 32px; padding: 44px 28px; }
  .cta-product-row { gap: 20px; padding: 16px; margin-bottom: 28px; }
  .cta-product-img { width: 90px; height: 90px; }
  .cta-product-name { font-size: 19px; margin-bottom: 4px; }
  .cta-price-now { font-size: 22px; }
  .cta-price-was { font-size: 14px; }
  .cta-price-save { font-size: 11px; }
  .cta-product-bullets { font-size: 12px; }
  .cta-editor-note { font-size: 17px; line-height: 1.55; margin-bottom: 24px; }
  .cta-button { padding: 18px 36px; font-size: 16px; margin: 8px 0 18px; }
  .cta-trust-row { gap: 20px; font-size: 12px; }
}

/* ── Sign-off ── */
.signoff {
  max-width: var(--wrap);
  margin: 20px auto 64px;
  padding: 32px 20px 0;
  border-top: 1px solid var(--rule);
}
.signoff p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 1.1em;
  color: var(--ink);
}
.signoff-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-top: 24px;
}
.signoff-close strong { font-style: normal; font-weight: 500; }
@media (min-width: 720px) {
  .signoff { margin: 24px auto 80px; padding: 40px 24px 0; }
  .signoff p { font-size: 18px; line-height: 1.7; margin-bottom: 1.2em; }
  .signoff-close { font-size: 22px; margin-top: 28px; }
}

/* ── Footer ── */
.footer {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 32px 20px;
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid var(--rule);
}
.footer a { color: var(--ink-muted); text-decoration: underline; }
@media (min-width: 720px) {
  .footer { padding: 40px 24px; font-size: 12px; line-height: 1.7; }
}

/* utility */
.em { font-family: var(--serif); font-style: italic; font-weight: 500; }
