/* ============================================================
   MARTÍNEZ & ASOCIADOS — SITIO INSTITUCIONAL
   Versión 1.0 · Mayo 2026
   ============================================================ */

/* ============== TOKENS ============== */
:root {
  /* Cromática institucional */
  --navy-900: #0E2042;
  --navy-800: #172A52;
  --navy-700: #243A66;
  --navy-100: #E8ECF3;

  --gold-700: #9F7B3A;
  --gold-600: #B8924A;
  --gold-500: #C9A468;
  --gold-200: #E8D9B6;

  --cream-100: #F5F2EC;
  --cream-50:  #FAF8F4;

  --graphite-900: #1F2937;
  --graphite-700: #4A5560;
  --graphite-500: #8A95A0;
  --graphite-200: #D9DEE4;

  --white: #FFFFFF;

  /* Tipografía */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --serif-italic: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 760px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 11vw, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(14, 32, 66, 0.05);
  --shadow-md: 0 4px 24px rgba(14, 32, 66, 0.08);
  --shadow-nav: 0 1px 0 rgba(14, 32, 66, 0.06);
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--gold-200); color: var(--navy-900); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container--narrow { max-width: var(--max-width-narrow); }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--navy-900); color: var(--white);
  padding: 0.5rem 1rem; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.visually-hidden, .hp {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============== LOGO SVG STYLES ============== */
.logo-serif {
  font-family: var(--serif);
  font-weight: 600;
  fill: var(--navy-900);
  letter-spacing: 0.04em;
}
.logo--light { fill: var(--cream-100); }
.logo-amp {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  fill: var(--gold-600);
}
.logo-rule { stroke: var(--gold-600); stroke-width: 0.8; }
.logo-sub {
  font-family: var(--sans);
  font-weight: 500;
  fill: var(--graphite-700);
  letter-spacing: 0.32em;
}
.logo-sub--light { fill: var(--gold-500); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 1.75rem 0;
}
.nav.is-scrolled {
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: var(--shadow-nav);
  padding: 1rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  width: 240px;
  height: auto;
  transition: width 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__logo { width: 200px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__menu a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy-900);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease-out);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-600);
  transition: width 0.3s var(--ease-out);
}
.nav__menu a:hover::after { width: 100%; }
.nav__menu a.nav__cta {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 0.7rem 1.4rem;
  letter-spacing: 0.18em;
  transition: background 0.25s var(--ease-out);
}
.nav__menu a.nav__cta::after { display: none; }
.nav__menu a.nav__cta:hover { background: var(--navy-800); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy-900);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* hidden HTML attr SIEMPRE oculta — fix del bug en escritorio */
[hidden] { display: none !important; }

.nav__mobile {
  background: var(--cream-50);
  border-top: 1px solid var(--graphite-200);
  padding: 2rem var(--pad-x);
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy-900);
}

/* ============== HERO ============== */
.hero {
  background: var(--cream-50);
  padding-top: clamp(8rem, 18vw, 12rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Línea dorada superior decorativa */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-500) 35%, transparent 100%);
}
.hero::after {
  /* Patrón sutil en el fondo */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 32, 66, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { min-width: 0; }

/* Columna visual derecha */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__visual-frame {
  position: relative;
  padding: 2rem 1.5rem;
}
.hero__visual-frame::before,
.hero__visual-frame::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-600);
}
.hero__visual-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__visual-frame::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hero__column {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(14, 32, 66, 0.12));
  animation: rise 1.2s var(--ease-out) 0.3s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero__visual-caption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-700);
  letter-spacing: 0.18em;
}
.hero__visual-caption .line {
  flex: 1;
  height: 1px;
  background: var(--gold-600);
  opacity: 0.5;
  max-width: 30px;
}
.hero__visual-caption .text { white-space: nowrap; }

/* ============== BANNER MANIFIESTO ============== */
.banner {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "M&A";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(15rem, 36vw, 32rem);
  color: rgba(184, 146, 74, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.banner__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-500);
  margin: 0 0 2.5rem;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}
.banner__eyebrow::before,
.banner__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--gold-600);
}
.banner__eyebrow::before { right: 100%; }
.banner__eyebrow::after  { left: 100%; }
.banner__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream-100);
  margin: 0 auto 2.5rem;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}
