/*
 * Boudoir Inspiration — Landing Page Design System
 * ════════════════════════════════════════════════════════════════════════
 * Self-contained, token-driven CSS for marketing / landing-page BLOCKS.
 * (Blog *content* uses the separate bi-* system in .blog-design-system.)
 *
 * • All classes use the `lp-` prefix.
 * • Theme = dark (#070707). Override the :root tokens to re-skin.
 * • No framework required. The grid is plain CSS (fl)/grid; it coexists
 *   peacefully with Bootstrap 4 (which the site already loads) — `lp-`
 *   classes never collide with `.container/.row/.col`.
 * • Fonts expected on the page (the showcase loads them):
 *     Montserrat (headings) + Open Sans (body) + Material Icons (glyphs).
 */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --lp-bg:            #070707; /* page background */
  --lp-surface:       #111111; /* default card */
  --lp-surface-alt:   #1a1a1a; /* raised / alt card */
  --lp-border:        #333333; /* hairline borders */
  --lp-border-soft:   #242424; /* very subtle dividers */

  --lp-heading:       #ffffff; /* headings */
  --lp-body:          #777777; /* paragraph text */
  --lp-strong:        #bcbcbc; /* bold / emphasis text */
  --lp-muted:         #555555; /* captions, footnotes */

  --lp-accent:        #ee4774; /* brand pink */
  --lp-accent-hover:  #ff5d88;
  --lp-accent-soft:   rgba(238,71,116,0.12);

  --lp-green:         #4ade80;
  --lp-amber:         #fbbf24;
  --lp-red:           #f87171;

  --lp-font-head: 'Montserrat', sans-serif;
  --lp-font-body: 'Open Sans', sans-serif;

  --lp-radius:    14px;
  --lp-radius-sm: 8px;
  --lp-maxw:      1335px;
  --lp-gap:       24px;
  --lp-section-y: 88px; /* vertical rhythm between sections */
}

/* ── Layout primitives ─────────────────────────────────────────────────── */
.lp-section {
  padding: var(--lp-section-y) 20px;
  background: var(--lp-bg);
}
.lp-section--tight { padding-top: 48px; padding-bottom: 48px; }
.lp-section--alt   { background: #0c0c0c; }

.lp-container { max-width: var(--lp-maxw); margin: 0 auto; width: 100%; padding: 0 15px; }
.lp-container--narrow { max-width: 760px; }

.lp-grid { display: grid; gap: var(--lp-gap); }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Section heading (eyebrow + title + subtitle) ──────────────────────── */
.lp-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.lp-head--left { margin-left: 0; text-align: left; }
.lp-eyebrow {
  display: inline-block;
  font-family: var(--lp-font-head);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--lp-accent);
  margin-bottom: 14px;
}
.lp-title {
  font-family: var(--lp-font-head);
  font-weight: 600;
  color: var(--lp-heading);
  font-size: 40px; line-height: 1.15;
  margin: 0 0 16px;
}
.lp-subtitle {
  font-family: var(--lp-font-body);
  color: var(--lp-body);
  font-size: 17px; line-height: 1.6;
  margin: 0;
}
.lp-eyebrow > .material-icons { font-size: 14px; vertical-align: -2px; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lp-font-head); font-weight: 600;
  font-size: 15px; line-height: 1;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none !important; cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s ease;
}
.lp-btn .material-icons { font-size: 18px; }
.lp-btn--primary { background: var(--lp-accent); color: #fff; }
.lp-btn--primary:hover { background: var(--lp-accent-hover); color: #fff; transform: translateY(-1px); }
.lp-btn--ghost { background: transparent; color: var(--lp-heading); border-color: var(--lp-border); }
.lp-btn--ghost:hover { border-color: var(--lp-accent); color: var(--lp-accent); }
.lp-btn--lg { padding: 17px 34px; font-size: 17px; }
.lp-btn--block { width: 100%; justify-content: center; }
.lp-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-btn-row--center { justify-content: center; }

.lp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--lp-font-head); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--lp-accent-soft); color: var(--lp-accent);
  border: 1px solid rgba(238,71,116,0.3);
}

