/* =========================
   Base
========================= */
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family: 'Inter', sans-serif;
  color:#F9F9F9;
  background:#000;
  line-height:1.6;
  font-size: var(--fs-base);
}

/* Tipografía fluida base */
:root{
  --fs-base: clamp(14px, 1.4vw, 17px);
  --fs-h2: clamp(22px, 3.2vw, 34px);
  --fs-h3: clamp(18px, 2.4vw, 24px);
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.4) blur(10px);
  background: rgba(10,10,10,.92);
  border-bottom: 2px solid #d4af37;
  display:flex; align-items:center; justify-content:space-between;
  padding: 1rem 1.5rem;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled { background: rgba(15,15,15,.98); border-bottom-color:#e0c04f; }

/* Marca / Logo */
.site-header .brand{
  display:flex; flex-direction:row; align-items:center; gap:.8rem;
  text-decoration:none;
}
.site-header .brand-logo{
  width:70px; height:70px; border-radius:50%; object-fit:cover;
  border:2px solid #d4af37; box-shadow:0 0 10px rgba(212,175,55,.35);
}
.site-header .brand-text{
  font-family:'Great Vibes', cursive; font-size:2.4rem; font-weight:700;
  background: linear-gradient(to bottom,#e6e6e6 0%,#bfbfbf 50%,#8e8e8e 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Nav (links + botón) */
.site-header nav ul{ list-style:none; display:flex; gap:2rem; margin:0; padding:0; }

/* Gradiente SOLO para links (no botón) */
.site-header nav a:not(.btn){
  font-family:'Great Vibes', cursive;
  font-style: italic; font-size:2rem; font-weight:600; letter-spacing:.6px;
  background: linear-gradient(to bottom,#f5f5f5 0%, #aaa 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-decoration:none; transition: background .3s ease, text-shadow .3s ease;
}
.site-header nav a:not(.btn):hover{
  background: linear-gradient(to bottom,#ffd700 0%, #b8860b 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow:0 0 6px rgba(212,175,55,.6);
}

/* Botón Reservar */
.top-nav .btn{
  padding:.5rem .9rem; border:1px solid #D4AF37; border-radius:999px;
  background:#D4AF37; color:#111 !important; font-weight:700; text-decoration:none;
  transition: background .25s ease, color .25s ease;
}
.top-nav .btn:hover{ background:#FFD700; }

/* Toggle móvil */
.nav-toggle{ display:none; background:none; border:1px solid #333; color:#F9F9F9; padding:.35rem .6rem; border-radius:.4rem }

/* =========================
   Hero (mosaico)
========================= */
.hero-mosaic{
  position:relative; min-height:70vh; display:grid; place-items:center; overflow:hidden; background:#000;
}
/* Fondo mosaico */
.hero-mosaic__bg{
  position:absolute; inset:0; z-index:1;
  display:grid; gap:6px; padding:6px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  filter:saturate(1.05);
}
/* Overlay por CSS (::before/::after) */
.hero-mosaic::before{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    radial-gradient(120% 85% at 50% 25%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.30) 42%,
      rgba(0,0,0,.62) 68%,
      rgba(0,0,0,.90) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.12) 0%,
      rgba(0,0,0,.55) 55%,
      rgba(0,0,0,.92) 100%);
  mix-blend-mode:multiply;
}
.hero-mosaic::after{
  content:""; position:absolute; inset:-2%; z-index:2; pointer-events:none;
  box-shadow: inset 0 0 220px 80px rgba(0,0,0,.85);
}
/* Contenido hero */
.hero-mosaic__content{ position:relative; z-index:3; text-align:center; padding:2rem 1rem; color:#f5f5f5; }
.hero-mosaic__content p{
  color:#eee; font-size:clamp(.95rem, 1.8vw, 1.15rem);
  text-shadow: 0 0 6px rgba(0,0,0,.8), 0 0 12px rgba(255,255,255,.3);
}

/* Títulos */
.brand-hero {
  margin: 0 0 .6rem;
  line-height: 1.05;
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(5rem, 9vw, 7rem);
  background: linear-gradient(to bottom, #ffd700 0%, #816005 50%, #140d00 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 4px rgba(255, 215, 0, 0.25),
    0 0 8px rgba(255, 215, 0, 0.3),
    0 0 12px rgba(255, 215, 0, 0.35);
}
.brand-subtitle{
  display:block; margin-top:.08em;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family:'Cormorant Garamond', serif; font-weight:600; letter-spacing:1px;
  background: linear-gradient(to bottom,#e6e6e6 0%, #cfcfcf 45%, #9b9b9b 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

/* Botones hero */
.cta-row{ display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }
.btn{ display:inline-block; text-decoration:none; padding:.7rem 1.1rem; border-radius:.6rem; border:1px solid #D4AF37; color:#D4AF37; transition:.25s; }
.btn:hover{ background:#D4AF37; color:#000; }
.btn.primary{ background:#D4AF37; color:#000; border:none; font-weight:700; }
.btn.primary:hover{ background:#FFD700; }
.cta-row .btn.primary{ box-shadow:0 10px 30px rgba(212,175,55,.25); }

/* Tiles (polaroid) */
.hero-tile{ background:#fff; padding:5px 5px 35px; border-radius:4px; box-shadow:0 4px 18px rgba(0,0,0,.4); }
.hero-tile > .ph{ width:100%; aspect-ratio:1/1; overflow:hidden; border-radius:6px; background:#111; }
.hero-tile img{ width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.9); transition: transform .35s, filter .35s; }
.hero-tile:hover img{ transform:scale(1.055); filter:brightness(1); }

/* =========================
   Secciones / Headings
========================= */
.section-head h2{ font-family:'Cormorant Garamond', serif; color:#D4AF37; font-size:var(--fs-h2); margin:.2rem 0; }
.section-head p{ color:#aaa; }
.container{ max-width:1100px; margin:0 auto; padding:3rem 1rem; }
.container.alt{ background:linear-gradient(180deg, transparent, rgba(255,255,255,.02)); border-top:1px solid #222; border-bottom:1px solid #222; }

/* =========================
   Grids / Cards / Tiers
========================= */
.grid{ display:grid; gap:1rem; }
.cards{ grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); }
.card{ background:#111; padding:1rem; border:1px solid #333; border-radius:.7rem; }
.card h3{ color:#D4AF37; margin-top:.2rem; font-size:var(--fs-h3); }

/* Catálogo */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card-evento {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow .2s;
  position: relative;
}
.card-evento:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.25) inset;
}
.card-img { position: relative; }
.card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.card-img h3 {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0;
  padding: 1rem .9rem;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65) 40%, rgba(0,0,0,.85));
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  backdrop-filter: blur(2px);
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}

/* =========================
   Galería
========================= */
/* Galería en CUADRADOS */
.gallery{
  display:grid;
  gap:1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery img{
  width:100%;
  aspect-ratio: 1 / 1;       /* <-- CUADRADO */
  object-fit: cover;          /* recorte centrado, sin deformar */
  border-radius:.6rem;
  border:1px solid #222;
  cursor:zoom-in;
  display:block;
}

/* Ocultas sobrantes con esta clase */
.gallery .is-hidden{ display:none !important; }

/* =========================
   Formulario
========================= */
.form{ display:grid; gap:1rem; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); }
label{ display:grid; gap:.35rem; }
input,textarea{
  width:100%; padding:.7rem .8rem; border-radius:.5rem;
  border:1px solid #333; background:#0B0B0B; color:#F9F9F9;
}
.contact-form button{ margin-top:1rem; }

/* Mapa */
.map {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border:1px dashed #333;
  display:grid; place-items:center; color:#999;
}
.map__poster {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #bbb;
  pointer-events: none;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   Caja de contacto
========================= */
.contact-info.box{
  background:#111; color:#f5f5f5; border:2px solid #d4af37; border-radius:10px;
  padding:24px; max-width:640px; margin:30px auto; box-shadow:0 6px 16px rgba(0,0,0,.45);
  font-style:normal;
}
.contact-info.box .contact-head h2{ margin:0; font-size:1.5rem; color:#d4af37; }
.contact-info.box .contact-head p{ margin:4px 0 16px; font-weight:300; font-size:.95rem; color:#ccc; }
.contact-info.box dl{ margin:0; }
.contact-info.box dt{ font-weight:600; margin-top:12px; color:#d4af37; }
.contact-info.box dd{ margin:4px 0 12px 0; }
.contact-info.box a{ color:#d4af37; text-decoration:none; font-weight:500; }
.contact-info.box .btn-gold{
  display:inline-block; margin-top:6px; padding:10px 18px; background:#d4af37; color:#111 !important;
  border-radius:6px; font-weight:600; text-decoration:none; transition: background .3s ease, transform .2s ease;
}
.contact-info.box .btn-gold:hover{ background:#e0c04f; transform:scale(1.05); }

/* =========================
   Footer
========================= */
.site-footer{
  --gold:#d4af37;
  --fg:#e4e4e4;
  --muted:#9a9a9a;
  position: relative;
  padding: 32px 16px 40px;
  text-align: center;
  color: var(--fg);
  background:
    radial-gradient(60% 120% at 50% -20%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(#0b0b0b, #090909);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  border-top: 1px solid rgba(212,175,55,.20);
}
.site-footer::before{
  content:""; position:absolute; left:0; top:0; width:100%; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(212,175,55,.55);
  pointer-events:none;
}
.site-footer p{ margin:.5rem 0; color: var(--muted); }
.site-footer strong{ color:#fff; }
.site-footer a{
  color: var(--gold); text-decoration: none; font-weight: 500;
  transition: color .2s ease, text-shadow .2s ease, opacity .2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible{
  color:#fff; text-shadow: 0 0 6px rgba(212,175,55,.8); outline: none;
}
.site-footer .credits{ margin-top: 12px; font-size: .82rem; color: #7f7f7f; }
.site-footer .container,.site-footer .wrap{ max-width: 1100px; margin-inline: auto; }
@media (min-width: 900px){
  .site-footer{ text-align: left; }
  .site-footer p{ margin:.35rem 0; }
}

/* =========================
   Lightbox
========================= */
.lightbox{
  display:none; position:fixed; inset:0; background:rgba(0,0,0,.85); backdrop-filter: blur(8px);
  justify-content:center; align-items:center; z-index:9999;
}
.lightbox-image{ max-width:92vw; max-height:78vh; border-radius:8px; box-shadow:0 0 20px rgba(0,0,0,.8); animation: zoomIn .3s ease; }
@keyframes zoomIn{ from{ transform:scale(.7); opacity:0 } to{ transform:scale(1); opacity:1 } }
.lightbox .close{ position:absolute; top:20px; right:30px; font-size:2.5rem; color:#fff; cursor:pointer; }
.lightbox button{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(212,175,55,.8); border:none; padding:.8rem 1.2rem; font-size:2rem; cursor:pointer;
  border-radius:50%; color:#111; transition:background .3s;
}
.lightbox button:hover{ background:#ffd700; }
.lightbox .prev{ left:40px; } .lightbox .next{ right:40px; }

/* =========================
   Responsive
========================= */
/* Menú móvil */
@media (max-width:880px){
  .nav-toggle{ display:inline-block; }
  .top-nav{ position:relative; z-index: 999; } /* sobre contenido */
  .top-nav ul{
    position:absolute; right:0; top:calc(100% + 10px);
    background:#0B0B0B; border:1px solid #222; border-radius:.6rem; padding:.6rem;
    display:none; flex-direction:column; width:min(86vw, 320px);
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
  }
  .top-nav ul.open{ display:flex; }
  .top-nav a{ padding:.65rem .8rem; }
  .top-nav a:not(.btn){ font-size:1.6rem; } /* legible en móvil */
}

/* Ajustes hero / brand en móviles pequeños */
@media (max-width:520px){
  .site-header .brand-logo{ width:56px; height:56px; }
  .site-header .brand-text{ font-size:1.2rem; max-width:44vw; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .brand-hero{ font-size: clamp(2.8rem, 12vw, 3.6rem); }  /* FIX selector */
  .brand-subtitle{ font-size: clamp(1.1rem, 5vw, 1.6rem); }
  .hero-mosaic__content p{ font-size:.98rem; }
}

/* Grids compactos en móvil */
@media (max-width:560px){
  .cards{ grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .gallery{ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* Formulario a 1 columna */
@media (max-width:520px){
  .form{ grid-template-columns: 1fr; }
}

/* Lightbox controles en móvil */
@media (max-width:520px){
  .lightbox .prev, .lightbox .next{ top:unset; bottom:20px; transform:none; }
  .lightbox .prev{ left:20px; } .lightbox .next{ right:20px; }
}

/* Accesibilidad */
@media (max-width:880px){
  .top-nav a{ min-height:44px; display:flex; align-items:center; }
}
a:focus-visible, button:focus-visible{ outline:2px solid #d4af37; outline-offset:2px; border-radius:6px; }

/* Evitar scroll del fondo cuando el menú móvil está abierto */
body.noscroll { overflow: hidden; }

/* Menú móvil cerrado por defecto */
#menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height .3s ease, opacity .2s ease;
}
#menu.open {
  max-height: 100vh;
  opacity: 1;
  pointer-events: auto;
}
/* Desktop: menú siempre visible */
@media (min-width: 880px){
  #menu{
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
  }
  .nav-toggle{ display: none; }
}
/* ====== Servicios — facelift sin tocar el HTML ====== */

/* Grid más sólido y alturas parejas */
#servicios .cards{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
#servicios .card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 160px;
  padding: 1.1rem 1rem 1rem;
  border-radius: 12px;

  /* Borde dorado con “ring” sutil */
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(135deg,
      rgba(212,175,55,.65),
      rgba(212,175,55,.12) 45%,
      rgba(212,175,55,.65)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
}

/* Regla superior luminosa (detalle elegante) */
#servicios .card::before{
  content:"";
  position:absolute; left:10px; right:10px; top:8px; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold, #d4af37), transparent);
  opacity:.65; pointer-events:none;
}

/* Titulares glam pero legibles */
#servicios .card h3{
  margin: .2rem 0 .4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 22px);
  letter-spacing:.3px;
  background: linear-gradient(to bottom, #ffd700 0%, #b8860b 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 0 6px rgba(212,175,55,.25);
}

/* Texto más fino y consistente */
#servicios .card p{
  color:#d9d9d9;
  margin:0;
  line-height:1.55;
}
#servicios .card p strong{ color:var(--gold, #d4af37); font-weight:700; }

/* Bullet dorado discreto para el primer párrafo (sin añadir contenido) */
#servicios .card p:first-of-type{
  padding-left: 14px;
  position: relative;
}
#servicios .card p:first-of-type::before{
  content:"";
  position:absolute; left:0; top:.6em;
  width:6px; height:6px; border-radius:50%;
  background: var(--gold, #d4af37);
  box-shadow: 0 0 10px rgba(212,175,55,.5);
}

/* Hover/focus: eleva y resalta */
#servicios .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.22) inset;
}
#servicios .card:focus-within{
  outline: 2px solid var(--gold, #d4af37);
  outline-offset: 2px;
  box-shadow: 0 16px 38px rgba(0,0,0,.55);
}

/* Compacto en móvil */
@media (max-width:560px){
  #servicios .cards{ grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: .9rem; }
  #servicios .card{ min-height: 150px; padding: .9rem .85rem; }
  #servicios .card h3{ font-size: clamp(17px, 5vw, 20px); }
}
/* =========================
   THEMES por categoría
   (Aplica colores, detalles y sutiles fondos)
========================= */

/* Defaults (hereda tu dorado) */
:root{
  --theme-accent: #d4af37;         /* botón primario, bordes activos */
  --theme-accent-2: #ffe08a;       /* brillo/acento suave */
  --theme-ink: #0b0b0b;            /* texto sobre acento */
  --theme-glow: 0 0 18px rgba(212,175,55,.35);
  --theme-stripe: linear-gradient(90deg, transparent, rgba(212,175,55,.18), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(212,175,55,.10), transparent 60%);
}

/* ===== Hook genérico: pinta elementos clave con el tema ===== */
[class^="theme-"] .btn.primary{
  background: var(--theme-accent);
  color: var(--theme-ink);
  border: 1px solid color-mix(in oklab, var(--theme-accent), #000 20%);
  box-shadow: 0 10px 30px color-mix(in oklab, var(--theme-accent), #000 70%);
}
[class^="theme-"] .btn.primary:hover{
  background: color-mix(in oklab, var(--theme-accent), white 10%);
}

[class^="theme-"] .site-header{
  border-bottom-color: var(--theme-accent);
}
[class^="theme-"] .site-footer::before{
  background: var(--theme-stripe);
  box-shadow: var(--theme-glow);
}

/* Títulos de sección con degradado del tema */
[class^="theme-"] .section-head h1,
[class^="theme-"] .section-head h2{
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--theme-accent), white 10%) 0%,
    color-mix(in oklab, var(--theme-accent), #000 18%) 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 0 10px color-mix(in oklab, var(--theme-accent), #000 70%);
}

/* Detalle ornamentado detrás del header de sección (sutil) */
[class^="theme-"] .section-head{
  position: relative;
}
[class^="theme-"] .section-head::after{
  content:""; position:absolute; inset:auto 0 -18px 0; height:2px;
  background: var(--theme-stripe);
  box-shadow: var(--theme-glow);
  pointer-events:none;
}

/* Tarjetas del grid de servicios con aro del tema (sin tocar contenido) */
[class^="theme-"] #servicios .card{
  background:
    linear-gradient(#111,#111) padding-box,
    linear-gradient(135deg,
      color-mix(in oklab, var(--theme-accent), transparent 35%),
      rgba(255,255,255,0) 45%,
      color-mix(in oklab, var(--theme-accent), transparent 35%)) border-box;
  border:1px solid transparent;
}
[class^="theme-"] #servicios .card h3{
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--theme-accent), white 8%),
    color-mix(in oklab, var(--theme-accent), #000 22%));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Galería con borde/halo del tema */
[class^="theme-"] .gallery img{
  border-color: color-mix(in oklab, var(--theme-accent), #000 50%);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--theme-accent), #000 80%);
}

/* Sutilezas en la “container alt” (bandas) */
[class^="theme-"] .container.alt{
  background:
    var(--theme-bg-ornament),
    linear-gradient(180deg, transparent, rgba(255,255,255,.02));
  border-top-color: color-mix(in oklab, var(--theme-accent), #000 60%);
  border-bottom-color: color-mix(in oklab, var(--theme-accent), #000 60%);
}

/* ========= Paletas por categoría ========= */

/* Infantiles: dulce + divertido */
.theme-infantiles{
  --theme-accent: #ff7ec3;     /* rosa chicle */
  --theme-accent-2: #ffd166;   /* amarillo pastel */
  --theme-ink: #2b1220;
  --theme-stripe: linear-gradient(90deg,
    rgba(255,126,195,.0), rgba(255,126,195,.45), rgba(255,209,102,.35), rgba(255,126,195,.45), rgba(255,126,195,.0));
  --theme-bg-ornament:
    radial-gradient(40% 60% at 12% -10%, rgba(255,126,195,.12), transparent 55%),
    radial-gradient(50% 70% at 90% -15%, rgba(255,209,102,.10), transparent 60%);
}

/* Bodas: marfil + dorado */
.theme-bodas{
  --theme-accent: #e6dcc7;
  --theme-accent-2: #d4af37;
  --theme-ink: #0b0b0b;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(214,192,150,.55), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(214,192,150,.14), transparent 60%);
}

/* XV: lila elegante */
.theme-quince{
  --theme-accent: #d38cf6;
  --theme-accent-2: #ffd1e8;
  --theme-ink: #170b1a;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(211,140,246,.55), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(211,140,246,.14), transparent 60%);
}

/* Graduaciones: azul real + oro */
.theme-graduaciones{
  --theme-accent: #4ea8ff;
  --theme-accent-2: #d4af37;
  --theme-ink: #041424;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(78,168,255,.55), rgba(212,175,55,.35), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(78,168,255,.12), transparent 60%);
}

/* Empresas: teal + acero */
.theme-empresas{
  --theme-accent: #00c2a8;
  --theme-accent-2: #66b0ff;
  --theme-ink: #041816;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(0,194,168,.55), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(0,194,168,.12), transparent 60%);
}

/* Fin de año: oro intenso */
.theme-findeano{
  --theme-accent: #d4af37;
  --theme-accent-2: #ffe08a;
  --theme-ink: #0b0b0b;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(212,175,55,.65), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(212,175,55,.12), transparent 60%);
}

/* Baby shower: menta suave */
.theme-baby{
  --theme-accent: #8adbd3;
  --theme-accent-2: #ffd6e7;
  --theme-ink: #08201e;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(138,219,211,.55), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(138,219,211,.12), transparent 60%);
}

/* Cumpleaños: naranja festivo */
.theme-cumple{
  --theme-accent: #f4a261;
  --theme-accent-2: #ffe08a;
  --theme-ink: #221308;
  --theme-stripe: linear-gradient(90deg, transparent, rgba(244,162,97,.55), transparent);
  --theme-bg-ornament: radial-gradient(60% 80% at 80% -10%, rgba(244,162,97,.12), transparent 60%);
}
.footer-social{
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  gap: 10px;
}

.footer-social .social{
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--gold, #d4af37), #000 45%);
  color: var(--gold, #d4af37);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.footer-social .social:hover,
.footer-social .social:focus-visible{
  background: color-mix(in oklab, var(--gold, #d4af37), #000 80%);
  box-shadow: 0 0 12px rgba(212,175,55,.4);
  transform: translateY(-2px);
  outline: none;
}

/* En pantallas chicas sigue centrado el texto y las redes permanecen a la derecha */
@media (max-width:560px){
  .footer-inner{
    grid-template-columns: 1fr auto auto; /* se mantiene para que las redes queden a la derecha */
    gap: 12px;
  }
  .footer-social .social{ width: 34px; height: 34px; }
  .site-footer p{ margin:.35rem 0; }
}
/* Fuerza color visible del icono en Edge */
.footer-social .social {
  color: #d4af37;                 /* fallback directo */
  color: var(--gold, #d4af37);    /* tu variable si existe */
}

/* Asegura que el SVG pinte con ese color */
.footer-social .social svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;             /* clave para Edge */
}

/* Fallback del borde si color-mix no existe */
.footer-social .social {
  border: 1px solid #8c7630;      /* fallback sólido */
  border: 1px solid color-mix(in lab, var(--gold, #d4af37), #000 45%);
  /* Nota: si la segunda línea no la entiende, usa la primera */
}