.banner__title .line { display: block; }
.banner__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-500);
}
.banner__attribution {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-200);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.banner__attribution .rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-600);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--graphite-700);
  margin: 0 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dot { color: var(--gold-600); }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 2rem;
  max-width: 14ch;
}
.hero__title .line { display: block; }
.hero__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-700);
}

.hero__lead {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--graphite-700);
  max-width: 56ch;
  margin: 0 0 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 4rem;
  color: var(--graphite-500);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.36em;
}
.hero__meta-mark { color: var(--navy-900); font-weight: 600; }
.hero__meta-line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold-600);
}
.hero__meta-roman { color: var(--graphite-500); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--navy-900);
  color: var(--cream-100);
  border-color: var(--navy-900);
}
.btn--primary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost:hover {
  background: var(--navy-900);
  color: var(--cream-100);
}
.btn--full { width: 100%; }

/* ============== SECTIONS ============== */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--cream { background: var(--cream-100); }
.section--white { background: var(--white); }
.section--navy {
  background: var(--navy-900);
  color: var(--cream-100);
}

.section__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.section__header--center { text-align: center; }
.section__header--center .section__num,
.section__header--center .section__deck { margin-left: auto; margin-right: auto; }

.section__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2rem;
  width: fit-content;
}
.section__header--center .section__num { padding-left: 0; padding-top: 0; }
.section__num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--gold-600);
}
.section__header--center .section__num::before { display: none; }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 1.25rem;
}
.section__header--invert .section__title { color: var(--cream-100); }
.section__header--invert .section__num { color: var(--gold-500); }
.section__header--invert .section__num::before { background: var(--gold-500); }
.section__header--invert .section__deck { color: var(--gold-200); }

.section__deck {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--graphite-700);
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}

/* ============== PROSE ============== */
.prose p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--graphite-900);
  margin: 0 0 1.5rem;
}
.prose__lead {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem) !important;
  color: var(--navy-900) !important;
  line-height: 1.5 !important;
  margin-bottom: 2.5rem !important;
  border-left: 2px solid var(--gold-600);
  padding-left: 1.5rem;
}

/* ============== PULL QUOTE ============== */
.pullquote {
  margin: 5rem 0 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--graphite-200);
  border-bottom: 1px solid var(--graphite-200);
  text-align: center;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--navy-900);
  line-height: 1.4;
  margin: 0 0 1rem;
}
.pullquote cite {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-700);
}

/* ============== AREAS ============== */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--graphite-200);
  border-left: 1px solid var(--graphite-200);
}
.area {
  border-right: 1px solid var(--graphite-200);
  border-bottom: 1px solid var(--graphite-200);
  padding: 2.5rem 2rem;
  position: relative;
  background: var(--white);
  transition: background 0.3s var(--ease-out);
}
.area::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-600);
  transition: width 0.4s var(--ease-out);
}
.area:hover {
  background: var(--cream-50);
}
.area:hover::before { width: 100%; }
.area__num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-700);
  display: block;
  margin-bottom: 0.75rem;
}
.area__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-900);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.area__desc {
  font-size: 0.94rem;
  color: var(--graphite-700);
  line-height: 1.55;
  margin: 0;
}

/* ============== PRINCIPLES (sobre navy) ============== */
.principles {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(232, 217, 182, 0.15);
}
.principle {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(232, 217, 182, 0.15);
  border-right: 1px solid rgba(232, 217, 182, 0.15);
  position: relative;
}
.principle:nth-child(2n) { border-right: 1px solid rgba(232, 217, 182, 0.15); }
.principle__num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 1rem;
}
.principle__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--cream-100);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.principle__desc {
  color: rgba(245, 242, 236, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

/* ============== LEADER ============== */
.leader {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  background: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--graphite-200);
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.leader::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 2px;
  background: var(--gold-600);
}
.leader__portrait { display: flex; flex-direction: column; gap: 1rem; }
.leader__monogram {
  aspect-ratio: 1;
  background: var(--navy-900);
  border-radius: 2px;
  overflow: hidden;
}
.leader__caption {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin: 0;
  text-align: center;
}
.leader__role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-700);
  margin: 0 0 0.5rem;
}
.leader__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  color: var(--navy-900);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
.leader__bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--graphite-700);
  margin: 0 0 2rem;
}
.leader__meta {
  display: grid;
  gap: 1.25rem;
  border-top: 1px solid var(--graphite-200);
  padding-top: 1.5rem;
  margin: 0;
}
.leader__meta div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.leader__meta dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--graphite-500);
}
.leader__meta dd {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0;
}