/* ── Announcement banner ───────────────────────────────────────────────── */
.lp-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; text-align: center;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--lp-accent), #c9356a);
  color: #fff; font-family: var(--lp-font-body); font-size: 14px;
}
.lp-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.lp-banner .material-icons { font-size: 18px; }

/* ── Hero: split (text + media) ────────────────────────────────────────── */
.lp-hero { background: var(--lp-bg); padding: 96px 20px; overflow: hidden; }
.lp-hero__split {
  max-width: var(--lp-maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.lp-hero__split--reverse .lp-hero__media { order: -1; }
.lp-hero__title {
  font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading);
  font-size: 52px; line-height: 1.08; margin: 18px 0 20px;
}
.lp-hero__lead {
  font-family: var(--lp-font-body); color: var(--lp-body);
  font-size: 19px; line-height: 1.6; margin: 0 0 32px; max-width: 560px;
}
.lp-hero__media img,
.lp-hero__media video {
  width: 100%; height: auto; display: block;
  border-radius: var(--lp-radius); border: 1px solid var(--lp-border);
}
.lp-hero__note { margin-top: 18px; color: var(--lp-muted); font-size: 13px; }

/* ── Hero: centered (image background + overlay) ───────────────────────── */
.lp-hero--centered {
  position: relative; text-align: center;
  min-height: 560px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.lp-hero--centered::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.55), rgba(7,7,7,.85));
}
.lp-hero--centered .lp-hero__inner { position: relative; max-width: 760px; padding: 0 20px; }
.lp-hero--centered .lp-hero__title { font-size: 56px; }

/* ── Trust / logo bar ──────────────────────────────────────────────────── */
.lp-trustbar { text-align: center; }
.lp-trustbar__label {
  font-family: var(--lp-font-head); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--lp-muted);
  margin-bottom: 28px;
}
.lp-trustbar__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 48px;
}
.lp-trustbar__logos img { height: 30px; width: auto; opacity: .55; filter: grayscale(1); transition: opacity .15s; }
.lp-trustbar__logos img:hover { opacity: 1; filter: none; }
.lp-trustbar__logos span { color: var(--lp-strong); font-family: var(--lp-font-head); font-weight: 600; font-size: 20px; opacity: .5; }

/* ── Feature grid (icon cards) ─────────────────────────────────────────── */
.lp-feature {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 30px;
  transition: border-color .15s, transform .15s;
}
.lp-feature:hover { border-color: var(--lp-accent); transform: translateY(-3px); }
.lp-feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--lp-accent-soft); color: var(--lp-accent);
  margin-bottom: 18px;
}
.lp-feature__icon .material-icons { font-size: 26px; }
.lp-feature__title { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 19px; margin: 0 0 10px; }
.lp-feature__desc  { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 15px; line-height: 1.6; margin: 0; }

/* ── Feature split (alternating text / image rows) ─────────────────────── */
.lp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: var(--lp-maxw); margin: 0 auto;
}
.lp-split + .lp-split { margin-top: 96px; }
.lp-split--reverse .lp-split__media { order: -1; }
.lp-split__media img { width: 100%; height: auto; border-radius: var(--lp-radius); border: 1px solid var(--lp-border); display: block; }
.lp-split__title { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 32px; line-height: 1.2; margin: 14px 0 16px; }
.lp-split__body  { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 16px; line-height: 1.7; margin: 0 0 20px; }

/* ── Benefit checklist ─────────────────────────────────────────────────── */
.lp-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lp-checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--lp-strong); font-family: var(--lp-font-body); font-size: 15px; line-height: 1.5; }
.lp-checks .material-icons { color: var(--lp-green); font-size: 20px; flex: none; margin-top: 1px; }

