/* Dra. Carolina Villa — tema cálido, mobile-first */
:root {
  --bg-page: #fffefb;
  --bg-footer: #f5f0e8;
  --bg-muted: #faf6f1;
  --bg-card: #ffffff;
  --bg-warm: #f3ede4;
  --border-soft: rgba(107, 85, 62, 0.12);
  --brand-gold: #c9a24d;
  --brand-gold-dark: #a67c3a;
  --brand-warm: #7a6348;
  --brand-cream: #e8dfd2;
  --ink: #2c2419;
  --ink-muted: rgba(44, 36, 25, 0.72);
  --shadow-soft: 0 16px 40px -28px rgba(74, 58, 40, 0.18);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#servicios,
#equipo,
#boutique,
#faq,
#resenas {
  scroll-margin-top: 5rem;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-page);
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-soft);
}

.section-alt {
  background-color: var(--bg-muted);
}

.section-pad {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 640px) {
  .section-pad {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.card {
  border-radius: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -30px rgba(74, 58, 40, 0.2);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 10px 28px -14px rgba(166, 124, 58, 0.5);
  transition: filter 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--bg-page);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border-soft);
  transition: background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-muted);
  border-color: rgba(141, 122, 93, 0.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Header / nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 251, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  min-height: var(--header-h);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.5rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.logo-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-header img {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 14px -6px rgba(166, 124, 58, 0.45);
  margin: 0;
}

@media (min-width: 640px) {
  .logo-header img {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.logo-footer img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: rgba(44, 36, 25, 0.72);
}

.nav-desktop a {
  text-decoration: none;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--brand-warm);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-mobile-panel {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-page);
  padding: 0.75rem 1rem 1.25rem;
}

.nav-mobile-panel.is-open {
  display: block;
}

.nav-mobile-panel a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.nav-mobile-panel a:hover,
.nav-mobile-panel a.is-active {
  background: var(--bg-muted);
  color: var(--brand-warm);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* ── Hero Dra. ── */
.hero-dra-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  background: transparent;
}

.hero-dra-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  border: 3px solid var(--brand-gold);
  box-shadow:
    0 16px 40px rgba(74, 58, 40, 0.12),
    0 0 0 6px rgba(201, 162, 77, 0.12);
}

/* ── Equipo: fotos uniformes, sin recortar el rostro ── */
.team-card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.team-initials {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #faf6f1 0%, #f0e8dc 100%);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--brand-warm);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px -12px rgba(186, 136, 71, 0.55);
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ── Hero premium ── */
.hero-premium {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-warm);
}

@media (min-width: 768px) {
  .hero-premium {
    min-height: min(85vh, 760px);
  }
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-premium__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-premium__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 254, 251, 0.88) 0%,
    rgba(250, 246, 241, 0.82) 45%,
    rgba(243, 237, 228, 0.55) 100%
  );
}

@media (min-width: 1024px) {
  .hero-premium__overlay {
    background: linear-gradient(
      100deg,
      rgba(255, 254, 251, 0.96) 0%,
      rgba(250, 246, 241, 0.88) 40%,
      rgba(243, 237, 228, 0.35) 70%,
      transparent 100%
    );
  }
}

.hero-premium__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1rem 3.5rem;
}

@media (min-width: 640px) {
  .hero-premium__inner {
    padding: 3.5rem 1rem 4.5rem;
  }
}

.hero-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(201, 162, 77, 0.4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-warm);
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  padding: 0 1rem 1.5rem;
}

.hero-stats__inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 77, 0.25);
  border-radius: 1rem;
}

/* ── Tarjetas de servicio (clickeables) ── */
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

a.service-card,
.service-card--link {
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -32px rgba(74, 58, 40, 0.22);
  border-color: rgba(201, 162, 77, 0.45);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--bg-warm);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.service-card__media img.is-contain,
.service-card__media--contain img {
  object-fit: contain;
  object-position: center;
  background: var(--bg-warm);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  font-family: "Playfair Display", serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-warm);
  border: 1px solid rgba(201, 162, 77, 0.45);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.25rem;
}

.service-card__cta {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-warm);
}

.service-card:hover .service-card__cta {
  color: var(--ink);
}

/* ── Split imagen + texto ── */
.split-section {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section--reverse .split-section__media {
    order: 2;
  }
}

