/* ============================================================
   SILVIA ESCRIBANO — ESTILOS GLOBALES
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* --- CUSTOM PROPERTIES — PALETA EDITORIAL PREMIUM --- */
:root {
  /* Base palette */
  --black: #0F0F0F;
  --black-soft: #1A1A1A;
  --black-deep: #080808;
  --cream: #F5F5F3;
  --cream-dark: #EDE8E1;
  --sand: #D8CFC4;
  --sand-light: #E5DED5;
  --gold: #C6A96B;
  --gold-light: #D4BC82;
  --gold-dark: #AD924F;
  --burgundy: #6A2E2E;
  --burgundy-hover: #581F1F;
  --burgundy-soft: rgba(106, 46, 46, 0.12);
  --gray-text: #5C5C5C;
  --gray-soft: #B8B2A9;
  --white: #FFFFFF;

  /* Legacy aliases (inner pages) */
  --midnight: var(--black);
  --midnight-light: var(--black-soft);
  --magenta: var(--burgundy);
  --magenta-hover: var(--burgundy-hover);
  --magenta-dark: var(--burgundy-hover);
  --gray-light: var(--cream);
  --gray-mid: #D0CBC4;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max-width: 1280px;
  --section-padding: 120px 24px;
  --section-padding-sm: 72px 24px;

  /* Shape & Motion */
  --radius: 2px;
  --radius-lg: 4px;
  --shadow: 0 4px 24px rgba(15, 15, 15, 0.06);
  --shadow-lg: 0 20px 60px rgba(15, 15, 15, 0.14);

  --transition: 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { font-size: 1.05rem; line-height: 1.8; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--midnight);
  font-weight: 700;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

section.compact {
  padding: var(--section-padding-sm);
}

/* --- COLORS UTILITIES --- */
.bg-dark { background: var(--midnight); color: var(--white); }
.bg-light { background: var(--gray-light); }
.bg-white { background: var(--white); }
.bg-magenta { background: var(--magenta); color: var(--white); }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-magenta { color: var(--magenta); }
.text-gray { color: var(--gray-text); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}

.btn-primary:hover {
  background: var(--magenta-hover);
  border-color: var(--magenta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}

.btn-outline-dark:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-download {
  background: transparent;
  color: var(--midnight);
  border-color: var(--gold);
  padding: 14px 28px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
}

.btn-download .btn-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  transition: var(--transition);
}

.btn-download:hover {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.18);
}

.btn-download:hover .btn-download-icon {
  background: var(--gold);
  color: var(--midnight);
  transform: translateY(2px);
}

.btn-download:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-download-meta {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
}

@media (max-width: 640px) {
  .btn-download {
    width: 100%;
    justify-content: center;
  }
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}

.header.scrolled {
  background: var(--midnight);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }

.nav .btn-primary {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 4px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.lang-btn.is-active {
  color: var(--gold);
}

.lang-btn:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.75);
}

.lang-btn:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.lang-sep {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
  line-height: 1;
  margin: 0 1px;
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 8px;
  }
  .lang-btn {
    font-size: 0.65rem;
    padding: 4px 3px;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   MOBILE NAV — editorial premium (lujo sobrio, marca personal)
   ================================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse at 50% -8%, rgba(198, 169, 107, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight) 0%, #050509 100%);
  padding: 36px 32px 56px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(198, 169, 107, 0.18);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  counter-reset: navitem;
}

.mobile-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: rgba(250, 249, 247, 0.92);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  padding: 22px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  transition: color var(--transition);
}