/* ── Stats band ────────────────────────────────────────────────────────── */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.lp-stat__num   { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-accent); font-size: 46px; line-height: 1; }
.lp-stat__label { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 14px; margin-top: 10px; }

/* ── Testimonial (single, large) ───────────────────────────────────────── */
.lp-testimonial {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.lp-testimonial__mark { font-family: var(--lp-font-head); font-size: 64px; line-height: .6; color: var(--lp-accent); }
.lp-testimonial__quote { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 28px; line-height: 1.4; margin: 16px 0 28px; }
.lp-testimonial__author { display: inline-flex; align-items: center; gap: 14px; }
.lp-testimonial__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.lp-testimonial__name { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 15px; text-align: left; }
.lp-testimonial__role { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 13px; text-align: left; }

/* ── Testimonial grid (cards) ──────────────────────────────────────────── */
.lp-quote-card { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 28px; }
.lp-quote-card__stars { color: var(--lp-amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.lp-quote-card__text  { font-family: var(--lp-font-body); color: var(--lp-strong); font-size: 15px; line-height: 1.65; margin: 0 0 22px; }
.lp-quote-card__author { display: flex; align-items: center; gap: 12px; }
.lp-quote-card__author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.lp-quote-card__name { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 14px; }
.lp-quote-card__role { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 12px; }

/* ── Pricing tiers ─────────────────────────────────────────────────────── */
.lp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.lp-tier {
  position: relative; background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 34px 28px; display: flex; flex-direction: column;
}
.lp-tier--popular { border-color: var(--lp-accent); background: var(--lp-surface-alt); }
.lp-tier__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--lp-accent); color: #fff; font-family: var(--lp-font-head);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.lp-tier__name  { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 18px; }
.lp-tier__price { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 46px; margin: 14px 0 4px; }
.lp-tier__price small { font-size: 15px; color: var(--lp-body); font-weight: 400; }
.lp-tier__desc  { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 14px; margin: 0 0 22px; }
.lp-tier__list  { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; flex: 1; }
.lp-tier__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--lp-strong); font-family: var(--lp-font-body); font-size: 14px; line-height: 1.45; }
.lp-tier__list .material-icons { color: var(--lp-accent); font-size: 18px; flex: none; margin-top: 1px; }

/* ── Comparison table ──────────────────────────────────────────────────── */
.lp-compare { width: 100%; border-collapse: collapse; font-family: var(--lp-font-body); }
.lp-compare th, .lp-compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--lp-border); }
.lp-compare thead th { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 15px; }
.lp-compare tbody th { text-align: left; color: var(--lp-strong); font-weight: 400; font-size: 14px; }
.lp-compare tbody td { color: var(--lp-body); font-size: 14px; }
.lp-compare__yes { color: var(--lp-green); }
.lp-compare__no  { color: var(--lp-muted); }
.lp-compare col.lp-compare__hl, .lp-compare th.lp-compare__hl { background: var(--lp-accent-soft); }

/* ── How it works / steps ──────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: lp-step; }
.lp-step { text-align: center; }
.lp-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lp-accent-soft); border: 1px solid var(--lp-accent);
  color: var(--lp-accent); font-family: var(--lp-font-head); font-weight: 600; font-size: 22px;
  margin-bottom: 18px;
}
.lp-step__title { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 18px; margin: 0 0 10px; }
.lp-step__desc  { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 15px; line-height: 1.6; margin: 0; }

/* ── FAQ accordion (native <details>) ──────────────────────────────────── */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--lp-border); }
.lp-faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 17px;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary .material-icons { color: var(--lp-accent); transition: transform .2s; }
.lp-faq__item[open] summary .material-icons { transform: rotate(45deg); }
.lp-faq__answer { color: var(--lp-body); font-family: var(--lp-font-body); font-size: 15px; line-height: 1.7; padding: 0 0 22px; margin: 0; }