/* ============== PUBS ============== */
.pubs__lead {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--navy-900);
  margin: 0 0 3rem;
}
.newsletter {
  background: var(--cream-100);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--graphite-200);
}
.newsletter__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-700);
  margin: 0 0 1rem;
}
.newsletter__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter__row input[type="email"] {
  flex: 1;
  min-width: 220px;
  font-family: var(--serif);
  font-size: 1.05rem;
  background: var(--white);
  border: 1px solid var(--graphite-200);
  padding: 0.95rem 1.1rem;
  color: var(--navy-900);
  transition: border-color 0.2s;
}
.newsletter__row input[type="email"]:focus {
  border-color: var(--gold-600);
  outline: none;
}
.newsletter__note {
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin: 1rem 0 0;
  font-style: italic;
}

/* ============== CONTACTO ============== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__info { padding-top: 0.5rem; }
.contact__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-700);
  margin: 0 0 2rem;
}
.contact__list {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--graphite-200);
  border-bottom: 1px solid var(--graphite-200);
}
.contact__list dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--graphite-500);
  margin-bottom: 0.35rem;
}
.contact__list dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0;
}
.contact__list dd a { border-bottom: 1px solid var(--gold-600); padding-bottom: 1px; transition: color 0.2s; }
.contact__list dd a:hover { color: var(--gold-700); }
.contact__legend {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--graphite-700);
  line-height: 1.6;
  margin: 0;
}

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--graphite-200);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.5rem;
}
.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--graphite-700);
}
.field__opt { color: var(--graphite-500); font-weight: 400; text-transform: none; letter-spacing: normal; }
.field input, .field select, .field textarea {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy-900);
  background: var(--cream-50);
  border: 1px solid var(--graphite-200);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { font-family: var(--sans); font-size: 0.98rem; line-height: 1.55; resize: vertical; min-height: 120px; }
.field select { font-family: var(--sans); font-size: 0.98rem; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230E2042' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-600);
  background: var(--white);
  outline: none;
}
.field__note {
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin: 0;
  line-height: 1.5;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-600) 30%, var(--gold-600) 70%, transparent 100%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(232, 217, 182, 0.15);
  margin-bottom: 2rem;
}
.footer__brand { max-width: 280px; }
.footer__logo { width: 100%; height: auto; max-width: 280px; margin-bottom: 1.5rem; }
.footer__tagline {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-200);
  margin: 0;
  line-height: 1.5;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-500);
  margin: 0 0 1.25rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.footer__col a {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--cream-100);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold-500); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 242, 236, 0.6);
}
.footer__bottom p { margin: 0; }
.footer__legal a { color: rgba(245, 242, 236, 0.7); transition: color 0.2s; }
.footer__legal a:hover { color: var(--gold-500); }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Stagger children inside hero/sections */
.hero__inner .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero__inner .reveal:nth-child(2) { transition-delay: 0.15s; }
.hero__title .line:nth-child(1) { transition-delay: 0.20s; }
.hero__title .line:nth-child(2) { transition-delay: 0.30s; }
.hero__title .line:nth-child(3) { transition-delay: 0.40s; }
.hero__inner > .reveal:nth-of-type(3) { transition-delay: 0.55s; }
.hero__inner > .reveal:nth-of-type(4) { transition-delay: 0.65s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .hero__column { max-width: 200px; }

  .leader { grid-template-columns: 1fr; }
  .leader__portrait { max-width: 240px; margin: 0 auto; }
  .leader__meta div { grid-template-columns: 1fr; gap: 0.25rem; }

  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding-top: 7rem; }
  .nav__logo { width: 200px; }
  .nav.is-scrolled .nav__logo { width: 170px; }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__column { max-width: 160px; }
  .hero__visual-frame { padding: 1.25rem 1rem; }

  .banner__title { font-size: clamp(1.45rem, 6vw, 2rem); }
  .banner__eyebrow::before,
  .banner__eyebrow::after { width: 1rem; }

  .areas { grid-template-columns: 1fr; }
  .area { padding: 2rem 1.5rem; }

  .principles { grid-template-columns: 1fr; }
  .principle { padding: 2.25rem 1.5rem; }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .pullquote p { font-size: 1.2rem; }

  .newsletter__row { flex-direction: column; }
  .newsletter__row input[type="email"] { width: 100%; }
  .newsletter__row .btn { width: 100%; }
}

