/* =====================================================================
   WISER MAGAZINE — Sobre (Design System) — FINAL
   Shared CSS. Everything scoped under .wiser-about so nothing leaks
   into the Newspaper theme. Mobile-first, fluid clamp() type.

   Ship note: render both partials inside a Gutenberg "Custom HTML"
   block (or a theme partial) so wpautop does not inject <p>/<br>.
   ===================================================================== */

/* ---------- Fonts (explicit load, swap, with fallbacks) ---------- */
.wiser-about {
  /* Palette */
  --wa-ink:   #0E0F12;
  --wa-navy:  #112A46;
  --wa-navy-deep: #0D2138;
  --wa-gold:  #C9A961;
  --wa-cream: #F4F1E9;
  --wa-muted: #B4AEA4;          /* reserved for true metadata only */
  --wa-body:  #D8D3C8;          /* primary reading copy on dark — AA-safe */
  --wa-line:  rgba(201, 169, 97, .26);
  --wa-line-soft: rgba(201, 169, 97, .14);
  --wa-gold-soft: rgba(201, 169, 97, .12);

  /* Cream contrast section tokens */
  --wa-cream-bg: #F4F1E9;
  --wa-cream-ink: #1A1814;
  --wa-cream-body: #443E33;     /* AA-safe body on cream */
  --wa-cream-muted: #6E6657;
  --wa-cream-line: rgba(17, 42, 70, .18);

  /* Type */
  --wa-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --wa-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wa-section-y: clamp(4.5rem, 11vw, 10rem);
  --wa-gutter:    clamp(1.25rem, 5vw, 3.5rem);
  --wa-maxw: 1200px;
  --wa-measure: 64ch;

  /* Scrollbar-safe full-bleed width (classic scrollbars on desktop) */
  --wa-sbw: calc(100vw - 100%);

  /* Motion */
  --wa-ease: cubic-bezier(.22, .61, .36, 1);
  --wa-reveal-dur: 520ms;

  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;       /* fallback */
  overflow-x: clip;         /* preferred: no scroll container, contains bleed */
  margin: 0;
  padding: 0;
  background: var(--wa-ink);
  color: var(--wa-cream);
  font-family: var(--wa-sans);
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .35vw, 1.125rem);
  line-height: 1.75;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wiser-about *,
.wiser-about *::before,
.wiser-about *::after { box-sizing: border-box; }

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

/* ---------- Layout primitives ---------- */
.wiser-about .wa-wrap {
  width: 100%;
  max-width: var(--wa-maxw);
  margin-inline: auto;
  padding-inline: var(--wa-gutter);
}

.wiser-about .wa-section { padding-block: var(--wa-section-y); }

/* Asymmetric spacing modifiers — let spacing encode emphasis */
.wiser-about .wa-section--tight  { padding-block: clamp(3rem, 7vw, 6rem); }
.wiser-about .wa-section--air    { padding-block: clamp(6rem, 14vw, 13rem); }
.wiser-about .wa-section--pulltop { padding-top: 0; }

.wiser-about .wa-bleed {
  position: relative;
  /* Scrollbar-safe bleed: width never exceeds the visible content box. */
  width: calc(100vw - var(--wa-sbw));
  margin-left: calc(50% - 50vw + (var(--wa-sbw) / 2));
  margin-right: calc(50% - 50vw + (var(--wa-sbw) / 2));
}

.wiser-about .wa-narrow { max-width: 56ch; }

/* ---------- Spacing utilities (replace ad-hoc inline margins) ---------- */
.wiser-about .wa-mt-1 { margin-top: 1.5rem; }
.wiser-about .wa-mt-2 { margin-top: clamp(2.5rem, 6vw, 4rem); }
.wiser-about .wa-mb-1 { margin-bottom: 1rem; }
.wiser-about .wa-mb-2 { margin-bottom: 1.75rem; }

/* ---------- Typography ---------- */
.wiser-about .wa-eyebrow {
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: clamp(.7rem, .66rem + .2vw, .8rem);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wa-gold);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}
.wiser-about .wa-eyebrow::before {
  content: "";
  width: clamp(1.5rem, 4vw, 2.75rem);
  height: 1px;
  background: var(--wa-gold);
  opacity: .85;
}

