/* ============================================================
   LOS HIJOS DE LA LUZ — Estilos principales
   Tipografía: Cormorant Garamond (display) + Jost (body)
   Paleta: crema cálido + dorado + tinta oscura
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-mid:    #B8942E;
  --gold-dark:   #8B6914;
  --cream:       #FAF7F2;
  --cream-dark:  #F2EDE4;
  --ink:         #0F0D0B;
  --ink-muted:   #2C2820;
  --ink-subtle:  #6B6156;
  --dark-bg:     #1A1714;
  --dark-bg2:    #211E1A;
  --border:      rgba(201,168,76,0.18);
  --border-dark: rgba(201,168,76,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg: 12px;

  --max-w: 1200px;
  --section-pad: 72px 40px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilidades ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 32px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* ── Botones ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid rgba(26,23,20,0.2);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border: none;
  padding: 12px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border);
}
.btn-ghost:hover { color: var(--gold-dark); }

/* ── Navegación ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo .logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }

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

.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang-switcher button {
  font-family: var(--font-body);
  font-size: 18px;           /* tamaño del emoji bandera */
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}
/* Tooltip con nombre del idioma al hacer hover */
.lang-switcher button::after {
  content: attr(data-label);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: var(--ink);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 20;
}
.lang-switcher button:hover::after { opacity: 1; }
.lang-switcher button:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
}
.lang-switcher button.active {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.35);
}
/* En mobile: mostrar tooltip arriba para no salirse de pantalla */
@media (max-width: 680px) {
  .lang-switcher button::after {
    bottom: auto;
    top: -28px;
  }
}

.btn-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-live:hover { background: var(--gold-dark); }
/* En mobile muy chico: ocultar el texto "En vivo", dejar solo el dot */
@media (max-width: 400px) {
  .btn-live span[data-i18n] { display: none; }
  .btn-live { padding: 8px 10px; }
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e85d5d;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* Hamburger móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  padding: 72px 56px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid var(--border);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 380px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-right {
  position: relative;
  background: linear-gradient(145deg, #211E1A 0%, #16120F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-cross-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
  pointer-events: none;
}
.hero-cross-bg svg { width: 60%; height: 70%; }

.hero-quote-wrap {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
}
.hero-quotemark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
  text-align: left;
}
.hero-quote-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(250,247,242,0.9);
}
.hero-quote-ref {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-ornament-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
  opacity: 0.5;
}

/* ── Sección Recursos ───────────────────────────────────── */
.section { padding: var(--section-pad); border-bottom: 1px solid var(--border); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.resource-card {
  background: var(--cream);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
  cursor: pointer;
}
.resource-card:hover { background: rgba(201,168,76,0.05); }

.resource-icon {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.resource-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}
.resource-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
}
.resource-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap 0.2s;
}
.resource-card:hover .resource-link { gap: 10px; }

/* ── Testimonios ────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-label::after { background: rgba(201,168,76,0.15); }
.testimonials-section .section-title { color: rgba(250,247,242,0.92); }
.testimonials-section .section-title em { color: var(--gold-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.28); }
.testimonial-num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-divider {
  height: 1px;
  background: rgba(201,168,76,0.12);
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250,247,242,0.82);
  flex: 1;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.04em;
}
.testimonials-cta { text-align: center; }

/* ── Oraciones lista ───────────────────────────────────── */
.oraciones-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.oracion-row {
  background: var(--cream);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.oracion-row:hover { background: rgba(201,168,76,0.05); }
.oracion-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}
.oracion-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pill {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pill.pill-pdf {
  color: var(--gold-dark);
  border-color: rgba(201,168,76,0.3);
}
.pill.pill-pdf:hover {
  background: var(--gold-dark);
  color: var(--cream);
  border-color: var(--gold-dark);
}

/* ── CTA Apoyo ──────────────────────────────────────────── */
.cta-section {
  padding: 96px 40px;
  text-align: center;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-bg-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 400px;
  color: var(--gold);
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-ornament {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 12px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-dark); }
.cta-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 460px;
  margin: 0 auto 36px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Sección Quiénes Somos (interior) ──────────────────── */
.quienes-hero {
  background: var(--dark-bg);
  padding: 80px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.quienes-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: rgba(250,247,242,0.92);
  margin: 16px 0 20px;
}
.quienes-hero h1 em { font-style: italic; color: var(--gold-light); }
.quienes-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.content-section {
  padding: 72px 40px;
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}
.content-section h2 em { font-style: italic; color: var(--gold-dark); }
.content-section p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section strong { font-weight: 500; color: var(--ink); }

.figures-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: 48px 0;
}
.figure-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.figure-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.figure-card p {
  font-size: 12px;
  color: var(--ink-subtle);
  letter-spacing: 0.05em;
}

