/* ── Hero Home ───────────────────────────────────────────────────────────────── */
.hero-home {
  padding: var(--space-lg) 0 var(--space-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Capa 1 — gradientes cálidos laterales */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 95% 50%, rgba(196, 120, 90, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 70% at 5% 50%, rgba(184, 149, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Capa 2 — inicial "L" como marca de agua editorial */
.hero-home::after {
  content: 'L';
  position: absolute;
  right: -4vw;
  bottom: -8vh;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 52vw;
  line-height: 1;
  color: var(--color-ink);
  opacity: 0.022;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Todo el contenido por encima de las texturas */
.hero-home__layout,
.hero-home__divider {
  position: relative;
  z-index: 1;
}

.hero-home__layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  align-items: center;
  min-height: 68vh;
}

/* Eyebrow con línea decorativa */
.hero-home__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-home__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Nombre grande */
.hero-home__name {
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.hero-home__name-first {
  color: var(--color-ink);
}

.hero-home__name-last {
  color: var(--color-ink);
  padding-left: 0.18em;
  position: relative;
}

.hero-home__name-last::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 18px;
  opacity: 0.7;
}

/* Subtítulo */
.hero-home__subtitle {
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ink-mid);
  max-width: 420px;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

/* Acciones: CTA + stat */
.hero-home__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero-home__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-home__stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
}

.hero-home__stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  line-height: 1.4;
}

/* Imagen con marco editorial */
.hero-home__image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-home__image-frame {
  position: relative;
}

.hero-home__image-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -18px;
  right: 18px;
  bottom: -18px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  z-index: 0;
  pointer-events: none;
}

.hero-home__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-home__img-ornament {
  position: absolute;
  bottom: -28px;
  right: 28px;
  font-size: 2.5rem;
  color: var(--color-gold);
  opacity: 0.30;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

/* Divider inferior */
.hero-home__divider {
  margin-top: var(--space-xl);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-home {
    padding: var(--space-md) 0;
  }

  .hero-home__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-lg);
  }

  .hero-home__image-wrap {
    justify-content: center;
    order: -1;
  }

  .hero-home__portrait {
    height: 260px;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-home__image-frame::before {
    display: none;
  }

  .hero-home__img-ornament {
    display: none;
  }

  .hero-home__name {
    font-size: clamp(2.6rem, 10vw, 4rem);
    margin-bottom: var(--space-md);
  }

  .hero-home__eyebrow-wrap {
    margin-bottom: var(--space-md);
  }

  .hero-home__subtitle {
    max-width: 100%;
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
  }

  .hero-home__divider {
    margin-top: var(--space-lg);
  }
}

/* ── Horizonte: Grid de libros (carrusel Swiper) ─────────────────────────── */
.gl {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gl__header {
  margin-bottom: var(--space-xl);
}

.gl__titulo {
  margin-top: var(--space-sm);
  line-height: 1.1;
}

/* Track contenido en el ancho del container */
.gl__track {
  position: relative;
}

.gl-swiper {
  overflow: hidden;
}

/* Slide — 3 visibles + pico del 4to */
.gl-slide {
  height: auto;
}

/* Tarjeta del libro */
.gl-card {
  display: flex;
  flex-direction: column;
  cursor: grab;
}

.gl-card:active {
  cursor: grabbing;
}

/* Imagen con overlay en hover */
.gl-card__visual {
  position: relative;
  overflow: hidden;
  display: block;
  height: 375px;
  /* background: var(--color-bg-darker); */
  text-decoration: none;
}

.gl-card__img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease-soft);
}

.gl-card__visual:hover .gl-card__img {
  transform: scale(1.05);
}

.gl-card__img-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--color-bg-darker);
}

/* Overlay "Ver ficha" — aparece en hover */
.gl-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s var(--ease-soft);
}

.gl-card__visual:hover .gl-card__overlay {
  opacity: 1;
}

.gl-card__overlay-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 0.32s var(--ease-soft);
}

.gl-card__visual:hover .gl-card__overlay-btn {
  transform: translateY(0);
}

/* Pie de tarjeta: título + botón compra */
.gl-card__foot {
  padding: 12px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gl-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-ink);
  line-height: 1.3;
}

.gl-card__buy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.22s, gap 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gl-card__buy:hover {
  color: var(--color-ink);
}

/* ── Controles: flechas + bullets ────────────────────────────────────────── */

/* Bullets */
.gl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.gl-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ink);
  opacity: 0.20;
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}

.gl-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-accent);
  transform: scale(1.5);
}

/* Flechas */
.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(184, 149, 90, 0.40);
  background: transparent;
  color: var(--color-ink-mid);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  flex-shrink: 0;
}

.gl-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(184, 149, 90, 0.06);
}

.gl-btn.swiper-button-disabled {
  opacity: 0.30;
  pointer-events: none;
}