.wiser-about h1,
.wiser-about h2,
.wiser-about h3 {
  font-family: var(--wa-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.014em;
  color: var(--wa-cream);
  margin: 0;
  text-wrap: balance;
}

/* One display scale → ratios 1 : .62 : .42 */
.wiser-about .wa-display {
  font-weight: 400;
  font-size: clamp(2.6rem, 1.5rem + 6vw, 5.5rem);   /* 1.00 */
  line-height: 1.0;
  letter-spacing: -.022em;
}

.wiser-about .wa-h2 {
  font-weight: 400;
  font-size: clamp(1.8rem, 1.25rem + 2.6vw, 3.1rem); /* ~0.62 */
  line-height: 1.08;
  letter-spacing: -.016em;
}

.wiser-about .wa-h3 {
  font-size: clamp(1.2rem, 1.02rem + .95vw, 1.55rem); /* ~0.42 */
  line-height: 1.18;
  font-weight: 600;            /* heft kept ONLY for small labels */
  letter-spacing: -.006em;
}

/* Serif sub-heading modifier (replaces inline font-family override) */
.wiser-about .wa-h3--serif { font-family: var(--wa-serif); font-weight: 500; }

.wiser-about .wa-lead {
  font-family: var(--wa-sans);
  font-weight: 300;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.45rem);
  line-height: 1.62;
  color: var(--wa-cream);
  max-width: var(--wa-measure);
}

.wiser-about p { margin: 0 0 1.15em; max-width: var(--wa-measure); color: var(--wa-body); }
.wiser-about p:last-child { margin-bottom: 0; }
.wiser-about .wa-lead { color: var(--wa-cream); }
.wiser-about .wa-muted { color: var(--wa-muted); }

.wiser-about .wa-section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

/* ---------- Scroll reveal (gated behind .js so no-JS = visible) -------- */
.wiser-about.js .wa-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--wa-reveal-dur) var(--wa-ease),
    transform var(--wa-reveal-dur) var(--wa-ease);
  transition-delay: var(--d, 0ms);
}
.wiser-about.js .wa-reveal.is-animating { will-change: opacity, transform; }
.wiser-about.js .wa-reveal.is-visible { opacity: 1; transform: none; }

/* Hero headline rises further / slower — a distinct hero beat */
.wiser-about.js .wa-reveal--hero { transform: translateY(34px); transition-duration: 760ms; }
/* Supporting text simply fades, no translate */
.wiser-about.js .wa-reveal--fade { transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.wiser-about .wa-hero {
  position: relative;
  padding-block: clamp(5rem, 13vw, 11rem) clamp(4.5rem, 10vw, 9rem);
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(17, 42, 70, .55) 0%, rgba(17, 42, 70, 0) 55%),
    radial-gradient(90% 70% at -5% 0%, rgba(201, 169, 97, .10) 0%, rgba(201, 169, 97, 0) 50%),
    var(--wa-ink);
  overflow: hidden;
}
.wiser-about .wa-hero::after {
  content: "";
  position: absolute;
  left: var(--wa-gutter);
  right: var(--wa-gutter);
  bottom: 0;
  height: 1px;
  background: var(--wa-line);
}