.mobile-nav a:not(.btn-gold)::before {
  counter-increment: navitem;
  content: counter(navitem, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.mobile-nav a:not(.btn-gold)::after {
  content: "→";
  margin-left: auto;
  color: rgba(198, 169, 107, 0.32);
  font-size: 0.95rem;
  transition: color var(--transition), transform var(--transition);
}

.mobile-nav a:not(.btn-gold):hover,
.mobile-nav a:not(.btn-gold):active,
.mobile-nav a:not(.btn-gold):focus-visible {
  color: var(--gold);
}

.mobile-nav a:not(.btn-gold):hover::before,
.mobile-nav a:not(.btn-gold):active::before { opacity: 1; }

.mobile-nav a:not(.btn-gold):hover::after,
.mobile-nav a:not(.btn-gold):active::after {
  color: var(--gold);
  transform: translateX(4px);
}

.mobile-nav a:last-child { border-bottom: none; }

/* Contact CTA — capsule, centered, refined (mobile menu only) */
.mobile-nav .btn-gold {
  align-self: center;
  width: auto;
  margin: 40px auto 4px;
  padding: 14px 46px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  border-bottom: 0;
  box-shadow: 0 0 0 1px rgba(198, 169, 107, 0.25), 0 18px 40px -20px rgba(198, 169, 107, 0.4);
}

.mobile-nav .btn-gold::before,
.mobile-nav .btn-gold::after { content: none; }

@media (max-width: 420px) {
  .mobile-nav { padding: 28px 22px 48px; }
  .mobile-nav a { font-size: 1.18rem; padding: 18px 2px; gap: 14px; }
  .mobile-nav a:not(.btn-gold)::before { width: 22px; font-size: 0.6rem; }
  .mobile-nav .btn-gold { margin-top: 32px; padding: 13px 40px; }
}

/* Header presence when mobile menu is open */
body.menu-open { overflow: hidden; }
body.menu-open .header {
  background: var(--midnight);
  box-shadow: 0 1px 0 rgba(198, 169, 107, 0.18);
}

/* Header refinements on mobile (logo / lang / hamburger balance) */
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .logo-script { font-size: 1.28rem; }
  .logo-tagline { font-size: 0.58rem; letter-spacing: 0.2em; }
  .lang-switcher { margin-left: auto; gap: 0; }
  .lang-sep { font-size: 0.55rem; margin: 0 4px; opacity: 0.45; }
  .hamburger { padding: 10px 4px 10px 14px; gap: 5px; }
  .hamburger span { width: 22px; height: 1.5px; background: rgba(250, 249, 247, 0.92); }
  .hamburger.active span { background: var(--gold); }
}

/* --- FINAL WORD (cierre editorial antes del footer) --- */
.final-word {
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(198, 169, 107, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight) 0%, #080810 100%);
  padding: 120px 24px 104px;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.final-word::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.final-word-inner {
  max-width: 720px;
  margin: 0 auto;
}
.final-word-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.final-word-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.final-word-quote em {
  font-style: italic;
  color: var(--gold);
  display: inline;
}
.final-word-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 auto 44px;
  max-width: 560px;
  font-weight: 300;
}
.final-word-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding: 8px 2px;
  transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.final-word-cta span {
  color: var(--gold);
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}
.final-word-cta:hover { color: var(--gold); gap: 18px; }
.final-word-cta:hover span { transform: translateX(4px); }

/* --- RNE / RTVE FEATURED BLOCK --- */
.rne-feature {
  padding: 96px 0;
  position: relative;
}
.rne-feature-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.rne-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
}
.rne-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.rne-date {
  color: rgba(255,255,255,0.38);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rne-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.rne-photo-col { position: relative; }
.rne-photo-main {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.rne-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}
.rne-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.rne-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.rne-body {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(250,249,247,0.68);
  margin: 0;
}
/* Audio Player */
.rne-player {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,169,107,0.22);
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 8px;
}
.rne-play-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  padding: 0;
}
.rne-play-btn:hover { background: var(--gold); color: #0a0a14; }
.rne-player-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.rne-progress-wrap {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
}
.rne-progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.15s linear;
}
.rne-player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rne-time {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.rne-label {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
/* Supporting editorial image below player */
.rne-supporting {
  margin: 12px 0 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,169,107,0.16);
}
.rne-supporting img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 0.6s ease;
}
.rne-supporting:hover img { transform: scale(1.02); }
.rne-supporting figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 4px 10px;
  background: rgba(10,10,20,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
/* RNE Responsive */
@media (max-width: 880px) {
  .rne-feature-inner { padding: 0 24px; }
  .rne-grid { grid-template-columns: 1fr; gap: 40px; }
  .rne-photo-col { max-width: 460px; width: 100%; margin: 0 auto; }
  .rne-photo-main { aspect-ratio: 3/4; object-position: center; max-height: none; }
}
@media (max-width: 560px) {
  .rne-feature { padding: 64px 0; }
  .rne-feature-inner { padding: 0 20px; }
  .rne-meta-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rne-supporting img { aspect-ratio: 4/3; }
}

/* --- FOOTER (rediseño premium) --- */
.footer {
  background: linear-gradient(180deg, #080810 0%, #030307 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 88px 24px 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(198, 169, 107, 0.35) 50%,
    transparent 100%);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-script {
  display: block;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}
.footer-brand-position {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 300px;
}
.footer-brand-claim {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(198, 169, 107, 0.82);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}
/* Legacy fallback: if a page still uses .footer-brand p without classes */
.footer-brand p {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-col ul a:hover { color: var(--gold); transform: translateX(3px); }
.footer-col p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.footer-col--contact {
  display: flex;
  flex-direction: column;
}
.footer-contact-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-note {
  margin: 16px 0 0 !important;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col--presence { gap: 0; }
.footer-presence {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.footer-presence:first-of-type { padding-top: 0; }
.footer-presence:last-of-type { border-bottom: 0; }
.footer-presence:hover { border-bottom-color: rgba(198, 169, 107, 0.4); }
.footer-presence-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}
.footer-presence-name::after {
  content: "→";
  color: var(--gold);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-presence:hover .footer-presence-name { color: var(--gold); }
.footer-presence:hover .footer-presence-name::after {
  opacity: 1;
  transform: translateX(0);
}
.footer-presence-desc {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  margin-top: 4px;
  line-height: 1.4;
}

/* Legacy .footer-social fallback — in case any page still uses it */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 169, 107, 0.08);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .final-word { padding: 80px 24px 72px; }
  .final-word-cta { font-size: 0.82rem; letter-spacing: 0.16em; }
  .footer { padding: 64px 24px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0 30px;
  }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }
}

/* --- HERO COMPONENTS --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(198, 169, 107, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-content--narrow {
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .lead {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero with split layout */
.hero--split .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero with photo background */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero--with-photo .hero-bg {
  background: var(--black); /* fallback color */
}
.hero--with-photo .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,15,15,0.94) 0%,
    rgba(8,8,8,0.82) 45%,
    rgba(15,15,15,0.55) 100%
  );
  z-index: 1;
}
.hero--with-photo .hero-bg::after {
  z-index: 2;
}