/* Print fallback */
@media print {
  .nav, .footer__bottom, .nav__toggle { display: none; }
  body { color: black; background: white; }
  .section { page-break-inside: avoid; padding: 1cm 0; }
}

/* ============================================================
   ESTILOS DE LANDINGS DE PRODUCTO
   Compartidos por todas las landings hijas del sitio.
   ============================================================ */

.product-hero {
  background: var(--cream-50);
  padding-top: clamp(8rem, 18vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-500) 35%, transparent 100%);
}
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14, 32, 66, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.product-hero__inner { position: relative; z-index: 1; max-width: 880px; }

.crumbs {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--graphite-500);
  margin: 0 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.crumbs a { color: var(--graphite-700); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold-700); }
.crumbs .sep { color: var(--gold-600); }
.crumbs .current { color: var(--navy-900); font-weight: 600; }

.product-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-700);
  margin: 0 0 2rem;
  position: relative;
  padding-left: 2rem;
  display: inline-block;
}
.product-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.25rem; height: 1px;
  background: var(--gold-600);
}

.product-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 2rem;
  max-width: 22ch;
}
.product-title em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold-700);
}

.product-lead {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--graphite-700);
  max-width: 60ch;
  margin: 0 0 3rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Imagen editorial de hero */
.product-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(280px, 36vw, 460px);
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.95);
  position: relative;
}
.product-image-wrap {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 32, 66, 0.15) 0%, rgba(14, 32, 66, 0.45) 100%);
  pointer-events: none;
}
.product-image-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-200);
  letter-spacing: 0.12em;
  z-index: 2;
}

/* Secciones de contenido */
.product-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.product-section--cream { background: var(--cream-100); }
.product-section--white { background: var(--white); }
.product-section--navy {
  background: var(--navy-900);
  color: var(--cream-100);
}
.product-section__inner { max-width: 880px; margin: 0 auto; }

.product-section__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 2rem;
}
.product-section__num::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.25rem; height: 1px;
  background: var(--gold-600);
}
.product-section--navy .product-section__num { color: var(--gold-500); }
.product-section--navy .product-section__num::before { background: var(--gold-500); }

.product-section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 2rem;
}
.product-section--navy .product-section__title { color: var(--cream-100); }

.product-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--graphite-900);
  margin: 0 0 1.4rem;
  max-width: 64ch;
}
.product-section--navy .product-prose p { color: rgba(245, 242, 236, 0.86); }
.product-prose strong { font-weight: 600; color: var(--navy-900); }
.product-section--navy .product-prose strong { color: var(--gold-500); }

.legal-cite {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--graphite-700);
  border-left: 2px solid var(--gold-600);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0;
  max-width: 60ch;
}
.product-section--navy .legal-cite {
  color: var(--gold-200);
  border-left-color: var(--gold-500);
}

.scenarios {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--graphite-200);
  counter-reset: item;
}
.scenarios li {
  padding: 1.25rem 0 1.25rem 2.5rem;
  border-bottom: 1px solid var(--graphite-200);
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--graphite-900);
}
.scenarios li::before {
  content: counter(item, lower-roman) ".";
  counter-increment: item;
  position: absolute;
  left: 0; top: 1.25rem;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-700);
  font-weight: 500;
  width: 2rem;
}

.phases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(232, 217, 182, 0.15);
}
.phase {
  padding: 2.25rem 1.75rem;
  border-bottom: 1px solid rgba(232, 217, 182, 0.15);
  border-right: 1px solid rgba(232, 217, 182, 0.15);
}
.phase__num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 0.75rem;
}
.phase__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--cream-100);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.phase__desc {
  color: rgba(245, 242, 236, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.phase__time {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-200);
  display: block;
  margin-top: 0.85rem;
}

.deadline {
  margin: 2.5rem 0 0;
  padding: 1.75rem 2rem;
  border: 1px solid var(--gold-600);
  background: var(--cream-50);
  max-width: 64ch;
}
.deadline__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-700);
  margin: 0 0 0.75rem;
}
.deadline__text {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--navy-900);
  margin: 0;
}
.deadline__text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-700);
}

.product-cta {
  background: var(--cream-100);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.product-cta__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.product-cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  color: var(--navy-900);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.product-cta__title em { font-family: var(--serif-italic); font-style: italic; color: var(--gold-700); }
.product-cta__lead {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--graphite-700);
  margin: 0 auto 3rem;
  max-width: 56ch;
}