/* ── Gallery strip (photography) ───────────────────────────────────────── */
.lp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lp-gallery__item { position: relative; overflow: hidden; border-radius: var(--lp-radius-sm); aspect-ratio: 3 / 4; }
.lp-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.lp-gallery__item:hover img { transform: scale(1.06); }
.lp-gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 14px;
  background: linear-gradient(0deg, rgba(7,7,7,.85), transparent);
  color: #fff; font-family: var(--lp-font-head); font-size: 13px; font-weight: 600;
}

/* ── Media / video feature ─────────────────────────────────────────────── */
.lp-media { max-width: 960px; margin: 0 auto; }
.lp-media__frame { position: relative; border-radius: var(--lp-radius); overflow: hidden; border: 1px solid var(--lp-border); aspect-ratio: 16 / 9; background: #000; }
.lp-media__frame img, .lp-media__frame video, .lp-media__frame iframe { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }
.lp-media__play {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lp-accent); border-radius: 50%; color: #fff; cursor: pointer;
  text-decoration: none !important;
}
.lp-media__play .material-icons { font-size: 38px; margin-left: 4px; }

/* ── Lead / newsletter signup ──────────────────────────────────────────── */
.lp-signup {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--lp-surface-alt); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 48px 36px;
}
.lp-signup__form { display: flex; gap: 12px; max-width: 480px; margin: 26px auto 0; }
.lp-input {
  flex: 1; padding: 14px 18px; border-radius: 999px;
  background: var(--lp-bg); border: 1px solid var(--lp-border);
  color: var(--lp-heading); font-family: var(--lp-font-body); font-size: 15px;
}
.lp-input::placeholder { color: var(--lp-muted); }
.lp-input:focus { outline: none; border-color: var(--lp-accent); }
.lp-signup__note { color: var(--lp-muted); font-size: 12px; margin-top: 14px; }