/* --- STATS SECTION --- */
.stats-section {
  background: var(--gray-light);
  padding: 72px 24px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.4;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 680px; margin: 0 auto; color: var(--gray-text); }

.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--magenta);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(194, 24, 91, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--magenta);
  font-size: 1.3rem;
}

.card h3 { margin-bottom: 12px; color: var(--midnight); }
.card p { color: var(--gray-text); font-size: 0.97rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.card-link:hover { gap: 10px; }
.card-link::after { content: '→'; }

/* --- QUOTE SECTION --- */
.quote-section {
  padding: var(--section-padding);
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.quote-section blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-serif);
  opacity: 0.4;
}

.quote-author {
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- BADGES / TAGS --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-gold {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 18px;
  background: var(--gray-mid);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--midnight);
  transition: var(--transition);
}

.tag:hover {
  background: var(--midnight);
  color: var(--white);
}

/* --- CLIENTS / LOGOS --- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 28px 20px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  width: 100%;
  max-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius);
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--transition), transform var(--transition);
  padding: 8px 12px;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

/* --- CREDENTIAL LIST --- */
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.credential-item .icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

/* Credential list on light bg */
.credential-item--light {
  background: var(--white);
  border-left-color: var(--magenta);
  box-shadow: var(--shadow);
}

.credential-item--light p { color: var(--midnight); }

/* --- FORM --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--midnight);
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--midnight);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.08);
}

textarea { resize: vertical; min-height: 120px; }

/* --- DIVIDERS --- */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.gold-rule--center { margin: 20px auto; }

/* --- CONFERENCE CARD --- */
.conf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 4px 1fr;
}

.conf-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.conf-card-accent { background: var(--magenta); }

.conf-card-body {
  padding: 36px 32px;
}

.conf-card-body h3 {
  margin-bottom: 8px;
  color: var(--midnight);
}

.conf-card-tagline {
  color: var(--magenta);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
}

.conf-card-body p { color: var(--gray-text); font-size: 0.95rem; }

.conf-card-meta {
  margin-top: 16px;
  font-size: 0.83rem;
  color: var(--gray-text);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- BOOK CARDS --- */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.book-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.book-cover {
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, var(--midnight), var(--midnight-light));
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  text-align: center;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.2);
}

.book-cover h4 {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.book-cover .book-subtitle {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-info h3 { margin-bottom: 8px; color: var(--midnight); }
.book-editorial { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.book-info p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 16px; }
.book-blurb { font-style: italic; color: var(--gray-text); font-family: var(--font-serif); border-left: 3px solid var(--gold); padding-left: 16px; }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #0a0a14 0%, #050509 100%);
  border-top: 1px solid rgba(198, 169, 107, 0.32);
  padding: 18px 32px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.cookie-banner-text {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(250, 249, 247, 0.78);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(198, 169, 107, 0.4);
  transition: text-decoration-color 0.2s ease;
}
.cookie-banner-text a:hover { text-decoration-color: var(--gold); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-btn {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.cookie-banner-btn--accept {
  background: var(--gold);
  color: #0a0a14;
}
.cookie-banner-btn--accept:hover {
  background: #a88a50;
  border-color: #a88a50;
}
.cookie-banner-btn--reject {
  background: transparent;
  color: rgba(250, 249, 247, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}
.cookie-banner-btn--reject:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 720px) {
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-btn { flex: 1; padding: 12px 16px; font-size: 0.7rem; letter-spacing: 0.1em; }
}


/* --- BOOK COVER IMAGE (real photo) --- */
.book-cover-img {
  border-radius: 4px;
  box-shadow: 6px 8px 28px rgba(45,27,78,0.28);
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}
.book-cover-img:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 8px 14px 36px rgba(45,27,78,0.38);
}

/* --- AUTHOR PORTRAIT --- */
.author-portrait {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: var(--shadow-lg);
}
.portrait-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.portrait-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(45,27,78,0.70) 0%, transparent 100%);
  pointer-events: none;
}

/* --- PORTRAIT CAPTION OVERLAY --- */
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}
.portrait-caption .logo-script {
  font-size: 1.6rem;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
.portrait-caption p {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- COUNTRIES --- */
.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 9px;
  border: 1px solid rgba(201, 169, 110, 0.38);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.015);
  transition: var(--transition);
  line-height: 1;
}