.wiser-about .wa-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.wiser-about .wa-hero-title {
  font-weight: 400;
  font-size: clamp(2.6rem, 1.5rem + 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -.024em;
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
}
.wiser-about .wa-hero-title em {
  font-style: italic;
  color: var(--wa-gold);          /* kept on ONE hero only (Revista) */
}

.wiser-about .wa-hero-intro { max-width: 52ch; }

/* Parallax wrapper — bottom breathing room so translate never overlaps */
.wiser-about .wa-parallax { margin-bottom: 2px; }
.wiser-about.js .wa-parallax--active { will-change: transform; }

/* ============================================================
   REVISTA — hero figure layout
   ============================================================ */
.wiser-about.wa-revista .wa-hero-grid { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .wiser-about.wa-revista .wa-hero-grid { grid-template-columns: 1.15fr .85fr; }
}

/* ============================================================
   MYLLENA — hero figure layout
   ============================================================ */
@media (min-width: 900px) {
  .wiser-about.wa-myllena .wa-hero-grid { grid-template-columns: 1fr .82fr; }
}

.wiser-about .wa-hero-figure { position: relative; }
.wiser-about .wa-hero-figure .wa-portrait {
  width: 100%;
  aspect-ratio: 1086 / 1448;
  object-fit: cover;
  border: 1px solid var(--wa-line);
  background: #15171c;
}
/* Single thin hairline accent (replaces dated offset double-frame) */
.wiser-about .wa-hero-figure::after {
  content: "";
  position: absolute;
  left: 14px;
  right: -1px;
  bottom: -14px;
  height: 1px;
  background: var(--wa-line);
  z-index: -1;
}
.wiser-about .wa-role {
  font-family: var(--wa-sans);
  font-weight: 400;
  font-size: clamp(1rem, .94rem + .35vw, 1.2rem);
  color: var(--wa-gold);
  letter-spacing: .01em;
  margin: 0 0 1.5rem;
  max-width: 40ch;
}

/* ============================================================
   IMAGE BLOCKS — calm solid tonal panels (no dashes/hatch/TODO)
   ============================================================ */
.wiser-about .wa-ph {
  position: relative;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border: 1px solid var(--wa-line-soft);
  background:
    linear-gradient(155deg, rgba(17,42,70,.42) 0%, rgba(17,42,70,0) 60%),
    linear-gradient(180deg, #181B21 0%, #121419 100%);
  aspect-ratio: 4 / 3;
  width: 100%;
  color: var(--wa-muted);
  overflow: hidden;
}
.wiser-about .wa-ph.wa-ph-portrait { aspect-ratio: 1086 / 1448; }
.wiser-about .wa-ph.wa-ph-wide { aspect-ratio: 16 / 10; }
.wiser-about .wa-ph.wa-ph-tall { aspect-ratio: 3 / 4; }
.wiser-about .wa-ph img { width: 100%; height: 100%; object-fit: cover; }
.wiser-about .wa-ph-label {
  position: relative;
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wa-gold);
  padding: 1.1rem 1.25rem;
  line-height: 1.5;
  opacity: .82;
}
.wiser-about .wa-ph-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--wa-gold);
  margin-bottom: .7rem;
  opacity: .7;
}

/* ============================================================
   "O QUE É" + contrast block (Revista)
   ============================================================ */
.wiser-about .wa-twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 4rem);
}
@media (min-width: 860px) {
  .wiser-about .wa-twocol { grid-template-columns: 1.05fr .95fr; align-items: start; }
}

/* ============================================================
   IS / IS-NOT — single shared editorial pattern (both pages)
   Two stacked lists; no toggle, no app-UI.
   ============================================================ */
.wiser-about .wa-isnot {
  border-top: 1px solid var(--wa-line);
  padding-top: clamp(1.4rem, 3vw, 2rem);
}
.wiser-about .wa-isnot h3 { margin-bottom: 1.4rem; }
.wiser-about .wa-isnot ul { list-style: none; margin: 0; padding: 0; }
.wiser-about .wa-isnot li {
  position: relative;
  padding: .7rem 0 .7rem 1.9rem;
  border-bottom: 1px solid var(--wa-line-soft);
  color: var(--wa-body);
  font-size: .98rem;
  line-height: 1.5;
}
.wiser-about .wa-isnot li:last-child { border-bottom: 0; }
.wiser-about .wa-isnot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 16px;
  height: 1px;
  background: var(--wa-muted);
  transform: rotate(-10deg);
  transform-origin: left center;
}