/* Contenedor inferior: bullets al centro, flechas a la derecha */
.gl__controls {
  display: flex;
  align-items: center;
  margin-top: var(--space-md);
}

.gl__controls-bullets {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-left: 90px;
  /* compensa el ancho de las flechas para centrar los bullets visualmente */
}

.gl__controls-arrows {
  display: flex;
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* .gl-card__visual { height: 300px; } */
}

/* Grid de libros en home */
.libros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Card libro */
.card-libro {
  background: var(--color-bg-dark);
  border: 1px solid rgba(184, 149, 90, 0.20);
  transition: box-shadow 0.28s, border-color 0.28s;
  display: flex;
  flex-direction: column;
}

.card-libro:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 149, 90, 0.45);
}

.card-libro__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.card-libro__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-libro__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 6px;
}

.card-libro__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.card-libro__desc {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  flex: 1;
  margin-bottom: var(--space-md);
}

.card-libro__cta {
  margin-top: auto;
}

/* ── Horizonte: Cita destacada ────────────────────────────────────────────── */
.cq {
  background: var(--color-ink);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Comillas gigantes de fondo */
.cq__bg-mark {
  position: absolute;
  left: -2vw;
  top: -10%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 60vw;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Eyebrow centrado con reglas */
.cq__eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.cq__rule {
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(184, 149, 90, 0.35);
}

.cq__eyebrow {
  color: var(--color-gold-light);
  margin-bottom: 0;
}

/* Grid de frases */
.cq__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2xl);
}

/* 1 frase — centrada, máximo impacto */
.cq--single .cq__grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

/* 2 frases — dos columnas iguales */
.cq--duo .cq__grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* 3+ frases — primera ocupa 2 cols, resto 1 col c/u */
.cq--multi .cq__grid {
  grid-template-columns: 1fr 1fr;
}

.cq--multi .cq__item:first-child {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(184, 149, 90, 0.18);
  padding-bottom: var(--space-2xl);
}

.cq--multi .cq__item:first-child .cq__texto {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

/* Cada cita */
.cq__item {
  border: none;
  padding: 0;
  margin: 0;
}

.cq__open-mark {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--color-gold);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.cq__texto {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-bg);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.cq__atribucion {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cq__dash {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 860px) {

  .cq--duo .cq__grid,
  .cq--multi .cq__grid {
    grid-template-columns: 1fr;
  }

  .cq--multi .cq__item:first-child {
    grid-column: auto;
  }

  .gl__header {
  margin-bottom: var(--space-md);
}
}

/* Frases */
.frases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.frase-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid rgba(184, 149, 90, 0.15);
}

.frase-card--accent {
  background: var(--color-bg-dark);
}

.frase-card--sage {
  background: rgba(122, 140, 110, 0.06);
}

.frase-card__ornament {
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.frase-card__texto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ink-mid);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.frase-card__atribucion {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sage);
}

/* ── Horizonte: Newsletter ────────────────────────────────────────────────── */
.ns {
  /* background: var(--color-bg-dark); */
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* @ decorativa de fondo */
.ns__bg-deco {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48vw;
  line-height: 1;
  color: var(--color-ink);
  opacity: 0.028;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Layout dos columnas */
.ns__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Columna texto */
.ns__titulo {
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.1;
}

.ns__desc {
  font-style: italic;
  color: var(--color-ink-mid);
  margin-bottom: var(--space-lg);
}

.ns__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ns__perks li {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.ns__perk-dot {
  font-size: 0.4rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Columna formulario */
.ns__form-side {
  background: var(--color-bg);
  padding: var(--space-xl);
  border: 1px solid rgba(184, 149, 90, 0.20);
}

.ns__label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}

.ns__field-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.ns__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44, 24, 16, 0.25);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.25s;
}

.ns__input::placeholder {
  color: rgba(44, 24, 16, 0.35);
}

.ns__input:focus {
  border-bottom-color: var(--color-accent);
}

.ns__btn {
  width: 100%;
  justify-content: center;
  position: relative;
}

.ns__btn-loading {
  display: none;
}

.ns__btn.is-loading .ns__btn-text {
  display: none;
}

.ns__btn.is-loading .ns__btn-loading {
  display: inline;
}

.ns__msg {
  font-size: var(--text-sm);
  margin-top: 8px;
  padding: 10px 14px;
}

.ns__msg--ok {
  color: var(--color-sage);
  background: rgba(122, 140, 110, 0.10);
}

.ns__msg--error {
  color: var(--color-accent);
  background: rgba(196, 120, 90, 0.08);
}

.ns__privacy {
  font-size: var(--text-xs);
  color: rgba(44, 24, 16, 0.38);
  letter-spacing: 0.04em;
  margin-top: 14px;
}

/* Estado éxito: reemplaza el formulario */
.ns__success {
  text-align: center;
  padding: var(--space-lg) 0;
}

.ns__success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage);
  color: var(--color-sage);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.ns__success p {
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ink-mid);
}