.country-tag-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.country-tag-code {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.country-tag-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color var(--transition);
}

.country-tag:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.country-tag:hover .country-tag-name {
  color: var(--white);
}

@media (max-width: 640px) {
  .country-tag {
    gap: 8px;
    padding: 6px 14px 6px 8px;
  }
  .country-tag-flag { width: 20px; height: 14px; }
  .country-tag-name { font-size: 0.82rem; }
  .country-tag-code { font-size: 0.68rem; }
}

/* --- EVENTS LIST --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.event-item:last-child { border-bottom: none; }

.event-year {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 56px;
  padding-top: 2px;
}

.event-item p { font-size: 0.95rem; color: var(--midnight); line-height: 1.5; }
.event-item strong { color: var(--midnight); }

/* --- PILLAR BLOCKS --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-block {
  padding: 48px 36px;
  background: rgba(255,255,255,0.04);
}

.pillar-block h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.pillar-block p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* --- MODAL-STYLE CTA BAND --- */
.cta-band {
  padding: 80px 24px;
  text-align: center;
}

.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

.cta-band--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--midnight);
  background-image: image-set(url('../assets/images/silvia-escenario.webp') type('image/webp'), url('../assets/images/silvia-escenario.jpg') type('image/jpeg'));
  background-image: url('../assets/images/silvia-escenario.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  padding: 120px 24px;
}
.cta-band--photo .cta-band-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 20, 0.55) 0%, rgba(10, 10, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(153, 27, 96, 0.35) 0%, rgba(10, 10, 20, 0.15) 60%);
}
.cta-band--photo > .container { position: relative; z-index: 1; }
.cta-band--photo .btn-ghost {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}
.cta-band--photo .btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}
@media (max-width: 640px) {
  .cta-band--photo {
    padding: 80px 24px;
    background-position: center;
  }
}

/* --- FORMAT BADGE LIST --- */
.format-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}

.format-item::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- SOCIAL PROOF BAR --- */
.social-proof-bar {
  background: var(--midnight-light);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 14px 24px;
}

.social-proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-proof-item::before {
  content: '★';
  color: var(--gold);
}

/* --- COACHING MODALITIES --- */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.coaching-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.coaching-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--magenta);
}

.coaching-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.coaching-card h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--midnight); }
.coaching-card .focus { color: var(--magenta); font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; display: block; }
.coaching-card p { color: var(--gray-text); font-size: 0.93rem; line-height: 1.7; }
.coaching-card .format-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-mid); font-size: 0.83rem; color: var(--gray-text); }

/* --- FORMATION AREAS --- */
.area-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.area-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.area-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.area-item h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--midnight); }
.area-item p { color: var(--gray-text); font-size: 0.93rem; }

/* --- PAGE HERO (smaller, for inner pages) --- */
.page-hero {
  padding: 160px 24px 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(198, 169, 107, 0.08) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}

.page-hero .lead {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* --- SECTOR TAGS --- */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-tag {
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--midnight);
  transition: var(--transition);
}

.sector-tag:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* --- PREMIUM SECTOR GRID --- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sector-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px 32px;
  background: var(--white);
  border: 1px solid rgba(15, 15, 15, 0.08);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
  cursor: default;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sector-card-index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sector-card-label {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 169, 107, 0.55);
  background: #FDFBF6;
  box-shadow: 0 18px 40px -24px rgba(15, 15, 15, 0.18),
              0 2px 6px rgba(198, 169, 107, 0.06);
}

.sector-card:hover::before {
  width: 100%;
}

.sector-card:hover .sector-card-index {
  color: var(--gold-dark);
  transform: translateX(-2px);
}

@media (max-width: 1024px) {
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .sector-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sector-card {
    padding: 26px 24px;
    gap: 18px;
  }
  .sector-card-label {
    font-size: 1.02rem;
  }
}

