/*
Theme Name:   Lu Social Child
Theme URI:    https://lu-social.com
Description:  Child theme for Lu Social on astra. Generated by spidey-wp-theme v0.1.0 from domain/lu_social/DESIGN.md. Do not hand-edit — regenerate via `python3 skills/spidey-wp-theme/scripts/generate.py --brand lu_social`.
Author:       Voodoo (via Spidey)
Template:     astra
Version:      20260727-3
License:      MIT
Text Domain:  lu_social-child
*/

:root {
  --paper: #F1EBDD;
  --paper-2: #E7DECB;
  --ink: #1A1512;
  --ink-soft: #4A423B;
  --cinnabar: #C5402B;
  --cinnabar-deep: #9A2D1E;
  --jade: #4E7567;
  --jade-deep: #3A5A4E;
  --brass: #BE8F3C;
  --parchment: #F1EBDD;
  --ivory: #F1EBDD;
  --cream: #E7DECB;
  --mist: #E7DECB;
  --slate: #1A1512;
  --toast: #9A2D1E;
  --tan: #BE8F3C;
  --tide: #9A2D1E;
  --pine: #4E7567;
  --coral: #C5402B;
}

/* ---------------------------------------------------------------------------
   Brand-neutral baseline. Each rule's color resolves per-brand via the
   :root token chain — lu_social → --cinnabar / --slate / --tan;
   rootworth → --oxblood / --charcoal / --brass. NO typographic opinions
   here (line-height, text-decoration, letter-spacing, max-width) —
   those are brand-specific and live in the `body.brand-<slug>` block.
   --------------------------------------------------------------------------- */