/* The "é / não é" editorial pair (Myllena) — calm two-column */
.wiser-about .wa-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}
@media (min-width: 800px) { .wiser-about .wa-pair { grid-template-columns: 1fr 1fr; } }
.wiser-about .wa-pair-col h3 { margin-bottom: 1.4rem; }
.wiser-about .wa-pair-col ul { list-style: none; margin: 0; padding: 0; }
.wiser-about .wa-pair-col li {
  position: relative;
  padding: .85rem 0 .85rem 2rem;
  border-bottom: 1px solid var(--wa-line-soft);
  font-family: var(--wa-serif);
  font-weight: 500;
  font-size: clamp(1.05rem, .95rem + .45vw, 1.25rem);
  line-height: 1.3;
  color: var(--wa-cream);
}
.wiser-about .wa-pair-col li:last-child { border-bottom: 0; }
.wiser-about .wa-pair-col--is li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 13px;
  height: 13px;
  background:
    linear-gradient(var(--wa-gold), var(--wa-gold)) center / 13px 1.5px no-repeat,
    linear-gradient(var(--wa-gold), var(--wa-gold)) center / 1.5px 13px no-repeat;
}
.wiser-about .wa-pair-col--isnot li { color: var(--wa-muted); font-weight: 400; }
.wiser-about .wa-pair-col--isnot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 15px;
  height: 1.5px;
  background: var(--wa-muted);
  transform: rotate(-8deg);
  transform-origin: left center;
}

/* ============================================================
   TIMELINE — Nossa história (Revista) — scroll-linked draw
   ============================================================ */
.wiser-about .wa-timeline {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-left: clamp(1.75rem, 5vw, 2.75rem);
}
.wiser-about .wa-timeline-track {
  position: absolute;
  left: clamp(.35rem, 1.5vw, .65rem);
  top: .35rem;
  bottom: .35rem;
  width: 1px;
  background: var(--wa-line-soft);
}
.wiser-about .wa-timeline-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wa-gold);
  transform-origin: top center;
  transform: scaleY(var(--wa-tl-progress, 0));
  transition: transform 120ms linear;
}

.wiser-about .wa-tl-item {
  position: relative;
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}
.wiser-about .wa-tl-item:last-child { padding-bottom: 0; }

.wiser-about .wa-tl-node {
  position: absolute;
  left: calc(clamp(.35rem, 1.5vw, .65rem) - clamp(1.75rem, 5vw, 2.75rem));
  top: .55rem;
  width: 13px;
  height: 13px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--wa-ink);
  border: 1px solid var(--wa-gold);
  transform: scale(.4);
  opacity: 0;
  transition: transform 520ms var(--wa-ease), opacity 520ms var(--wa-ease);
}
.wiser-about .wa-tl-node::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--wa-gold);
}
.wiser-about .wa-tl-item.is-visible .wa-tl-node { transform: scale(1); opacity: 1; }

.wiser-about .wa-tl-year {
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wa-gold);
  margin: 0 0 .55rem;
}
.wiser-about .wa-tl-label {
  font-family: var(--wa-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.85rem);
  line-height: 1.14;
  margin: 0 0 .9rem;
  color: var(--wa-cream);
}
.wiser-about .wa-tl-item p { color: var(--wa-body); max-width: 60ch; }
.wiser-about .wa-tl-item p strong,
.wiser-about .wa-tl-item .wa-hl { color: var(--wa-cream); font-weight: 600; }

/* ============================================================
   MYLLENA — Trajetória (steps)
   ============================================================ */
.wiser-about .wa-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 760px) {
  .wiser-about .wa-steps { grid-template-columns: repeat(3, 1fr); }
}
.wiser-about .wa-step {
  border-top: 1px solid var(--wa-line);
  padding-top: 1.5rem;
}
.wiser-about .wa-step-index {
  font-family: var(--wa-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--wa-cream);            /* demoted from gold */
  display: block;
  margin-bottom: .9rem;
}
.wiser-about .wa-step-place {
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wa-muted);
  margin: 0 0 .35rem;
}
.wiser-about .wa-step h3 { margin-bottom: .85rem; }
.wiser-about .wa-step p { color: var(--wa-body); font-size: .98rem; }

/* ============================================================
   MISSÃO / VISÃO — value cards (no lift, hairline only)
   ============================================================ */
.wiser-about .wa-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 760px) { .wiser-about .wa-duo { grid-template-columns: 1fr 1fr; } }