/* ── Página Testimonios ─────────────────────────────────── */
.testimonials-page-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-full {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  transition: border-color 0.2s;
}
.testimonial-full:hover { border-color: rgba(201,168,76,0.35); }
.testimonial-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.testimonial-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.testimonial-body p:last-child { margin-bottom: 0; }
.testimonial-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ── Página Contactos ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.contact-block {
  background: var(--cream);
  padding: 40px 36px;
}
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.contact-value {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-muted);
}
.contact-value a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(26,23,20,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Hermana Ángela (página) ────────────────────────────── */
.angela-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  padding: 72px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.angela-sidebar {
  position: sticky;
  top: 88px;
}
.angela-photo-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.angela-photo-placeholder {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
}
.angela-links { display: flex; flex-direction: column; gap: 8px; }
.angela-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.6;
}
.angela-link:hover { color: var(--ink); }

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 40px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.book-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: border-color 0.2s;
}
.book-card:hover { border-color: rgba(201,168,76,0.35); }
.book-cover {
  width: 72px;
  height: 96px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  opacity: 0.6;
}
.book-info { flex: 1; }
.book-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.book-author {
  font-size: 12px;
  color: var(--ink-subtle);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.book-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.book-buy { display: flex; flex-direction: column; gap: 4px; }
.book-buy a {
  font-size: 12px;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.book-buy a:hover { color: var(--ink); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 56px 40px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 32px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: rgba(250,247,242,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo .logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,247,242,0.38);
  max-width: 240px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(250,247,242,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,247,242,0.25);
}
.footer-langs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-langs button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(250,247,242,0.35);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
}
.footer-langs button:hover,
.footer-langs button.active { color: var(--gold-light); }

/* ── Page Header genérico ──────────────────────────────── */
.page-header {
  padding: 64px 40px 56px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin: 14px 0 18px;
}
.page-header h1 em { font-style: italic; color: var(--gold-dark); }
.page-header p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Animaciones de entrada ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  :root { --section-pad: 56px 28px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 52px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-right { min-height: 260px; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .angela-grid { grid-template-columns: 1fr; }
  .angela-sidebar { position: static; }
  .books-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* oraciones */
  .oracion-row { flex-wrap: wrap; gap: 10px; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --section-pad: 40px 20px; }

  /* Nav */
  .container { padding: 0 20px; }
  .site-nav { padding: 0 16px; height: 56px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    gap: 4px;
    z-index: 99;
    overflow-y: auto;
    box-shadow: none;
  }
  .nav-links.open li a {
    display: block;
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }

  /* Selector de idioma en mobile: más compacto */
  .lang-switcher button { padding: 4px 4px; font-size: 20px; }
  .nav-right { gap: 8px; }

  /* Hero */
  .hero-left { padding: 40px 20px; gap: 20px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 16px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px; }
  .hero-right { min-height: 220px; }
  .hero-quote-text { font-size: 19px; }
  .hero-quotemark { font-size: 60px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .resource-card { padding: 24px 20px; }

  /* Testimonios */
  .testimonials-section { padding: 40px 20px; }
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 16px; }

  /* Oraciones lista */
  .oracion-row { padding: 16px 20px; }
  .oracion-name { font-size: 16px; }
  .oracion-actions { flex-shrink: 0; }

  /* CTA */
  .cta-section { padding: 56px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { text-align: center; justify-content: center; }
  .cta-title { font-size: 32px; }

  /* Sections */
  .section { padding: 40px 20px; }
  .section-title { font-size: 26px; margin-bottom: 28px; }
  .section-label { font-size: 10px; }

  /* Page header */
  .page-header { padding: 40px 20px 32px; }
  .page-header h1 { font-size: 28px; }

  /* Content sections */
  .content-section { padding: 40px 20px; }
  .content-section h2 { font-size: 24px; }

  /* Figures */
  .figures-row { grid-template-columns: 1fr; }

  /* Ángela */
  .angela-grid { padding: 40px 20px; }
  .angela-photo-frame { max-width: 200px; margin: 0 auto 20px; }
  .books-grid { margin: 0 20px 40px; padding-bottom: 40px; }
  .book-card { flex-direction: column; }
  .book-cover { width: 100%; height: 120px; }

  /* Contacto */
  .contact-block { padding: 28px 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .site-footer { padding: 40px 20px 24px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 12px;
  }
  .footer-langs { flex-wrap: wrap; gap: 6px; }
  .footer-brand p { max-width: 100%; }
}

/* Mobile muy pequeño */
@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .site-nav { padding: 0 12px; }
  .lang-switcher button { font-size: 17px; padding: 3px; }
  .btn-live { padding: 7px 10px; }
}