/* --- GRID UTILITIES --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- SPACING UTILITIES --- */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--midnight);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(201, 169, 110, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 260px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover { color: var(--white); }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}

.cookie-reject:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 560px) {
  .cookie-banner { padding: 20px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .book-grid { grid-template-columns: 1fr; gap: 32px; }
  .coaching-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px 20px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .book-card { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .social-proof-inner { gap: 20px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .area-item { grid-template-columns: 36px 1fr; gap: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   EDITORIAL HOME — COMPONENTES PREMIUM
   ============================================================ */

.container--narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* --- HEADER EDITORIAL --- */
.header--editorial.scrolled {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(198, 169, 107, 0.12);
}

/* --- HERO EDITORIAL --- */
.hero--editorial {
  min-height: 100vh;
  padding-top: 76px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero--editorial .hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 32px 80px;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(198, 169, 107, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 245, 243, 0.72);
  max-width: 640px;
  margin-bottom: 56px;
}

.hero-ctas-editorial {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* --- BUTTONS — EDITORIAL VARIANTS --- */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(198, 169, 107, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 245, 243, 0.35);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(245, 245, 243, 0.06);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(15, 15, 15, 0.3);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.btn-ghost-dark:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- EYEBROW EDITORIAL (override global) --- */
.eyebrow--editorial {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

/* --- 2. AUTHORITY BAR --- */
.authority-bar {
  background: var(--cream);
  padding: 80px 32px;
  position: relative;
  z-index: 2;
}

.authority-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.authority-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.authority-metric {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
  border-left: 1px solid rgba(15, 15, 15, 0.12);
}

.authority-metric:first-child { border-left: none; padding-left: 0; }

.metric-number {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
}

.metric-number em {
  font-style: italic;
  color: var(--gold-dark);
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.authority-divider {
  height: 1px;
  background: rgba(15, 15, 15, 0.1);
  margin: 56px 0 40px;
}

.authority-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.authority-credentials .dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* --- AUTHORITY LOGOS (third tier of social proof) --- */
.authority-logos-wrap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.authority-logos-label {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 36px;
}

.authority-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
}

.authority-logos .logo-item {
  max-width: 130px;
  height: 50px;
}

.authority-logos-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color var(--transition);
}

.authority-logos-link:hover { color: var(--burgundy); }
.authority-logos-link::after { content: ' →'; }

/* --- 3. STATEMENT BLOCK --- */
.statement-block {
  background: var(--cream);
  padding: 160px 24px;
  text-align: center;
  position: relative;
}

.statement-block .container--narrow { max-width: 960px; }

.statement-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 48px;
}

.statement-text .highlight {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.statement-text .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(198, 169, 107, 0.35);
  z-index: -1;
}

.statement-footer {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--gray-text);
  max-width: 560px;
  margin: 48px auto 0;
  line-height: 1.7;
}

.gold-rule-center-editorial {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* --- 4. SERVICES EDITORIAL --- */
.services-editorial {
  background: var(--black);
  color: var(--cream);
  padding: var(--section-padding);
}

.services-editorial .section-header { text-align: left; margin-bottom: 80px; max-width: 760px; }
.services-editorial .section-header h2 { color: var(--cream); font-weight: 400; }

.services-grid-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 245, 243, 0.1);
}

.service-item {
  position: relative;
  padding: 56px 40px;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 245, 243, 0.1);
  border-right: 1px solid rgba(245, 245, 243, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  cursor: pointer;
  text-decoration: none;
}

.service-item:nth-child(2n) { border-right: none; }

.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.service-item:hover {
  background: rgba(198, 169, 107, 0.04);
}

.service-item:hover::before { width: 100%; }

.service-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.service-item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
}

.service-item p {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 245, 243, 0.65);
  margin-bottom: 32px;
  max-width: 420px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap var(--transition);
  margin-top: auto;
}

.service-item:hover .service-link { gap: 20px; }

.service-link::after {
  content: '→';
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* --- 5. MANIFESTO BLOCK --- */
.manifesto-block {
  background: var(--black-deep);
  color: var(--cream);
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 169, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-block .container--narrow { position: relative; z-index: 1; }

.manifesto-primary {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 72px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--gold);
  margin: 48px auto;
  max-width: 760px;
  letter-spacing: -0.005em;
}

.gold-rule-thick {
  width: 1px;
  height: 64px;
  background: var(--gold);
  margin: 0 auto;
}

/* --- 6. TESTIMONIALS EDITORIAL --- */
.testimonials-editorial {
  background: var(--cream);
  padding: var(--section-padding);
}

.testimonials-editorial .section-header {
  text-align: left;
  margin-bottom: 72px;
  max-width: 720px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15, 15, 15, 0.12);
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
}

.testimonial-card {
  padding: 56px 40px;
  border-right: 1px solid rgba(15, 15, 15, 0.12);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:last-child { border-right: none; }

.testimonial-card:hover {
  background: rgba(198, 169, 107, 0.04);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 8px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--black);
  margin: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 15, 15, 0.12);
}