.wiser-about .wa-card {
  position: relative;
  border: 1px solid var(--wa-line);
  background: linear-gradient(180deg, rgba(17,42,70,.22), rgba(14,15,18,0));
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transition: border-color 450ms var(--wa-ease), background 450ms var(--wa-ease);
}
.wiser-about .wa-card:hover {
  border-color: rgba(201,169,97,.45);
  background: linear-gradient(180deg, rgba(17,42,70,.30), rgba(14,15,18,0));
}
.wiser-about .wa-card .wa-eyebrow { margin-bottom: 1rem; }
.wiser-about .wa-card p { color: var(--wa-body); margin-bottom: 0; }

/* ============================================================
   VALORES — grid list (numbers demoted to cream)
   ============================================================ */
.wiser-about .wa-values {
  list-style: none;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--wa-line);
}
@media (min-width: 640px) { .wiser-about .wa-values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .wiser-about .wa-values { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.wiser-about .wa-values li {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.85rem) 1rem clamp(1.25rem, 3vw, 1.85rem) 0;
  border-bottom: 1px solid var(--wa-line-soft);
  font-family: var(--wa-serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  line-height: 1.2;
  color: var(--wa-cream);
  counter-increment: wa-val;
}
.wiser-about .wa-values li::before {
  content: counter(wa-val, decimal-leading-zero);
  display: block;
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--wa-muted);            /* demoted from gold */
  margin-bottom: .65rem;
}
.wiser-about .wa-values { counter-reset: wa-val; }

/* ============================================================
   PILARES — list rows
   ============================================================ */
.wiser-about .wa-pillars { margin-top: clamp(2rem, 5vw, 3rem); }
.wiser-about .wa-pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem 2rem;
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  border-top: 1px solid var(--wa-line);
}
.wiser-about .wa-pillar:last-child { border-bottom: 1px solid var(--wa-line); }
@media (min-width: 800px) {
  .wiser-about .wa-pillar { grid-template-columns: clamp(11rem, 28%, 18rem) 1fr; align-items: baseline; }
}
.wiser-about .wa-pillar h3 { color: var(--wa-cream); }
.wiser-about .wa-pillar p { color: var(--wa-body); margin: 0; }

/* ============================================================
   STAT BAND (Myllena) — navy full-bleed beat, numbers in cream
   ============================================================ */
.wiser-about .wa-statband {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201,169,97,.10) 0%, rgba(201,169,97,0) 55%),
    linear-gradient(180deg, var(--wa-navy) 0%, var(--wa-navy-deep) 100%);
  border-top: 1px solid var(--wa-line);
  border-bottom: 1px solid var(--wa-line);
}
.wiser-about .wa-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--wa-line);
}
@media (min-width: 720px) { .wiser-about .wa-stats { grid-template-columns: repeat(3, 1fr); } }
.wiser-about .wa-stat {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem) clamp(1.75rem, 4vw, 2.5rem) 0;
  border-bottom: 1px solid var(--wa-line);
}
@media (min-width: 720px) {
  .wiser-about .wa-stat { border-bottom: 0; border-right: 1px solid var(--wa-line); padding-left: clamp(1.25rem, 3vw, 2rem); }
  .wiser-about .wa-stat:first-child { padding-left: 0; }
  .wiser-about .wa-stat:last-child { border-right: 0; }
}
.wiser-about .wa-stat-num {
  font-family: var(--wa-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.25rem);
  line-height: 1;
  color: var(--wa-cream);            /* demoted from gold */
  letter-spacing: -.02em;
  display: block;
  margin-bottom: .65rem;
}
.wiser-about .wa-stat-num em { font-style: normal; color: var(--wa-gold); }  /* single gold glyph */
.wiser-about .wa-stat-label {
  font-family: var(--wa-sans);
  font-weight: 400;
  font-size: .95rem;
  color: var(--wa-body);
  line-height: 1.4;
  max-width: 22ch;
}

.wiser-about .wa-highlights {
  list-style: none;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--wa-line);
}
@media (min-width: 760px) { .wiser-about .wa-highlights { grid-template-columns: 1fr 1fr; } }
.wiser-about .wa-highlights li {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.45rem) 1rem clamp(1rem, 2.5vw, 1.45rem) 1.9rem;
  border-bottom: 1px solid var(--wa-line-soft);
  color: var(--wa-body);
  font-size: 1rem;
  line-height: 1.45;
}
@media (min-width: 760px) {
  .wiser-about .wa-highlights li:nth-child(odd) { border-right: 1px solid var(--wa-line-soft); padding-right: 2rem; }
}
.wiser-about .wa-highlights li::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: 1.55em;
  width: 7px;
  height: 1px;
  background: var(--wa-gold);
}