.split-section__media {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 320px;
  min-height: 200px;
  overflow: hidden;
  background: var(--bg-warm);
}

@media (min-width: 900px) {
  .split-section__media {
    aspect-ratio: auto;
    min-height: 300px;
    max-height: 380px;
  }

  .split-section {
    align-items: stretch;
  }

  .split-section__media,
  .split-section__content {
    min-height: 300px;
  }
}

.split-section__media img,
.split-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  min-height: 0;
  background: var(--bg-warm);
}

.split-section__img--cover {
  object-fit: cover;
  object-position: center 30%;
}

/* Flyer completo en subpáginas (sin recortar) */
.flyer-panel {
  width: 100%;
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.flyer-panel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* info-tags eliminado: no usar pastillas que parecen botones */

/* Carrito */
.cart-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.cart-btn__count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 9999px;
  background: var(--brand-gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 25, 0.45);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--bg-page);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.cart-drawer__list {
  flex: 1;
  overflow: auto;
  margin: 1rem 0;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--bg-warm);
  border-radius: 0.5rem;
}

.cart-item__meta {
  flex: 1;
  min-width: 0;
}

.cart-empty {
  text-align: center;
  color: var(--ink-muted);
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .split-section__content {
    padding: 2rem 2rem;
  }
}

/* ── Foto Dra. con marco dorado ── */
.dra-collage {
  position: relative;
  min-height: 0;
}

.dra-collage__main {
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid var(--brand-gold);
  box-shadow:
    var(--shadow-soft),
    0 0 0 5px rgba(201, 162, 77, 0.12);
  background: linear-gradient(145deg, #faf6f1 0%, #f0e8dc 100%);
  padding: 0.4rem;
  max-width: 420px;
  margin-inline: auto;
}

.dra-collage__main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  max-height: 520px;
  border-radius: 0.7rem;
  background: #fff;
}

/* ── Productos / boutique ── */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 77, 0.45);
  box-shadow: 0 22px 48px -28px rgba(74, 58, 40, 0.22);
}

.product-card__media {
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card__price {
  font-weight: 600;
  color: var(--brand-warm);
  font-size: 0.9375rem;
}

.product-card__cta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── CTA banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 25, 0.55),
    rgba(44, 36, 25, 0.75)
  );
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 32rem;
  color: #fff;
}

.cta-banner__content .btn-primary {
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
}

.cta-banner__content .btn-secondary.text-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner__content .btn-secondary.text-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Page hero (subpáginas de servicios) ── */
.page-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 640px) {
  .page-hero {
    min-height: 300px;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 254, 251, 0.98) 0%,
    rgba(255, 254, 251, 0.82) 45%,
    rgba(255, 254, 251, 0.35) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.25rem 1rem 1.85rem;
}

.page-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-warm);
}

.page-hero__title {
  margin-top: 0.4rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.15;
  color: var(--ink);
}

.page-hero__lead {
  margin-top: 0.85rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.page-hero__meta {
  margin-top: 0.85rem;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.page-hero__meta strong {
  font-weight: 600;
  color: var(--brand-warm);
}

/* ── Bloques uniformes de tratamiento ── */
.tx-block + .tx-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-soft);
}

.tx-block h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
}

.tx-block > p,
.tx-lead {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.tx-cards {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.tx-card {
  border-radius: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.tx-card strong {
  color: var(--ink);
  font-weight: 600;
}

.tx-items {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.tx-item {
  border-radius: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.25rem;
}

.tx-item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.3;
}

.tx-item p {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.tx-item__meta {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-warm);
}

.tx-checklist {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

@media (min-width: 640px) {
  .tx-checklist--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.tx-checklist li {
  position: relative;
  padding-left: 0.9rem;
}

.tx-checklist li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--brand-gold-dark);
  font-weight: 700;
}

.tx-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(44, 36, 25, 0.55);
}

.tx-cta {
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border-soft);
}

.tx-cta__sub {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.tx-siblings {
  padding: 1.75rem 1rem 2.5rem;
  background: var(--bg-muted);
  border-top: 1px solid var(--border-soft);
}

.tx-siblings__label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-warm);
}

.tx-siblings__grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .tx-siblings__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tx-siblings__link {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.tx-siblings__link:hover {
  border-color: var(--brand-gold);
  color: var(--brand-warm);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
}