.author-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}

.author-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- 7. VIDEO SECTION --- */
.video-section-editorial {
  background: var(--black);
  padding: var(--section-padding);
  color: var(--cream);
}

.video-section-editorial .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.video-section-editorial .section-header h2 {
  color: var(--cream);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 16px;
}

.video-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black-soft);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(198, 169, 107, 0.2);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.75) contrast(1.05);
  transition: var(--transition);
}

.video-wrapper:hover img { filter: brightness(0.85) contrast(1.05); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(198, 169, 107, 0.6);
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: var(--transition);
}

.video-wrapper:hover .video-play-btn {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.video-wrapper,
.video-play-btn {
  cursor: pointer;
}

/* --- VIDEO LIGHTBOX MODAL --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.is-open {
  display: flex;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  z-index: 1;
  animation: videoModalIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes videoModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(198, 169, 107, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(198, 169, 107, 0.45);
  background: rgba(15, 15, 15, 0.7);
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition);
  z-index: 2;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  outline: none;
  transform: scale(1.06);
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .video-modal { padding: 16px; }
  .video-modal-close {
    top: auto;
    bottom: -56px;
    right: 50%;
    transform: translateX(50%);
  }
  .video-modal-close:hover,
  .video-modal-close:focus-visible {
    transform: translateX(50%) scale(1.06);
  }
}

/* --- 8. BOOKS EDITORIAL --- */
.books-editorial {
  background: var(--sand-light);
  padding: var(--section-padding);
  position: relative;
}

.books-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand-light) 100%);
  pointer-events: none;
}

.books-editorial > .container { position: relative; z-index: 1; }

.books-editorial .section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.books-grid-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}

.book-editorial-card {
  background: var(--cream);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: start;
  transition: var(--transition);
  border: 1px solid transparent;
}

.book-editorial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 169, 107, 0.4);
  transform: translateY(-4px);
}

.book-editorial-card img {
  width: 160px;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  box-shadow: 8px 12px 32px rgba(15, 15, 15, 0.18);
}

.book-editorial-meta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.book-editorial-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 8px;
}

.book-editorial-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.book-editorial-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 28px;
}

/* --- 9. CTA FINAL --- */
.cta-final {
  background: var(--black);
  color: var(--cream);
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(198, 169, 107, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.cta-final .container--narrow { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 245, 243, 0.7);
  margin-bottom: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* (footer editorial tweaks now consolidated in the main footer rules above) */

/* --- RESPONSIVE — HOME EDITORIAL --- */
@media (max-width: 1024px) {
  .authority-metrics { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .authority-metric:nth-child(3) { border-left: none; padding-left: 0; }
  .authority-logos { grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
  .services-grid-editorial { grid-template-columns: 1fr; }
  .service-item { border-right: none; min-height: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid rgba(15, 15, 15, 0.12); }
  .testimonial-card:last-child { border-bottom: none; }
  .books-grid-editorial { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero--editorial .hero-content { padding: 100px 20px 80px; }
  .hero-eyebrow { font-size: 0.66rem; letter-spacing: 0.22em; }
  .hero-title { margin-bottom: 28px; }
  .hero-subtitle { margin-bottom: 40px; }
  .hero-scroll-indicator { display: none; }
  .authority-bar { padding: 56px 20px; }
  .authority-metrics { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .authority-metric { padding: 0 8px; }
  .authority-metric:nth-child(odd) { border-left: none; padding-left: 0; }
  .authority-metric:nth-child(even) { border-left: 1px solid rgba(15, 15, 15, 0.12); }
  .authority-credentials { gap: 12px; font-size: 0.68rem; }
  .authority-logos { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .authority-logos-wrap { margin-top: 48px; padding-top: 36px; }
  .authority-logos-label { font-size: 0.66rem; margin-bottom: 28px; }
  .statement-block { padding: 96px 20px; }
  .statement-text { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .manifesto-block { padding: 96px 20px; }
  .services-editorial .section-header,
  .testimonials-editorial .section-header { margin-bottom: 48px; }
  .service-item { padding: 40px 24px; }
  .testimonial-card { padding: 40px 24px; }
  .book-editorial-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; justify-items: center; text-align: left; }
  .book-editorial-card img { width: 140px; }
  .cta-final { padding: 96px 20px; }
  .hero-ctas-editorial .btn-gold,
  .hero-ctas-editorial .btn-ghost,
  .cta-final-ctas .btn-gold,
  .cta-final-ctas .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}

/* --- TEDX VIDEO BLOCK --- */
.tedx-video-block {
  padding: 80px 24px;
}

.tedx-video-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.tedx-video-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--midnight);
  margin-bottom: 40px;
  line-height: 1.3;
}

.tedx-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tedx-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

.tedx-video-caption {
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}
}

/* ============================================================
   STAGE BAND — editorial full-bleed photo (conferencias.html)
   ============================================================ */
.stage-band {
  position: relative;
  background: var(--black);
  overflow: hidden;
  line-height: 0;
}

.stage-band-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 620px;
  overflow: hidden;
}

.stage-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.82) contrast(1.04);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.8s ease;
}

.stage-band:hover .stage-band-media img {
  transform: scale(1.03);
  filter: brightness(0.9) contrast(1.06);
}

.stage-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}