.product-form {
  background: var(--white);
  border: 1px solid var(--graphite-200);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  gap: 1.25rem;
  text-align: left;
}
.product-form .field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--graphite-700);
  display: block;
  margin-bottom: 0.5rem;
}
.product-form .field input,
.product-form .field select,
.product-form .field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy-900);
  background: var(--cream-50);
  border: 1px solid var(--graphite-200);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.product-form .field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.55;
  resize: vertical;
  min-height: 120px;
}
.product-form .field select {
  font-family: var(--sans);
  font-size: 0.98rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230E2042' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.product-form .field input:focus,
.product-form .field select:focus,
.product-form .field textarea:focus {
  border-color: var(--gold-600);
  background: var(--white);
  outline: none;
}
.product-form__note {
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin: 0;
  font-style: italic;
  text-align: center;
}

.product-footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 3rem 0 2rem;
  position: relative;
}
.product-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-600) 30%, var(--gold-600) 70%, transparent 100%);
}
.product-footer__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.product-footer__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream-100);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.product-footer__brand em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-600);
}
.product-footer__sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-500);
  margin: 0 0 2rem;
}
.product-footer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  border-bottom: 1px solid var(--gold-600);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.product-footer__back:hover { color: var(--cream-100); }
.product-footer__legal {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.5);
}

/* Tarjetas de áreas en index — link visible */
.area__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-700);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.area__link:hover { color: var(--gold-600); border-bottom-color: var(--gold-600); }
.area--linked { cursor: pointer; }

@media (max-width: 640px) {
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .phases { grid-template-columns: 1fr; }
  .scenarios li { padding-left: 2rem; }
}

/* ============== ARTÍCULOS EDITORIALES ============== */
.article-hero {
  background: var(--cream-50);
  padding-top: clamp(8rem, 18vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  border-bottom: 1px solid var(--graphite-200);
}
.article-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-500) 35%, transparent 100%);
}
.article-hero__inner { max-width: 760px; margin: 0 auto; }
.article-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--graphite-500);
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.article-meta a { color: var(--graphite-700); transition: color 0.2s; }
.article-meta a:hover { color: var(--gold-700); }
.article-meta .sep { color: var(--gold-600); }
.article-category {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-700);
  margin: 0 0 1.5rem;
  display: inline-block;
}
.article-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 2rem;
}
.article-title em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold-700);
}
.article-deck {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--graphite-700);
  margin: 0 0 2.5rem;
  max-width: 60ch;
}
.article-byline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--graphite-700);
  border-top: 1px solid var(--graphite-200);
  padding-top: 1.5rem;
}
.article-byline strong { color: var(--navy-900); font-weight: 600; }
.article-byline .sep { color: var(--gold-600); margin: 0 0.5rem; }

.article-body {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.article-body__inner { max-width: 720px; margin: 0 auto; }
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 3rem 0 1.5rem;
  position: relative;
  padding-left: 2rem;
}
.article-body h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 1.25rem;
  height: 1px;
  background: var(--gold-600);
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy-900);
  margin: 2.25rem 0 1rem;
  line-height: 1.3;
}
.article-body p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--graphite-900);
  margin: 0 0 1.4rem;
}
.article-body p strong { color: var(--navy-900); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body blockquote {
  margin: 2.5rem 0;
  padding: 0.5rem 0 0.5rem 1.75rem;
  border-left: 2px solid var(--gold-600);
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--navy-900);
}
.article-body ol, .article-body ul {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--graphite-900);
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.article-body li { margin-bottom: 0.6rem; }
.article-body__sep {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  color: var(--gold-600);
  font-family: var(--serif);
  letter-spacing: 1rem;
  font-size: 1rem;
}

.article-end {
  background: var(--cream-100);
  padding: 3rem 0;
  border-top: 1px solid var(--graphite-200);
}
.article-end__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.article-end h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy-900);
  margin: 0;
}
.article-end p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--graphite-700);
  margin: 0;
}
.article-end__author {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--graphite-200);
}
.article-end__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.92);
}
.article-end__author p { margin: 0; }
.article-end__author strong { font-family: var(--serif); font-size: 1.1rem; color: var(--navy-900); font-weight: 500; display: block; margin-bottom: 0.25rem; }
.article-end__author span { font-family: var(--sans); font-size: 0.88rem; color: var(--graphite-700); }