@media (max-width: 860px) {
  .ns__inner {
    grid-template-columns: 1fr;
  }

  .ns__form-side {
    padding: var(--space-lg);
  }

  .ns__inner {
    gap: var(--space-lg);
  }

}

/* CTA Contacto */
.cta-contacto {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: var(--color-bg-darker);
}

.cta-contacto h2 {
  margin-bottom: var(--space-sm);
}

.cta-contacto p {
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #4a7c59;
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-wpp:hover {
  background: #3a6347;
  color: var(--color-bg);
}

.btn-wpp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .libros-grid                { grid-template-columns: repeat(2, 1fr); }
  .frases-grid                { grid-template-columns: 1fr; }
  .gl__controls-arrows        { display: none; }
  .gl__controls-bullets       { padding-left: 0; }
  .gl__controls               { justify-content: center; }
  .ns__form-side              { padding: var(--space-lg); }

  /* ── Hero mobile: diseño editorial ────────────────────────────────────────── */
  .hero-home {
    padding: var(--space-lg) 0 var(--space-md);
  }
  .hero-home::before,
  .hero-home::after { display: none; }

  .hero-home__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-lg);
    align-items: center;
  }

  /* Imagen: marco editorial centrado, estilo portada de libro */
  .hero-home__image-wrap {
    order: -1;
    justify-content: center;
  }
  .hero-home__image-frame {
    display: inline-block;
    position: relative;
    border: 1px solid rgba(184,149,90,0.42);
    padding: 7px;
  }
  .hero-home__image-frame::before { display: none; }
  .hero-home__image-frame::after {
    content: '';
    position: absolute;
    inset: -11px;
    border: 1px solid rgba(184,149,90,0.18);
    pointer-events: none;
  }
  .hero-home__portrait {
    display: block;
    width: clamp(155px, 50vw, 205px);
    height: auto;
    max-width: none;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: top center;
    margin: 0;
  }
  .hero-home__img-ornament { display: none; }

  /* Texto: centrado y compacto */
  .hero-home__content { text-align: center; }

  .hero-home__eyebrow-wrap {
    justify-content: center;
    margin-bottom: var(--space-sm);
  }
  .hero-home__rule { display: none; }

  .hero-home__name {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.9;
    margin-bottom: var(--space-sm);
  }
  .hero-home__name-last::after {
    margin: 10px auto 0;
  }

  .hero-home__subtitle {
    text-align: center;
    font-size: var(--text-sm);
    line-height: 1.75;
    max-width: 270px;
    margin: 0 auto var(--space-md);
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-home__stat {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .hero-home__stat-num   { font-size: 1.9rem; }
  .hero-home__stat-label { font-size: 0.62rem; }

  .hero-home__divider { margin-top: var(--space-md); }
}

@media (max-width: 480px) {
  .libros-grid       { grid-template-columns: 1fr; }
  .cta-contacto      { padding: var(--space-lg) 0; }
  .sa__stats         { gap: var(--space-sm); }
  .sa__stat-num      { font-size: 1.6rem; }

  .hero-home         { padding: var(--space-md) 0 var(--space-sm); }
  .hero-home__portrait {
    width: clamp(135px, 44vw, 180px);
  }
  .hero-home__name {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }
  .hero-home__subtitle {
    max-width: 240px;
    font-size: 0.82rem;
  }
}

/* ── Horizonte: Sobre la autora ───────────────────────────────────────────── */
.sa {
  background: var(--color-bg-darker);
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

/* Título centrado */
.sa__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.sa__titulo {
  margin-top: var(--space-sm);
  line-height: 1.1;
}

/* Layout: texto amplio + aside con stats */
.sa__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-2xl);
  align-items: start;
}

.sa__content p {
  font-size: var(--text-base);
  line-height: 1.95;
  max-width: 68ch;
}

.sa__content {
  margin-bottom: var(--space-lg);
}

.sa__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-mid);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.5);
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.sa__cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  gap: 16px;
}

.sa__cta svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.sa__cta:hover svg {
  transform: translateX(4px);
}

/* ── Stats ── */
.sa__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(184, 149, 90, 0.20);
}

.sa__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sa__stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
  min-width: 52px;
}

.sa__stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  line-height: 1.45;
}

.sa__stat-sep {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .sa__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .sa__aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 0;
    border-top: none;
  }

  .sa__stats {
    flex-direction: row;
    border-top: 1px solid rgba(184, 149, 90, 0.20);
    padding-top: var(--space-md);
    width: 100%;
  }

  .sa__stat-sep {
    display: block;
    width: 1px;
    height: 32px;
    background: rgba(184, 149, 90, 0.25);
    align-self: center;
  }
}

@media (max-width: 480px) {
  .sa__stats {
    flex-wrap: wrap;
  }

  .sa__stat-sep {
    display: none;
  }
}