.stage-band-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 64px;
  color: var(--cream);
  z-index: 1;
  max-width: 880px;
  line-height: 1.4;
}

.stage-band-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.stage-band-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.stage-band-text {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: 0.005em;
  margin: 0;
}

@media (max-width: 900px) {
  .stage-band-media {
    aspect-ratio: 4 / 3;
    max-height: 520px;
  }
  .stage-band-caption {
    padding: 32px 28px;
    max-width: 100%;
  }
  .stage-band-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .stage-band-media {
    aspect-ratio: 3 / 4;
    max-height: 560px;
  }
  .stage-band-media img {
    object-position: center 30%;
  }
  .stage-band-caption {
    padding: 26px 22px;
  }
  .stage-band-eyebrow::before {
    width: 20px;
    margin-right: 10px;
  }
}

/* training-band: overrides for formacion.html (vibrant colored photo) */
.training-band .stage-band-media img {
  object-position: center 30%;
  filter: brightness(0.80) contrast(1.04) saturate(0.90);
}

.training-band:hover .stage-band-media img {
  filter: brightness(0.88) contrast(1.06) saturate(0.94);
}

.training-band .stage-band-media::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

/* coaching-band: overrides for coaching.html (portrait retrato) */
.coaching-band .stage-band-media img {
  object-position: center 20%;
  filter: brightness(0.82) contrast(1.05) saturate(0.88);
}

.coaching-band:hover .stage-band-media img {
  filter: brightness(0.90) contrast(1.07) saturate(0.92);
}

.coaching-band .stage-band-media::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.52) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* ===================================================
   MEDIOS · PRESENCIA EN MEDIOS (medios.html)
   =================================================== */

/* Logos bar */
.media-logos-bar {
  padding: 48px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
}
.media-logos-bar .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.media-logos-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.media-logos-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
}
.media-logo-item {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--midnight);
  letter-spacing: 0.02em;
  font-weight: 500;
  font-style: italic;
}
.media-logo-sep {
  color: var(--gold);
  font-weight: 300;
  opacity: 0.7;
}

/* Section base */
.media-section {
  padding: 100px 24px;
}
.media-section .container { max-width: 1200px; margin: 0 auto; }

/* TEDx featured */
.media-tedx {
  padding: 100px 24px;
}
.media-tedx .container { max-width: 1200px; margin: 0 auto; }
.media-tedx .section-header { text-align: left; margin: 0 auto 48px; }
.media-tedx .section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  margin: 12px 0 0;
}
.tedx-featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}
.tedx-featured-video {
  position: relative;
}
.tedx-poster {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  background: #000;
  text-decoration: none;
}
.tedx-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.tedx-poster:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}
.tedx-poster-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--midnight);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.tedx-poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.3s ease;
}
.tedx-poster-play::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.tedx-poster-play svg {
  position: relative;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 16px;
  box-sizing: border-box;
  transition: background 0.3s ease, transform 0.3s ease;
}
.tedx-poster:hover .tedx-poster-play::before {
  background: rgba(0, 0, 0, 0.28);
}
.tedx-poster:hover .tedx-poster-play svg {
  background: var(--gold);
  color: var(--midnight);
  transform: scale(1.08);
}
.tedx-featured-text { color: rgba(255, 255, 255, 0.85); }
.tedx-featured-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.tedx-featured-body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.tedx-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.tedx-featured-tags span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(198, 169, 107, 0.45);
  padding: 7px 14px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .tedx-featured-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Podcasts grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.podcast-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: 3px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.podcast-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-left-color: var(--magenta);
}
.podcast-card-header { margin-bottom: 16px; }
.podcast-card-medium {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.podcast-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--midnight);
  margin: 0 0 8px;
}
.podcast-card-host {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--gray-text);
  margin: 0;
  font-style: italic;
}
.podcast-card-body {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 20px;
  flex-grow: 1;
}
.podcast-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
}
.podcast-card-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--midnight);
  border: 1px solid var(--gray-mid);
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
}
.podcast-card-link:hover {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.podcast-pending-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  background: var(--gray-light);
  border: 1px dashed var(--gray-mid);
  padding: 7px 14px;
  border-radius: 999px;
  font-style: italic;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.video-grid-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  overflow: hidden;
}
.video-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.video-grid-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--midnight);
  overflow: hidden;
}
.video-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.video-grid-card:hover .video-grid-thumb img { transform: scale(1.05); }
.video-grid-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 5px;
  transition: var(--transition);
  box-shadow: 0 0 0 2px rgba(198, 169, 107, 0.4);
}
.video-grid-card:hover .video-grid-play {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 169, 107, 0.25);
}
.video-grid-body { padding: 24px 22px 26px; }
.video-grid-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.video-grid-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--midnight);
  margin: 0 0 10px;
}
.video-grid-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
}