/* ============================================================
   OVERSIZED NUMBER BLOCK (Myllena "Trajetória" lead variant)
   ============================================================ */
.wiser-about .wa-bignum {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: end;
}
@media (min-width: 760px) {
  .wiser-about .wa-bignum { grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4rem); }
}
.wiser-about .wa-bignum-fig {
  font-family: var(--wa-serif);
  font-weight: 400;
  font-size: clamp(5rem, 4rem + 12vw, 13rem);
  line-height: .82;
  color: var(--wa-cream);
  letter-spacing: -.04em;
}
.wiser-about .wa-bignum-fig em { font-style: normal; color: var(--wa-gold); }

/* ============================================================
   PULL-QUOTE — short line only, set large
   ============================================================ */
.wiser-about .wa-quote {
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
}
.wiser-about .wa-quote blockquote {
  margin: 0;
  font-family: var(--wa-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.85rem, 1.1rem + 3.4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -.012em;
  color: var(--wa-cream);
  max-width: 18ch;
  margin-inline: auto;
}
.wiser-about .wa-quote--wide blockquote { max-width: 20ch; }
.wiser-about .wa-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--wa-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: .6;
  color: var(--wa-gold);
  margin-bottom: 1.25rem;
}
.wiser-about .wa-quote cite {
  display: block;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--wa-sans);
  font-style: normal;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

/* Pull-quote band modifier (replaces inline bg/border on the section) */
.wiser-about .wa-quoteband {
  background: linear-gradient(180deg, rgba(17,42,70,.32), rgba(14,15,18,0));
  border-top: 1px solid var(--wa-line);
  border-bottom: 1px solid var(--wa-line);
}

/* ============================================================
   MANIFESTO (cream contrast — Revista)
   ============================================================ */
.wiser-about .wa-cream-section {
  background: var(--wa-cream-bg);
  color: var(--wa-cream-ink);
}
.wiser-about .wa-cream-section .wa-eyebrow { color: var(--wa-navy); }
.wiser-about .wa-cream-section .wa-eyebrow::before { background: var(--wa-navy); }
.wiser-about .wa-cream-section h2,
.wiser-about .wa-cream-section h3 { color: var(--wa-cream-ink); }
.wiser-about .wa-cream-section p { color: var(--wa-cream-body); }
.wiser-about .wa-manifesto { max-width: 26ch; }
.wiser-about .wa-manifesto-body {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 60ch;
}
.wiser-about .wa-manifesto-body p {
  font-family: var(--wa-serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 1rem + 1.3vw, 1.85rem);
  line-height: 1.42;
  color: var(--wa-cream-ink);
  max-width: none;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--wa-gold);
}
.wiser-about .wa-manifesto-body p:last-child { margin-bottom: 0; }

/* ============================================================
   ESSÊNCIA (Myllena closing — cream inversion, reused tonal beat)
   ============================================================ */
.wiser-about .wa-essence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}
@media (min-width: 800px) { .wiser-about .wa-essence-grid { grid-template-columns: repeat(3, 1fr); } }
.wiser-about .wa-essence-item { border-top: 1px solid var(--wa-cream-line); padding-top: 1.4rem; }
.wiser-about .wa-essence-item .wa-key {
  font-family: var(--wa-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--wa-cream-ink);        /* on cream: ink, not gold */
  display: block;
  margin-bottom: .75rem;
}
.wiser-about .wa-essence-item p { color: var(--wa-cream-body); font-size: .98rem; margin: 0; }
.wiser-about .wa-essence-close {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--wa-serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.1rem);
  line-height: 1.34;
  color: var(--wa-cream-ink);
  max-width: 48ch;
}

/* ============================================================
   CTA
   ============================================================ */