/* ── CTA band (full-width) ─────────────────────────────────────────────── */
.lp-cta {
  text-align: center; border-radius: var(--lp-radius);
  background: radial-gradient(120% 120% at 50% 0%, #1a1a1a 0%, #0c0c0c 70%);
  border: 1px solid var(--lp-border);
  padding: 64px 32px; max-width: var(--lp-maxw); margin: 0 auto;
}
.lp-cta--accent { background: linear-gradient(135deg, var(--lp-accent), #b32d59); border: none; }
.lp-cta--accent .lp-cta__title, .lp-cta--accent .lp-cta__sub { color: #fff; }
.lp-cta--accent .lp-btn--primary { background: #fff; color: var(--lp-accent); }
.lp-cta--accent .lp-btn--primary:hover { background: #fff; }
.lp-cta__title { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 38px; line-height: 1.15; margin: 0 0 14px; }
.lp-cta__sub   { font-family: var(--lp-font-body); color: var(--lp-body); font-size: 17px; line-height: 1.6; margin: 0 auto 30px; max-width: 540px; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .lp-grid--3, .lp-grid--4, .lp-pricing, .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-gallery { grid-template-columns: repeat(3, 1fr); }
  .lp-hero__split, .lp-split { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero__split--reverse .lp-hero__media,
  .lp-split--reverse .lp-split__media { order: 0; }
  .lp-hero__title { font-size: 40px; }
  .lp-title, .lp-hero--centered .lp-hero__title { font-size: 34px; }
}
@media (max-width: 600px) {
  :root { --lp-section-y: 56px; }
  .lp-grid--2, .lp-grid--3, .lp-grid--4,
  .lp-pricing, .lp-steps, .lp-stats { grid-template-columns: 1fr; }
  .lp-gallery { grid-template-columns: repeat(2, 1fr); }
  .lp-hero { padding: 56px 20px; }
  .lp-hero__title { font-size: 34px; }
  .lp-hero__lead { font-size: 17px; }
  .lp-signup__form { flex-direction: column; }
  .lp-trustbar__logos { gap: 28px; }
  .lp-cta__title { font-size: 28px; }
}

/* ════════════════════════════════════════════════════════════════════════
 * BLOCKS MINED FROM LIVE PAGES (about-boudoir-inspiration.php)
 * Editorial / brand-story blocks that already ship on the site, re-tokenized.
 * ════════════════════════════════════════════════════════════════════════ */

/* ── Pull quote (editorial brand statement — no author) ────────────────── */
.lp-pullquote { max-width: 820px; margin: 0 auto; text-align: center; }
.lp-pullquote__line { width: 48px; height: 2px; background: var(--lp-accent); margin: 0 auto; }
.lp-pullquote p {
  font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading);
  font-size: 28px; line-height: 1.45; margin: 28px auto;
}

/* ── Manifesto (long-form statement section) ───────────────────────────── */
.lp-manifesto { max-width: 760px; margin: 0 auto; }
.lp-manifesto__title { font-family: var(--lp-font-head); font-weight: 700; color: var(--lp-heading); font-size: 28px; margin: 0 0 28px; }
.lp-manifesto p { color: var(--lp-strong); font-family: var(--lp-font-body); font-size: 16px; line-height: 1.75; margin: 0 0 18px; }
.lp-manifesto p:last-child { margin-bottom: 0; }
.lp-manifesto p strong { color: var(--lp-heading); font-family: var(--lp-font-head); }

/* ── Beliefs / principles grid (numbered cards) ────────────────────────── */
.lp-beliefs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-belief { background: var(--lp-surface-alt); border: 1px solid var(--lp-border-soft); border-radius: var(--lp-radius-sm); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.lp-belief__num {
  background: var(--lp-accent); color: #fff; font-family: var(--lp-font-head);
  font-size: 13px; font-weight: 700; min-width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.lp-belief__text { color: var(--lp-strong); font-family: var(--lp-font-body); font-size: 14px; line-height: 1.6; margin: 0; padding-top: 4px; }

/* ── Dual CTA (two side-by-side choice cards) ──────────────────────────── */
.lp-dualcta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--lp-maxw); margin: 0 auto; }
.lp-dualcta__card { background: var(--lp-surface-alt); border: 1px solid var(--lp-border-soft); border-radius: 12px; padding: 40px 36px; display: flex; flex-direction: column; }
.lp-dualcta__label { display: block; color: var(--lp-accent); font-family: var(--lp-font-head); font-size: 11px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; }
.lp-dualcta__card h3 { font-family: var(--lp-font-head); font-weight: 700; color: var(--lp-heading); font-size: 22px; margin: 0 0 14px; }
.lp-dualcta__card p { color: var(--lp-body); font-family: var(--lp-font-body); font-size: 14px; line-height: 1.7; margin: 0 0 28px; flex: 1; }

/* Count-up stats: reuse .lp-stats / .lp-stat__num markup but give each number
   data-target + data-suffix and animate with the snippet in README.md. */

@media (max-width: 640px) {
  .lp-beliefs, .lp-dualcta { grid-template-columns: 1fr; }
  .lp-pullquote p, .lp-manifesto__title { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════════════════
 * MORE BLOCKS MINED (subscribe-box, get-published, show-category-v2, show-post-editorial)
 * ════════════════════════════════════════════════════════════════════════ */

/* ── Promo box (boxed split CTA: text + image) ─────────────────────────── */
.lp-promo { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--lp-surface-alt); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); overflow: hidden; max-width: var(--lp-maxw); margin: 0 auto; }
.lp-promo--reverse .lp-promo__media { order: -1; }
.lp-promo__text { padding: 56px; }
.lp-promo__text h2 { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 30px; line-height: 1.2; margin: 0 0 14px; }
.lp-promo__text p  { color: var(--lp-body); font-family: var(--lp-font-body); font-size: 16px; line-height: 1.6; margin: 0 0 26px; }
.lp-promo__media { align-self: stretch; min-height: 280px; }
.lp-promo__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Light variant — reproduces the site's legacy .white-box look. */
.lp-promo--light { background: #fff; }
.lp-promo--light h2 { color: #070707; }
.lp-promo--light p  { color: #959595; }

/* ── Hero bleed (full-bleed editorial hero, bottom-anchored content) ───── */
.lp-hero-bleed { position: relative; min-height: 80vh; display: flex; overflow: hidden; background: #000; }
.lp-hero-bleed__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.lp-hero-bleed__scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(1,1,1,.5) 50%, rgba(1,1,1,.85) 70%, rgb(1,1,1) 100%); }
.lp-hero-bleed__content { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center; width: 100%; max-width: 900px; margin: 0 auto; padding: 64px 24px; }
.lp-hero-bleed__title { font-family: var(--lp-font-head); font-weight: 600; color: #fff; font-size: 48px; line-height: 1.1; margin: 0 0 18px; }
.lp-hero-bleed__lead  { font-family: var(--lp-font-body); color: var(--lp-strong); font-size: 18px; line-height: 1.6; margin: 0 0 28px; max-width: 620px; }

/* ── Credits (team grid: avatar + name + role + IG) ────────────────────── */
.lp-credits { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; max-width: var(--lp-maxw); margin: 0 auto; }
.lp-credit { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); }
.lp-credit img { width: 54px; height: 54px; min-width: 54px; border-radius: 50%; object-fit: cover; }
.lp-credit__meta { min-width: 0; }
.lp-credit__name { font-family: var(--lp-font-head); font-weight: 600; color: var(--lp-heading); font-size: 14px; margin: 0 0 3px; }
.lp-credit__name a { color: inherit; text-decoration: none; }
.lp-credit__role { color: var(--lp-body); font-family: var(--lp-font-body); font-size: 12px; margin: 0; }
.lp-credit__ig { color: var(--lp-accent); font-size: 12px; text-decoration: none; }

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */
.lp-crumbs { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 24px; font-family: var(--lp-font-body); font-size: 13px; color: var(--lp-muted); }
.lp-crumbs li + li::before { content: '/'; margin: 0 .5rem; color: #555; }
.lp-crumbs a { color: var(--lp-strong); text-decoration: none; }
.lp-crumbs a:hover { color: var(--lp-heading); }
.lp-crumbs__current { color: var(--lp-accent); }

/* ── Category cards (icon link cards grid) ─────────────────────────────── */
.lp-catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; max-width: var(--lp-maxw); margin: 0 auto; }
.lp-cat { display: flex; align-items: center; gap: 12px; padding: 20px; background: var(--lp-surface-alt); border: 1px solid var(--lp-border-soft); border-radius: var(--lp-radius-sm); text-decoration: none; color: var(--lp-strong); transition: border-color .2s, color .2s; }
.lp-cat:hover { border-color: var(--lp-accent); color: var(--lp-heading); }
.lp-cat .material-icons { color: var(--lp-accent); }
.lp-cat__label { font-family: var(--lp-font-head); font-weight: 500; font-size: 15px; }

/* ── Discover grid (related content cards: image + badge + title) ──────── */
.lp-discover { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--lp-maxw); margin: 0 auto; }
.lp-discover__card { position: relative; aspect-ratio: 3 / 4; border-radius: var(--lp-radius-sm); overflow: hidden; display: block; text-decoration: none; }
.lp-discover__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .35s; }
.lp-discover__card:hover img { transform: scale(1.06); }
.lp-discover__card::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.1)); }
.lp-discover__body { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.lp-discover__badge { align-self: flex-start; font-family: var(--lp-font-head); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 4px 10px; margin-bottom: 10px; backdrop-filter: blur(4px); }
.lp-discover__title { font-family: var(--lp-font-head); font-weight: 700; color: #fff; font-size: 15px; margin: 0; }

@media (max-width: 992px) { .lp-discover { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .lp-promo { grid-template-columns: 1fr; }
  .lp-promo__media { order: -1; min-height: 200px; }
  .lp-promo__text { padding: 32px; }
  .lp-discover { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-bleed__title { font-size: 32px; }
}