/* Press featured · Marie Claire */
.press-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 4px solid var(--gold);
  padding: 48px;
  margin: 48px 0 56px;
}
.press-featured-side {
  border-right: 1px solid var(--gray-mid);
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.press-featured-medium {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--midnight);
  font-style: italic;
  font-weight: 500;
}
.press-featured-role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 14px;
}
.press-featured-main { padding-left: 0; }
.press-featured-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--midnight);
  margin: 0 0 28px;
}
.press-featured-subhead {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 0 0 16px;
}
.press-article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.press-article-list li {
  border-top: 1px solid var(--gray-mid);
}
.press-article-list li:last-child { border-bottom: 1px solid var(--gray-mid); }
.press-article-list a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: var(--midnight);
  transition: var(--transition);
}
.press-article-list a:hover {
  padding-left: 10px;
  color: var(--magenta);
}
.press-article-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
.press-article-meta {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* Press grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.press-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.press-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.press-card-medium {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.press-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--midnight);
  margin: 0 0 14px;
}
.press-card-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin: 0 0 20px;
  flex-grow: 1;
}
.press-card-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--midnight);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: var(--transition);
}
.press-card-link:hover {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

/* Home teaser band */
.media-teaser-band {
  padding: 100px 24px;
  background: var(--gray-light);
}
.media-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.media-teaser-text .eyebrow { color: var(--gold-dark); }
.media-teaser-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  color: var(--midnight);
  margin: 14px 0 20px;
}
.media-teaser-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.media-teaser-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.media-teaser-logos span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--midnight);
}
.media-teaser-logos .sep {
  color: var(--gold);
  opacity: 0.6;
  font-style: normal;
}

/* Responsive */
@media (max-width: 900px) {
  .media-section { padding: 72px 20px; }
  .media-tedx { padding: 72px 20px; }
  .press-featured {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 28px;
  }
  .press-featured-side {
    border-right: none;
    border-bottom: 1px solid var(--gray-mid);
    padding-right: 0;
    padding-bottom: 28px;
  }
  .media-teaser-band { padding: 72px 20px; }
  .media-teaser-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .media-logos-list { gap: 10px 12px; }
  .media-logo-item { font-size: 1rem; }
  .podcast-grid, .video-grid, .press-grid {
    grid-template-columns: 1fr;
  }
  .press-featured-lead { font-size: 1.1rem; }
}

/* ===================================================
   VIDCARDS — Premium video media cards (medios.html)
   =================================================== */

.vidcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.vidcard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vidcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.13), 0 6px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(198, 169, 107, 0.55);
}

/* Thumbnail */
.vidcard-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--midnight);
  flex-shrink: 0;
}

.vidcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition:
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  filter: brightness(0.9) saturate(0.85);
}

.vidcard:hover .vidcard-thumb img {
  transform: scale(1.06);
  filter: brightness(0.78) saturate(0.78);
}

/* Category badge top-left */
.vidcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(198, 169, 107, 0.88);
  padding: 5px 11px;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Play button */
.vidcard-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(10, 6, 20, 0.58);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  color: var(--white);
  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vidcard:hover .vidcard-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.13);
}

/* Body */
.vidcard-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vidcard-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.vidcard-title {
  font-family: var(--font-serif);
  font-size: 1.14rem;
  line-height: 1.3;
  color: var(--midnight);
  margin: 0 0 12px;
  font-weight: 500;
}

.vidcard-desc {
  font-size: 0.875rem;
  line-height: 1.68;
  color: var(--gray-text);
  margin: 0 0 22px;
  flex-grow: 1;
}

/* CTA */
.vidcard-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--midnight);
  align-self: flex-start;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.vidcard-cta::after {
  content: '\00a0→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.vidcard:hover .vidcard-cta {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

.vidcard:hover .vidcard-cta::after {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 960px) {
  .vidcards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .vidcards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vidcard-title { font-size: 1.08rem; }
}