.wiser-about .wa-cta {
  position: relative;
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(17,42,70,.5) 0%, rgba(14,15,18,0) 60%),
    var(--wa-ink);
  border-top: 1px solid var(--wa-line);
}
.wiser-about .wa-cta-inner { max-width: 56ch; margin-inline: auto; }
.wiser-about .wa-cta-title {
  font-weight: 400;
  font-size: clamp(2.1rem, 1.4rem + 3.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.018em;
  margin: 1.25rem 0 1.5rem;
}
.wiser-about .wa-cta p { margin-inline: auto; color: var(--wa-body); }
.wiser-about .wa-cta .wa-eyebrow { justify-content: center; }
.wiser-about .wa-cta .wa-eyebrow::before { display: none; }

.wiser-about .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 1.05rem 2.25rem;
  font-family: var(--wa-sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wa-ink);
  background: var(--wa-gold);
  border: 1px solid var(--wa-gold);
  border-radius: 999px;
  text-decoration: none;
  transition: background 380ms var(--wa-ease);
}
.wiser-about .wa-btn:hover { background: #d8bd7e; }
.wiser-about .wa-btn::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 380ms var(--wa-ease);
}
.wiser-about .wa-btn:hover::after { width: 28px; }

.wiser-about .wa-signature {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--wa-line);
  font-family: var(--wa-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem);
  color: var(--wa-cream);
}
.wiser-about .wa-signature span { color: var(--wa-gold); font-style: normal; }

/* ---------- Text link with gold underline grow ---------- */
.wiser-about .wa-link {
  color: var(--wa-cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.wiser-about .wa-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--wa-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--wa-ease);
}
.wiser-about .wa-link:hover::after { transform: scaleX(1); }

/* ---------- Footer accent (the ONE signature gold-split) ---------- */
.wiser-about .wa-footer-accent {
  text-align: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--wa-line);
}
.wiser-about .wa-footer-accent .wa-mark {
  font-family: var(--wa-serif);
  font-weight: 500;
  letter-spacing: .04em;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.5rem);
  color: var(--wa-cream);
}
.wiser-about .wa-footer-accent .wa-mark span { color: var(--wa-gold); }
.wiser-about .wa-footer-accent .wa-tag {
  margin-top: .75rem;
  font-family: var(--wa-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */
.wiser-about a:focus-visible,
.wiser-about button:focus-visible {
  outline: 2px solid var(--wa-gold);
  outline-offset: 3px;
}
.wiser-about .wa-cream-section a:focus-visible,
.wiser-about .wa-cream-section button:focus-visible {
  outline-color: var(--wa-navy);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .wiser-about *,
  .wiser-about *::before,
  .wiser-about *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .wiser-about.js .wa-reveal { opacity: 1 !important; transform: none !important; }
  .wiser-about .wa-parallax { transform: none !important; }
  .wiser-about .wa-timeline-track::before { transform: scaleY(1) !important; }
  .wiser-about .wa-tl-node { transform: scale(1) !important; opacity: 1 !important; }
}
/* ---------- Sobre pages: full-width immersive shell ----------
   page.php hardcodes an (empty) sidebar; hide it + the theme page-header
   and let the content column run full width. Scoped to the two page ids. */
.page-id-130 .td-main-sidebar,
.page-id-131 .td-main-sidebar { display: none !important; }
.page-id-130 .td-pb-span8.td-main-content,
.page-id-131 .td-pb-span8.td-main-content {
  width: 100% !important;
  float: none !important;
  padding-right: 0 !important;
}
.page-id-130 .td-page-header,
.page-id-131 .td-page-header { display: none !important; }
.page-id-130 .td-main-content-wrap,
.page-id-131 .td-main-content-wrap { padding-top: 0 !important; }

/* ---------- Fixes (round 1 review) ---------- */
/* Hide the theme breadcrumb on the immersive Sobre pages */
.page-id-130 .td-crumb-container,
.page-id-131 .td-crumb-container { display: none !important; }
/* Theme darkens content h1; force the hero title to brand cream (em stays gold) */
.wiser-about h1.wa-hero-title { color: var(--wa-cream) !important; }
.wiser-about .wa-hero-title em { color: var(--wa-gold) !important; }