body {
  background-color: var(--parchment, var(--bone, #FAF7F0));
  color: var(--slate, var(--charcoal, #2A3439));
}

a {
  color: var(--cinnabar, var(--oxblood, #5C2A2A));
}

a:hover,
a:focus {
  color: var(--toast, var(--forest, #2E4732));
}

::selection {
  background-color: var(--tan, var(--brass, #8A7E54));
  color: var(--slate, var(--bone, #2A3439));
}

/* ---------------------------------------------------------------------------
   Brand: lu_social — v1.1 palette pivot globals (2026-05-18)
   Wrapped under `body.brand-lu_social` so they only apply when the
   functions.php body_class filter has tagged this brand. Rootworth +
   any future brand stay untouched. (Scoped 2026-05-18 evening after
   observing that unscoped globals were silently changing rootworth's
   typography on every regenerate.)
   --------------------------------------------------------------------------- */

/* Color rules above are brand-neutral. Below are lu_social TYPOGRAPHIC
   opinions — line-heights, text-decoration, letter-spacing, max-width,
   heading-color contrast — scoped per body class so they don't bleed. */
body.brand-lu_social {
  line-height: 1.6;
}

body.brand-lu_social a {
  text-decoration: none;
}

body.brand-lu_social a:hover,
body.brand-lu_social a:focus {
  text-decoration: underline;
}

body.brand-lu_social h1,
body.brand-lu_social h2,
body.brand-lu_social h3,
body.brand-lu_social h4 {
  color: var(--ink, #1A1512);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .01em;
}

body.brand-lu_social h1 { margin-bottom: 0.5em; }
body.brand-lu_social h2 { margin-top: 1.6em; margin-bottom: 0.5em; }
body.brand-lu_social h3 { margin-top: 1.4em; color: var(--ink, #1A1512); }

body.brand-lu_social .entry-content p,
body.brand-lu_social .entry-content li {
  max-width: 68ch;
}

/* Custom logo sizing — constrain Astra's default native-size render so
   wordmark images don't dominate the header. Pair with Astra's
   display-site-title = 0 setting (set via Customizer or wp option
   patch update astra-settings display-site-title 0) so the brand
   wordmark image is the only header brand mark. */
.custom-logo-link img,
.site-logo-img img {
  max-width: 180px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .custom-logo-link img,
  .site-logo-img img {
    max-width: 140px;
  }
}

/* C1: Astra-child fallback — hide the site-title text when custom_logo is set.
   Astra's `display-site-title` theme_mod isn't always honored by child themes
   (observed 2026-05-17 with lu_social child v20260517-1: theme_mod=0 but
   .ast-site-title-wrap still rendered, causing a duplicate "lu·social" next to
   the wordmark image). CSS hide is the durable cross-brand fix. */
.ast-site-title-wrap {
  display: none !important;
}

/* C2: Astra-child fallback — hide WP post_title above .entry-content on pages.
   Astra renders an `.entry-header` with the post_title above content even when
   the per-page `site-post-title` meta is set to `disabled`. For brand sites where
   the page H1 lives inside the content body (lu_social home.md pattern), this
   produces a duplicate H1. CSS hide is the durable fix. (Single posts /
   archives keep their entry-header — only `.page` is affected.) */
.page .entry-header,
.page .ast-archive-description {
  display: none !important;
}

/* C3: Brand-CTA button class — content-level (`<a class="button-primary">`).
   Authored in markdown via the `attr_list` extension: `[text](url){.button-primary}`
   then rendered by spidey-wp-page-scaffold. NOT a Gutenberg block button; this
   styles author-written anchor CTAs.
   v1.1 (2026-05-18): primary token resolves to --cinnabar for lu_social,
   --oxblood for rootworth; hover deepens to --toast / --forest. */
a.button-primary,
.entry-content a.button-primary {
  display: inline-block;
  background-color: var(--cinnabar, var(--oxblood, #A04020));
  color: var(--parchment, var(--bone, #FAF7F0)) !important;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin: 8px 0;
}

a.button-primary:hover,
.entry-content a.button-primary:hover {
  background-color: var(--toast, var(--forest, #8B6F47));
  color: var(--parchment, var(--bone, #FAF7F0)) !important;
  text-decoration: none;
}

a.button-secondary,
.entry-content a.button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--cinnabar, var(--oxblood, #A04020)) !important;
  border: 1.5px solid var(--cinnabar, var(--oxblood, #A04020));
  padding: 14px 30px;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 8px 0;
}

a.button-secondary:hover,
.entry-content a.button-secondary:hover {
  background-color: var(--cinnabar, var(--oxblood, #A04020));
  color: var(--parchment, var(--bone, #FAF7F0)) !important;
  text-decoration: none;
}

/* ---------------------------------------------------------------------------
   v1.1 palette pivot additions (2026-05-18)
   New class system for sectional depth without rewriting Markdown source
   as Gutenberg blocks. Authored as inline `<div class="panel-X">` wrappers
   in domain/<brand>/content/pages/*.md.
   --------------------------------------------------------------------------- */

/* Section rhythm — ravenhealth-inspired generous vertical breathing. */
.entry-content > .panel-cream,
.entry-content > .panel-tan,
.entry-content > .panel-toast,
.entry-content > .panel-parchment {
  padding: 64px 32px;
  margin: 48px 0;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .entry-content > .panel-cream,
  .entry-content > .panel-tan,
  .entry-content > .panel-toast,
  .entry-content > .panel-parchment {
    padding: 96px 64px;
  }
}

.panel-cream {
  background-color: var(--cream, #E4D5B7);
  color: var(--slate, var(--charcoal, #2A3439));
}

.panel-tan {
  background-color: var(--tan, var(--brass, #C9A878));
  color: var(--slate, var(--charcoal, #2A3439));
}

.panel-toast {
  background-color: var(--toast, var(--forest, #8B6F47));
  color: var(--parchment, var(--bone, #FAF7F0));
}

.panel-toast h1,
.panel-toast h2,
.panel-toast h3,
.panel-toast a {
  color: var(--parchment, var(--bone, #FAF7F0));
}

.panel-parchment {
  background-color: var(--parchment, var(--bone, #FAF7F0));
}

/* Trust-signal underline — sole remaining use of tide in v1.1 palette. */
.trust-tide {
  border-bottom: 2px solid var(--tide, var(--brass, #1E5A6B));
  padding-bottom: 1px;
}

/* Chop seal — hero + signoff treatments. */
.chop-hero {
  text-align: center;
  margin: 24px 0 32px 0;
}

.chop-hero-img {
  display: inline-block;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(160, 64, 32, 0.18));
}

.chop-signoff {
  text-align: center;
  margin: 64px 0 32px 0;
  opacity: 0.85;
}

.chop-signoff-img {
  display: inline-block;
  max-width: 120px;
  height: auto;
}

/* Hero block — chop-anchored landing hero. */
.hero-chop {
  text-align: center;
  padding: 80px 32px 64px 32px;
  background-color: var(--parchment, var(--bone, #FAF7F0));
  border-bottom: 1px solid rgba(139, 111, 71, 0.15);
}

.hero-chop h1 {
  font-size: 2.5rem;
  max-width: 720px;
  margin: 0 auto 0.5em auto;
}

@media (min-width: 768px) {
  .hero-chop h1 {
    font-size: 3.25rem;
  }
}

.hero-chop p {
  max-width: 600px;
  margin: 0 auto 24px auto;
}

/* Luani photo (about page) — warm framing, soft round corners. */
.luani-photo {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 32px auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.22);
}

.luani-photo + em,
.luani-caption {
  display: block;
  text-align: center;
  font-style: italic;
  color: var(--slate, var(--charcoal, #2A3439));
  opacity: 0.75;
  margin-top: -16px;
  margin-bottom: 32px;
}

/* ---------------------------------------------------------------------------
   v1.2 additions (2026-05-18 evening) — Founder card price anchor + nav polish
   --------------------------------------------------------------------------- */

/* Founder Tier panel — heading centered + sized for visual presence. */
.panel-tan h2,
.panel-cream h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5em;
}

@media (min-width: 768px) {
  .panel-tan h2,
  .panel-cream h2 {
    font-size: 2.5rem;
  }
}

/* Price anchor — large Fraunces price as the visual centerpiece of the
   Founder card. Authored as `<p class="price-anchor">$200<small>/month</small></p>`. */
.price-anchor {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 4rem;
  color: var(--cinnabar, var(--oxblood, #A04020));
  text-align: center;
  margin: 8px 0 4px 0;
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 768px) {
  .price-anchor {
    font-size: 5.5rem;
  }
}

.price-anchor small {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--slate, var(--charcoal, #2A3439));
  margin-left: 6px;
  letter-spacing: 0;
}

.price-anchor-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--slate, var(--charcoal, #2A3439));
  opacity: 0.85;
  margin: 0 0 40px 0;
}

/* Tighter mobile panel spacing — desktop keeps generous breathing room. */
@media (max-width: 767px) {
  .entry-content > .panel-cream,
  .entry-content > .panel-tan,
  .entry-content > .panel-toast,
  .entry-content > .panel-parchment {
    padding: 48px 24px;
    margin: 32px 0;
  }
}

/* Astra header nav polish — lu_social only.
   Targets shared Astra selectors so MUST be scoped under body.brand-lu_social
   to avoid bleeding into other brands' nav styling. */
body.brand-lu_social .main-header-menu .menu-item > a,
body.brand-lu_social .main-navigation .menu-item > a,
body.brand-lu_social .ast-primary-menu .menu-item > a,
body.brand-lu_social .ast-header-navigation .menu-item > a {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink, #1A1512) !important;
  padding: 8px 16px;
  transition: color 0.18s ease, border-color 0.18s ease;
  border-bottom: 2px solid transparent;
}

body.brand-lu_social .main-header-menu .menu-item > a:hover,
body.brand-lu_social .main-navigation .menu-item > a:hover,
body.brand-lu_social .ast-primary-menu .menu-item > a:hover,
body.brand-lu_social .ast-header-navigation .menu-item > a:hover {
  color: var(--cinnabar, #A04020) !important;
  border-bottom-color: var(--cinnabar, #A04020);
}

body.brand-lu_social .main-header-menu .current-menu-item > a,
body.brand-lu_social .main-navigation .current-menu-item > a,
body.brand-lu_social .ast-primary-menu .current-menu-item > a,
body.brand-lu_social .ast-header-navigation .current-menu-item > a {
  color: var(--cinnabar, #A04020) !important;
  font-weight: 600;
  border-bottom-color: var(--cinnabar, #A04020);
}

body.brand-lu_social .main-header-menu .menu-item a.button-primary,
body.brand-lu_social .ast-primary-menu .menu-item a.button-primary,
body.brand-lu_social .ast-header-navigation .menu-item a.button-primary {
  padding: 8px 20px !important;
  font-size: 0.95rem;
  border-radius: 8px;
  border-bottom: none;
  margin: 0 0 0 8px;
}

body.brand-lu_social .main-header-menu .menu-item a.button-primary:hover,
body.brand-lu_social .ast-primary-menu .menu-item a.button-primary:hover,
body.brand-lu_social .ast-header-navigation .menu-item a.button-primary:hover {
  border-bottom: none;
}

/* =========================================================
   Improvement cycle #1 — 2026-05-18 — ravenhealth.com pivot
   Per agents/graf/reviews/lu_social-vs-ravenhealth-2026-05-18.md
   All selectors namespaced to body.brand-lu_social.
   ========================================================= */

/* #1 Hero vertical rhythm — chop seal / H1 / CTA breathing room */
body.brand-lu_social .entry-header {
  padding-top: 48px;
  padding-bottom: 32px;
}
body.brand-lu_social .entry-header .chop-hero,
body.brand-lu_social .entry-header .chop-seal {
  margin-bottom: 32px;
}
body.brand-lu_social .entry-header h1 {
  margin-top: 24px;
  margin-bottom: 24px;
}
body.brand-lu_social .entry-header .wp-block-buttons {
  gap: 16px;
}
body.brand-lu_social .entry-header .wp-block-button__link {
  padding: 16px 32px;
}

/* #2 Hero H1 size — clamp 2.5 → 4rem responsive */
body.brand-lu_social .entry-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  font-variation-settings: "opsz" 144, "soft" 0, "wonk" 0;
}
body.brand-lu_social .entry-header .subtagline,
body.brand-lu_social .entry-header .entry-summary {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 24px;
  font-weight: 400;
}

/* #3 CTA hierarchy — solid cinnabar primary variant */
body.brand-lu_social .entry-header .wp-block-button.is-style-primary .wp-block-button__link,
body.brand-lu_social .entry-header .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link {
  background-color: var(--cinnabar, #A04020);
  color: var(--parchment, #FAF7F0);
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 600;
}
body.brand-lu_social .entry-header .wp-block-button.is-style-primary .wp-block-button__link:hover,
body.brand-lu_social .entry-header .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:hover {
  background-color: var(--toast, #8B6F47);
  color: var(--parchment, #FAF7F0);
}
body.brand-lu_social .entry-header .wp-block-button.is-style-secondary .wp-block-button__link,
body.brand-lu_social .entry-header .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid var(--cinnabar, #A04020);
  color: var(--cinnabar, #A04020);
  border-radius: 12px;
}

/* #4 Trust-tide already exists at line 227 — ensure 4px padding-offset per brief */
body.brand-lu_social .trust-tide {
  padding-bottom: 4px;
}

/* #5 Nav spacing — gap, padding, mobile stack, CTA emphasis */
body.brand-lu_social .main-navigation ul,
body.brand-lu_social .ast-primary-menu,
body.brand-lu_social .main-header-menu {
  gap: 24px;
  align-items: center;
}
body.brand-lu_social .main-navigation .menu-item > a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  body.brand-lu_social .main-navigation ul,
  body.brand-lu_social .ast-primary-menu,
  body.brand-lu_social .main-header-menu {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  body.brand-lu_social .main-navigation .menu-item:last-child a,
  body.brand-lu_social .ast-primary-menu .menu-item:last-child a {
    color: var(--cinnabar, #A04020);
    font-weight: 600;
    border-bottom: 2px solid var(--tide, #1E5A6B);
  }
}

/* =========================================================
   v1.3 — Component layer (2026-06-21)
   Executes the layout system described in DESIGN.md §Layout patterns
   that was never built in v1.0/v1.1/v1.2. All selectors scoped to
   body.brand-lu_social to prevent cross-brand bleed.
   Components: .feature-grid / .card / .split / .section-eyebrow /
   .pull-quote / .step-list / .screenshot-product
   ========================================================= */

/* --- Section eyebrow — small cinnabar label above H2 headings --- */
body.brand-lu_social .section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinnabar-deep, #9A2D1E);
  margin: 0 0 0.5em 0;
  display: block;
}

/* --- Feature grid — 3-col desktop / 2-col tablet / 1-col mobile --- */
body.brand-lu_social .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 48px 0;
}

@media (max-width: 1024px) {
  body.brand-lu_social .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body.brand-lu_social .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Card surface — parchment background, sits on any panel color --- */
body.brand-lu_social .card {
  background: var(--parchment, #FAF7F0);
  border: 1px solid rgba(42, 52, 57, 0.08);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.10);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

body.brand-lu_social .card:hover {
  box-shadow: 0 6px 24px rgba(139, 111, 71, 0.18);
  transform: translateY(-2px);
}

body.brand-lu_social .card h3,
body.brand-lu_social .card h4 {
  margin-top: 0;
  color: var(--cinnabar, #A04020);
  font-size: 1.1rem;
}

body.brand-lu_social .card p,
body.brand-lu_social .card ul {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.brand-lu_social .card ul {
  padding-left: 1.25em;
}

/* Card inside a tan/toast panel — parchment still works; add slight border
   to read against the deeper background. */
body.brand-lu_social .panel-tan .card,
body.brand-lu_social .panel-toast .card {
  border-color: rgba(42, 52, 57, 0.14);
  box-shadow: 0 2px 10px rgba(42, 52, 57, 0.12);
}

/* --- Split — 2-column text+visual section --- */
body.brand-lu_social .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}

body.brand-lu_social .split.split-wide-text {
  grid-template-columns: 3fr 2fr;
}

body.brand-lu_social .split.split-wide-visual {
  grid-template-columns: 2fr 3fr;
}

@media (max-width: 768px) {
  body.brand-lu_social .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.brand-lu_social .split.split-wide-text,
  body.brand-lu_social .split.split-wide-visual {
    grid-template-columns: 1fr;
  }
}

body.brand-lu_social .split-visual img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(42, 52, 57, 0.10);
  box-shadow: 0 4px 20px rgba(42, 52, 57, 0.12);
  display: block;
}

/* --- Pull quote — Fraunces italic, cinnabar left-border --- */
body.brand-lu_social .pull-quote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--slate, #2A3439);
  max-width: 680px;
  margin: 48px auto;
  padding: 0 0 0 32px;
  border-left: 4px solid var(--cinnabar, #A04020);
}

@media (max-width: 640px) {
  body.brand-lu_social .pull-quote {
    font-size: 1.125rem;
    padding-left: 20px;
    margin: 32px 0;
  }
}

body.brand-lu_social .pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cinnabar-deep, #9A2D1E);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Step list — numbered process cards with Fraunces numerals --- */
body.brand-lu_social .step-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.brand-lu_social .step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  background: var(--parchment, #FAF7F0);
  border: 1px solid rgba(42, 52, 57, 0.08);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 1px 4px rgba(139, 111, 71, 0.07);
}

@media (max-width: 640px) {
  body.brand-lu_social .step-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
}

body.brand-lu_social .step-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--cinnabar, #A04020);
  line-height: 1;
  opacity: 0.4;
  padding-top: 2px;
}

body.brand-lu_social .step-content {
  font-size: 1rem;
  line-height: 1.6;
}

body.brand-lu_social .step-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--slate, #2A3439);
}

body.brand-lu_social .step-content p {
  margin: 4px 0 0 0;
  color: var(--slate, #2A3439);
  opacity: 0.85;
}

body.brand-lu_social .step-content ul {
  margin: 8px 0 0 0;
  padding-left: 1.25em;
}

/* --- Screenshot product frame --- */
body.brand-lu_social .screenshot-product {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 24px auto;
  border-radius: 8px;
  border: 1px solid rgba(42, 52, 57, 0.12);
  box-shadow: 0 4px 24px rgba(42, 52, 57, 0.14);
}

body.brand-lu_social .screenshot-caption {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--slate, #2A3439);
  opacity: 0.72;
  margin-top: -12px;
  margin-bottom: 32px;
}

/* --- Comparison table — clean lines within a panel --- */
body.brand-lu_social .entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 24px 0 40px 0;
}

body.brand-lu_social .entry-content th {
  text-align: left;
  padding: 12px 16px;
  background: var(--cream, #E4D5B7);
  color: var(--slate, #2A3439);
  font-weight: 600;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  border-bottom: 2px solid rgba(26, 21, 18, 0.10);
}

body.brand-lu_social .entry-content td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(42, 52, 57, 0.07);
  vertical-align: top;
}

body.brand-lu_social .entry-content tr:last-child td {
  border-bottom: none;
}

body.brand-lu_social .entry-content td strong {
  color: var(--cinnabar, #A04020);
}

/* --- CTA band — dark toast footer-level call to action --- */
body.brand-lu_social .cta-band {
  background: var(--toast, #8B6F47);
  color: var(--parchment, #FAF7F0);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}

body.brand-lu_social .cta-band h2,
body.brand-lu_social .cta-band h3 {
  color: var(--parchment, #FAF7F0);
  margin-top: 0;
}

body.brand-lu_social .cta-band p {
  max-width: 560px;
  margin: 0 auto 24px auto;
  opacity: 0.92;
}

/* --- Panel-parchment explicit reset (useful after cream/tan panels) --- */
body.brand-lu_social .panel-parchment {
  background: var(--parchment, #FAF7F0);
}

/* Ensure feature-grid inside panels renders cards cleanly against the
   panel background (cream panel → parchment cards read well; tan panel
   → parchment cards need a touch more shadow) */
body.brand-lu_social .panel-cream .feature-grid .card {
  box-shadow: 0 2px 12px rgba(139, 111, 71, 0.13);
}

body.brand-lu_social .panel-tan .feature-grid .card {
  box-shadow: 0 2px 12px rgba(42, 52, 57, 0.13);
}

/* =========================================================
   v2.0 design-canon overrides — 2026-07-27 audit sweep
   Brings interior pages onto the shipped homepage system
   (Big Shoulders Display / Hanken Grotesk / Space Mono,
   ink headings, letterpress buttons, hard shadows).
   All selectors scoped to body.brand-lu_social — shared and
   rootworth rules above are untouched.
   ========================================================= */

body.brand-lu_social {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
}

body.brand-lu_social ::selection {
  background-color: var(--brass, #BE8F3C);
  color: var(--ink, #1A1512);
}

/* Links in running text must not rely on color alone (axe
   link-in-text-block). Nav + buttons keep their own treatments. */
body.brand-lu_social .entry-content a:not(.button-primary):not(.button-secondary) {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Letterpress CTA geometry (homepage idiom). White text: paper on
   cinnabar fails WCAG AA at body sizes (4.27 < 4.5). */
body.brand-lu_social a.button-primary,
body.brand-lu_social .entry-content a.button-primary {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  border-radius: 2px;
  color: #FFFFFF !important;
  box-shadow: 3px 3px 0 var(--cinnabar-deep, #9A2D1E);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease;
}

body.brand-lu_social a.button-primary:hover,
body.brand-lu_social .entry-content a.button-primary:hover {
  background-color: var(--cinnabar-deep, #9A2D1E);
  color: #FFFFFF !important;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--cinnabar-deep, #9A2D1E);
}

body.brand-lu_social a.button-secondary,
body.brand-lu_social .entry-content a.button-secondary {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  border-radius: 2px;
  border: 2px solid var(--ink, #1A1512);
  color: var(--ink, #1A1512) !important;
}

body.brand-lu_social a.button-secondary:hover,
body.brand-lu_social .entry-content a.button-secondary:hover {
  background-color: var(--ink, #1A1512);
  color: var(--paper, #F1EBDD) !important;
}

/* Price anchor — Big Shoulders 900 ink (was Fraunces cinnabar). */
body.brand-lu_social .price-anchor {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  color: var(--ink, #1A1512);
}

body.brand-lu_social .price-anchor small {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink-soft, #4A423B);
}

/* Founder-card panel: v1.1's tan wash becomes the homepage's
   highlighted-card idiom — paper-2 with a cinnabar frame. */
body.brand-lu_social .panel-tan {
  background-color: var(--paper-2, #E7DECB);
  border: 2px solid var(--cinnabar, #C5402B);
  color: var(--ink, #1A1512);
}

/* Hard-edge card geometry (letterpress motif, radius 12 → 2). */
body.brand-lu_social .step-item,
body.brand-lu_social .entry-content > .panel-cream,
body.brand-lu_social .entry-content > .panel-tan,
body.brand-lu_social .entry-content > .panel-toast,
body.brand-lu_social .entry-content > .panel-parchment {
  border-radius: 2px;
}

/* Trust underline: tide is retired; cinnabar-deep carries the accent. */
body.brand-lu_social .trust-tide {
  border-bottom-color: var(--cinnabar-deep, #9A2D1E);
}

/* Sidebar/footer widget links render as bare .menu-link anchors (no
   underline) inside running text context — axe link-in-text-block.
   Header nav keeps its own border-bottom treatment. */
body.brand-lu_social .widget-area a,
body.brand-lu_social .sidebar-main a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Astra footer credit ("Powered by Astra…") renders a bare cinnabar link
   inside slate text — axe link-in-text-block. Underline it. */
body.brand-lu_social .ast-footer-copyright a,
body.brand-lu_social .ast-small-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
