/* =================================================================
   CELIA VIVAR — Clon de boutiqueweddings.cz
   Sistema de diseño extraído del CSS original de Webflow.
   ================================================================= */

/* ---------- FUENTES DE MARCA CELIA VIVAR (locales, en assets/Fonts) ----------
   CV Serif Condensed → titulares grandes, H1 y nombre de marca "CELIA VIVAR"
   CV Script          → acentos decorativos puntuales (palabras destacadas)
   Manrope            → cuerpo, navegación, botones y párrafos (se carga de
                        Google Fonts para disponer de los 7 pesos)
   font-display: swap + <link rel="preload"> en el HTML para minimizar el FOUT. */
@font-face {
  font-family: 'CV Serif Condensed';
  src: url('assets/Fonts/NewIconSerif-Condensed.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'CV Script';
  src: url('assets/Fonts/CartaNueva-Small.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- TOKENS DE DISEÑO ---------- */
:root {
  /* Colores de marca (fijos) */
  --color-rojo:  rgb(183, 49, 59);   /* #B7313B */
  --color-beige: rgb(238, 234, 224); /* #EEEAE0 */

  /* TOKENS SEMÁNTICOS — MODO DÍA (por defecto):
     rojo = texto/acento sobre fondo beige */
  --bg:     var(--color-beige);
  --text:   var(--color-rojo);
  --accent: var(--color-rojo);
  --halo:   rgba(183, 49, 59, 0.40);  /* halos difuminados (intro/footer) */

  /* Alias: todo lo que usaba el acento sigue ahora las reglas semánticas */
  --orange: var(--accent);
  --white: #fff;
  --black: #000;
  --nav-glass: #111127b3;            /* nav glass: oscura en ambos modos */
  --container: 85rem;

  /* Familias tipográficas con fallback genérico */
  --font-display: 'CV Serif Condensed', Georgia, 'Times New Roman', serif;
  --font-script:  'CV Script', 'Brush Script MT', cursive;
  --font-body:    'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* MODO NOCHE: se INVIERTEN los roles → rojo pasa a fondo, beige a texto/acento.
   El fondo usa un rojo más PROFUNDO y sobrio (el #B7313B puro resultaba muy
   intenso como fondo a pantalla completa). */
[data-theme="dark"] {
  --bg:     rgb(138, 38, 46);          /* #8A262E — rojo profundo, menos chillón */
  --text:   var(--color-beige);
  --accent: var(--color-beige);
  --halo:   rgba(238, 234, 224, 0.35);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;                       /* el original lo fuerza */
  color: var(--text);                       /* texto según tema */
  background-color: var(--bg);              /* fondo según tema (beige/rojo) */
  transition: background-color .3s ease, color .3s ease;
  font-family: var(--font-body);            /* cuerpo → Manrope */
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* Transición suave de color al cambiar de tema (día/noche) */
h1, h2, h3, p, .button, .menu-link, .menu-text, .tagline, .heading-medium,
.heading-card, .category-heading, .cv-wordmark, .marquee-text, .footer-link,
.footer-text, .intro-blur, .footer-blur, .cursor-gradient, .logo-hero-img,
.footer-logo-img, .social-media-icon, .icon-1x1-medium, .theme-toggle {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

/* ---------- TIPOGRAFÍA ---------- */
/* Titulares → serif condensed de marca */
h1 { font-family: var(--font-display); color: var(--orange); margin: 0; font-size: 3.75rem; font-weight: 400; line-height: 1.1; }
h2 { font-family: var(--font-display); color: var(--orange); margin: 0; font-size: 2rem; font-weight: 400; line-height: 1.2; position: relative; z-index: 1; }
h3 { font-family: var(--font-display); color: var(--orange); margin: 0; font-size: 2rem; font-weight: 400; line-height: 1.2; }
p  { color: var(--orange); margin: 0; }

/* Acentos puntuales → fuente script de marca */
.text-style-italic { font-family: var(--font-script); font-weight: 400; }

/* --- Titular mixto: inicial en script + resto en serif condensed ---------
   Mismo color (rojo de marca); solo cambia la forma de la letra.
   Todo en em para que escale solo en móvil. */
.cv-wordmark {
  font-family: var(--font-display);   /* "New Icon Font" (serif condensed) */
  color: var(--accent);
}
.cv-initial {
  font-family: var(--font-script);    /* inicial decorativa en script */
  font-size: 2.00em;                  /* inicial script */
  line-height: 0;                     /* no descuadra el alto de línea */
  vertical-align: -0.04em;            /* descuelgue muy leve */
  margin-right: 0.20em;               /* separación con el resto */
  display: inline-block;
}

/* ---------- LAYOUT GLOBAL ---------- */
.page-wrapper { display: flex; flex-direction: column; align-items: center; }
.main-wrapper { width: 100%; }

.container-large { width: 100%; max-width: var(--container); margin-inline: auto; }

.padding-global { padding-left: 2.5rem; padding-right: 2.5rem; }
.padding-section-large  { padding-top: 8rem; padding-bottom: 8rem; }
.padding-section-medium { padding-top: 5rem; padding-bottom: 5rem; }
.no-padding-top    { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.full-width { width: 100%; }

/* Espaciadores verticales escalonados */
.spacer-xsmall { width: 100%; padding-top: .5rem; }
.spacer-small  { width: 100%; padding-top: 1rem; }
.spacer-medium { width: 100%; padding-top: 2rem; }
.spacer-large  { width: 100%; padding-top: 3rem; }

.section_intro { position: relative; width: 100%; overflow: hidden; }

.text-wrapper-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 100%; max-width: 40rem;
  margin: 3rem auto 0;
}
.max-width-medium { color: var(--orange); width: 100%; max-width: 30rem; }

/* ---------- BOTÓN ---------- */
.button {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: .75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .875rem;
  cursor: pointer;
  transition: color .25s, background-color .25s, padding .3s;
}
.button:hover { background-color: var(--accent); color: var(--bg); }

/* =================================================================
   TOGGLE DÍA / NOCHE  (.theme-toggle)
   Discreto, fijo arriba-derecha. Sigue --accent (rojo día / beige noche).
   ================================================================= */
.theme-toggle {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 110;
  width: 2.75rem; height: 2.75rem; padding: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent); border-radius: 50%;
  background-color: transparent; color: var(--accent);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .3s ease;
}
.theme-toggle:hover { background-color: var(--accent); color: var(--bg); }
.theme-toggle svg { width: 1.25rem; height: 1.25rem; }
/* Día: muestra la luna (para ir a noche). Noche: muestra el sol. */
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* =================================================================
   NAV FLOTANTE INFERIOR  (.nav_fixed)
   ================================================================= */
.nav_fixed {
  position: fixed; inset: auto auto 2rem auto; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; justify-content: flex-start;
  min-width: 12rem;
  padding: .5rem .5rem .5rem 1rem;
  /* Pill crema con borde rojo: mismo lenguaje que los botones de la web.
     SIEMPRE en colores de marca fijos (va sobre vídeo y sobre ambos temas). */
  background-color: var(--color-beige);
  border: 1px solid var(--color-rojo);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(183, 49, 59, .18);   /* flota sobre el contenido */
}
.menu-logo { flex: none; width: 3rem; height: 3rem; margin-right: 1rem; transition: transform .35s; display: flex; align-items: center; justify-content: center; }
.menu-logo:hover { transform: scale(1.08); }
.lottie-full { width: 100%; height: 100%; object-fit: contain; }

/* Monograma CV en la nav: invertido a blanco para el fondo glass oscuro */
/* Monograma recoloreado al rojo de marca vía CSS mask (patrón del hero/footer) */
.nav-logo-img {
  display: inline-block; width: 100%; height: 100%;
  background-color: var(--color-rojo);
  -webkit-mask: url('assets/Logo/PNG/iniciales@4x.png') center / contain no-repeat;
          mask: url('assets/Logo/PNG/iniciales@4x.png') center / contain no-repeat;
}

.menu-links-wrapper { display: flex; align-items: center; justify-content: flex-end; }
/* --- Enlace con efecto hover de 3 capas (texto / borde / relleno) ---
   En reposo: texto rojo de marca en mayúsculas, sin fondo ni bordes.
   En hover: bordes sup/inf se asientan (vienen escalados e invisibles),
   un relleno rojo crece desde ARRIBA y el texto pasa a crema. ~300ms. */
.menu-link {
  position: relative;
  display: inline-block; flex: none;
  margin-inline: .2rem;
  overflow: hidden;                 /* el relleno nunca se sale del enlace */
  border-radius: .25rem;
}
.menu-link-text {
  position: relative; z-index: 2;   /* siempre por encima de borde y relleno */
  display: block;
  padding: .75rem 1rem;
  color: var(--color-rojo);         /* FIJO: el pill es beige en ambos temas */
  letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  transition: color .3s ease;
}
.menu-link:hover .menu-link-text,
.menu-link:focus-visible .menu-link-text { color: var(--color-beige); }

/* Capa 1: bordes superior e inferior (parten escalados x2 e invisibles) */
.menu-link-border {
  position: absolute; inset: 0; z-index: 1;
  border-top: 2px solid var(--color-rojo);
  border-bottom: 2px solid var(--color-rojo);
  transform: scaleY(2); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
  pointer-events: none;
}
/* Capa 2: relleno que crece desde arriba */
.menu-link-fill {
  position: absolute; top: 2px; left: 0; z-index: 0;
  width: 100%; height: 100%;
  background-color: var(--color-rojo);
  transform: scaleY(0); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: top;
  pointer-events: none;
}
.menu-link:hover .menu-link-border,
.menu-link:focus-visible .menu-link-border { transform: scaleY(1); opacity: 1; }
.menu-link:hover .menu-link-fill,
.menu-link:focus-visible .menu-link-fill { transform: scaleY(1); opacity: 1; }

/* Foco visible por teclado */
.menu-link:focus-visible { outline: 2px solid var(--color-rojo); outline-offset: 2px; }

/* Botón "Book a Call" (sin capas: pill rellena de marca).
   Colores FIJOS: el nav no cambia con el tema. */
.menu-link.is-button {
  overflow: visible;
  display: inline-flex; align-items: center;
  border: 1px solid var(--color-rojo); border-radius: .5rem;
  padding: .75rem 1rem;
  color: var(--color-rojo);
  letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); font-size: .875rem;
  transition: background-color .3s ease, color .3s ease;
}
/* Corazón que se despliega al hover. Recolor vía mask + currentColor:
   hereda el color del texto en cada estado (crema en reposo, rojo al hover). */
.btn-heart {
  display: inline-block;
  width: 0; height: 1.05em; opacity: 0;
  background-color: currentColor;
  -webkit-mask: url('assets/Icons/heart@4x.png') center / contain no-repeat;
          mask: url('assets/Icons/heart@4x.png') center / contain no-repeat;
  transition: width .3s ease, opacity .3s ease, margin-right .3s ease;
}
.menu-link.is-button:hover .btn-heart,
.menu-link.is-button:focus-visible .btn-heart { width: 1.05em; opacity: 1; margin-right: .5em; }
.menu-link.is-button.fill { background-color: var(--color-rojo); color: var(--color-beige); }
/* Hover visible en ambos temas: se invierte (crema con texto rojo) */
.menu-link.is-button.fill:hover { background-color: transparent; color: var(--color-rojo); }

/* --- Hamburguesa (oculta en desktop) --- */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 2.75rem; height: 2.75rem; padding: 0;
  background: transparent; border: 0; cursor: pointer;
}
.burger-bar {
  display: block; width: 1.5rem; height: 2px;
  background-color: var(--color-rojo);
  transition: transform .3s ease, opacity .3s ease;
}
/* Abierto: las 3 barras forman una X (la del medio se desvanece) */
.nav_fixed.is-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav_fixed.is-open .burger-bar:nth-child(2) { opacity: 0; }
.nav_fixed.is-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-burger:focus-visible { outline: 2px solid var(--color-rojo); outline-offset: 2px; border-radius: .25rem; }

/* Sin animaciones de hover/hamburguesa si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
  .menu-link-text, .menu-link-border, .menu-link-fill, .burger-bar { transition: none; }
}


/* =================================================================
   HERO  (.section_hero)
   ================================================================= */
.section_hero {
  position: relative; z-index: 0;
  display: flex; flex-direction: column;
  justify-content: space-between; align-items: center;
  min-height: 100svh;
  color: var(--white);
  padding-top: 3rem;
  overflow: hidden;
}

.logo-top {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  height: auto; margin: 1rem auto 0;
}
.logo-link { display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity .2s; }
/* Logo del hero (sin marco). Se pinta con `mask` para que tome el color del
   tema (--accent): rojo en día, beige en noche. El PNG es monocromo. */
.logo-hero-img {
  display: inline-block;
  width: 23.4rem; max-width: 100%;    /* +30% para que se lea mejor sobre el vídeo */
  aspect-ratio: 1.285;                /* relación real del PNG (4392×3418) */
  background-color: var(--color-rojo); /* SIEMPRE rojo original (va sobre el vídeo) */
  -webkit-mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
          mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
  /* "Faux-bold": engrosa el trazo con sombras del mismo rojo en 4 direcciones.
     Al ser una imagen, no hay peso tipográfico real; esto simula algo de grosor. */
  filter:
    drop-shadow( 0.6px 0 0 var(--color-rojo))
    drop-shadow(-0.6px 0 0 var(--color-rojo))
    drop-shadow(0  0.6px 0 var(--color-rojo))
    drop-shadow(0 -0.6px 0 var(--color-rojo));
}

/* Marquee horizontal (CSS puro, sin JS) */
.marquee-horizontal {
  position: relative; z-index: 3;
  display: flex; align-items: center;
  width: 100vw; height: 10rem; margin-bottom: 3rem;
  overflow: hidden; pointer-events: none;
}
.track-horizontal {
  position: absolute; white-space: nowrap; will-change: transform;
  display: flex;
  animation: marquee-horizontal 18s linear infinite;
}
@keyframes marquee-horizontal {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-text { font-family: var(--font-display); flex: none; margin: 0 5rem 0 0; font-size: 7.5rem; color: var(--color-rojo); }

/* Vídeo de fondo + overlay */
.lightbox-video { position: absolute; inset: 0; z-index: 0; display: block; cursor: pointer; }
/* Fondo neutro mientras el vídeo carga: evita el destello de la foto-póster
   (antes había poster="..."; ahora sin póster, este color cubre el hueco). */
.bg-video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; background-color: var(--color-beige); }
.bg-video video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(#00000059, #00000059);
}

/* Badge "PLAY · VIDEO" ESTÁTICO, centrado en cada vídeo (no sigue al ratón).
   pointer-events:none → el click atraviesa hasta el <a> que abre el lightbox. */
.view-more-wrapper-mobile {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.play-mobile {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 9rem; height: 9rem;
  transition: transform .3s ease;
}
.play-ring { position: relative; z-index: 2; width: 100%; height: 100%; animation: spin 16s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* Glow rojo suave detrás del badge */
.cursor-gradient {
  position: absolute; width: 100%; height: 100%;
  background-color: var(--orange); opacity: .55;
  filter: blur(70px); border-radius: 50rem;
}
/* Leve zoom al pasar por el vídeo */
.lightbox-video:hover .play-mobile { transform: scale(1.08); }

/* =================================================================
   INTRO / ESTILOS  (acordeón) + halo difuminado
   ================================================================= */
.intro-blur {
  position: absolute; inset: -22rem auto auto auto; left: 50%; transform: translateX(-50%);
  width: 50rem; height: 35rem;
  background-color: var(--halo); filter: blur(100px); border-radius: 50rem;
  pointer-events: none; z-index: 0;
}
.tagline {
  position: relative; z-index: 1;
  color: var(--orange); text-align: center;
  margin-bottom: 1rem; font-size: 1.25rem; line-height: 1.4;
}

/* ===== SHOWCASE de estilos: rejilla de fotos (izq) + lista de nombres (der) =====
   Patrón "team showcase" adaptado a la marca: al activar un nombre, su foto pasa
   de B/N a color y el resto se atenúa (y viceversa). Conserva fuentes y colores. */
.styles-showcase {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 5.2rem;
  width: 100%; max-width: 95rem; margin: 2.5rem auto 0;
}

/* --- Fotos (izquierda), en columnas escalonadas --- */
.styles-photos { display: flex; gap: 1.25rem; flex-shrink: 0; }
.styles-col { display: flex; flex-direction: column; gap: 1.25rem; }
.styles-col--down { margin-top: 6rem; }   /* desfase vertical, look editorial */
.styles-col--mid  { margin-top: 3rem; }
.style-photo {
  display: block; overflow: hidden; border-radius: 1.3rem;
  width: 14.25rem; height: 17.25rem;
  transition: opacity .4s ease, transform .4s ease;
}
.style-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(.8);       /* B/N por defecto */
  transition: filter .5s ease, transform .6s ease;
}
.styles-showcase.has-active .style-photo:not(.is-active) { opacity: .5; }
.style-photo.is-active { transform: translateY(-4px); }
.style-photo.is-active img { filter: grayscale(0) brightness(1); }  /* color al activar */

/* --- Lista de nombres (derecha) --- */
.styles-list { display: flex; flex-direction: column; gap: 1.05rem; flex: 1; }
.style-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .2rem 0; transition: opacity .3s ease;
}
.styles-showcase.has-active .style-row:not(.is-active) { opacity: .42; }
/* Barra indicadora que crece al activar (en rojo de marca) */
.style-bar {
  flex-shrink: 0; width: 1.6rem; height: .75rem; border-radius: 6px;
  background-color: var(--accent); opacity: .3;
  transition: width .3s ease, opacity .3s ease;
}
.style-row.is-active .style-bar { width: 2.9rem; opacity: 1; }

/* Nombres con el tratamiento mixto de marca (script + serif condensed) */
.category-heading { text-align: left; font-size: 3.75rem; line-height: 1; color: var(--orange); }

/* =================================================================
   HISTORIAS  (Splide blog) + grid Instagram
   ================================================================= */
.blog-horizontal {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; align-items: center; width: 100%;
}
.blog-card-left {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center; padding-inline: 4rem;
}
.heading-medium { font-family: var(--font-display); width: 100%; color: var(--orange); font-size: 3rem; line-height: 1.1; }
.blog-slider-img { display: block; aspect-ratio: 3/2; border-radius: 1rem; overflow: hidden; }
.image-full { width: 100%; height: 100%; object-fit: cover; }

/* Transición de slides con easing Quart (idéntico al original) */
.splide__slide { transition: transform 1.5s cubic-bezier(0.74, 0, 0.03, 0.99); }

/* Bullets de paginación naranjas */
.splide__pagination { position: static; margin-top: 2rem; }
.splide__pagination__page {
  background: var(--orange); border: 0; border-radius: 50%;
  width: 8px; height: 8px; margin: 6px; opacity: .4;
  transition: all .2s linear;
}
.splide__pagination__page.is-active { opacity: 1; transform: scale(1.4); }

/* Grid Instagram */
._3col-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.card { width: 100%; }
.instagram-img-wrapper {
  position: relative; aspect-ratio: 1; width: 100%;
  border-radius: 1rem; overflow: hidden;
}
.instagram-img-wrapper img { transition: transform .6s cubic-bezier(0.74,0,0.03,0.99); }
.instagram-img-wrapper:hover img { transform: scale(1.05); }   /* zoom suave al hover */
.absolute-link { position: absolute; inset: 0; }

/* Enlace a Instagram sobre cada foto del grid: velo rojo sutil + logo IG
   que aparecen al hover/focus. */
.ig-link {
  display: flex; align-items: center; justify-content: center;
  background-color: rgba(183, 49, 59, 0);
  transition: background-color .35s ease;
}
.ig-icon {
  width: 2.1rem; height: 2.1rem; color: var(--color-beige);
  opacity: 0; transform: scale(.85);
  transition: opacity .35s ease, transform .35s ease;
}
.instagram-img-wrapper:hover .ig-link,
.ig-link:focus-visible { background-color: rgba(183, 49, 59, .42); }
.instagram-img-wrapper:hover .ig-icon,
.ig-link:focus-visible .ig-icon { opacity: 1; transform: scale(1); }
.ig-link:focus-visible { outline: 2px solid var(--color-beige); outline-offset: -4px; }

@media (prefers-reduced-motion: reduce) {
  .ig-link, .ig-icon { transition: none; }
}
.card-content { display: flex; align-items: center; justify-content: space-between; margin-top: .75rem; }
.heading-card { color: var(--orange); font-size: 1.375rem; font-weight: 400; }
.icon-1x1-medium { width: 1.25rem; height: 1.25rem; color: var(--accent); }

/* =================================================================
   MEDALLÓN (vídeo ancho)
   ================================================================= */
.wide-image-wrapper {
  position: relative; z-index: 0;
  aspect-ratio: 2.39; border-radius: 1rem; overflow: hidden;
}
.wide-image-wrapper .lightbox-video { cursor: pointer; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  position: relative; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 4rem; padding-bottom: 8rem;
  overflow: hidden;
}
/* Halo difuminado naranja en la base */
.footer-blur {
  position: absolute; inset: auto auto -10rem auto; left: 50%; transform: translateX(-50%);
  width: 50rem; height: 15rem;
  background-color: var(--halo); filter: blur(80px);
  border-top-left-radius: 20rem; border-top-right-radius: 20rem;
  pointer-events: none; z-index: 0;
}
.footer .padding-global { position: relative; z-index: 1; width: 100%; }
.footer-top { display: flex; flex-direction: column; align-items: center; margin: 0 auto 4rem; }
/* Logo del footer: mismo recoloreo por tema (--accent) vía mask. */
.footer-logo-img {
  display: inline-block;
  width: 14rem; aspect-ratio: 1.285;
  background-color: var(--accent);
  -webkit-mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
          mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
  transition: transform .35s, background-color .3s ease;
}
.footer-logo-link:hover .footer-logo-img { transform: scale(1.04); }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.footer-link {
  color: var(--orange); letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); font-size: .875rem; padding: .5rem .75rem;
  transition: opacity .2s;
}
.footer-link:hover { opacity: .6; }

.grid-footer { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
.footer-content { display: flex; flex-direction: column; align-items: flex-start; }
.footer-text {
  color: var(--orange); font-family: var(--font-body);
  font-size: .875rem; line-height: 1.3; padding-block: .25rem;
}
.footer-text.is-link { transition: opacity .18s; }
.footer-text.is-link:hover { opacity: .6; }
/* Crédito de autor: tercera línea, más pequeña y discreta */
.footer-credit { font-size: .72rem; opacity: .55; margin-top: .2rem; }
/* Corazón de marca inline en los créditos ("Made with ♥ by …") */
.footer-heart {
  display: inline-block; width: .85em; height: .85em; vertical-align: -.08em;
  background-color: var(--accent);
  -webkit-mask: url('assets/Icons/heart@4x.png') center / contain no-repeat;
          mask: url('assets/Icons/heart@4x.png') center / contain no-repeat;
}
.social-media-wrapper { display: flex; gap: .75rem; margin-top: 1rem; }
.social-media-icon { width: 1.75rem; aspect-ratio: 1; color: var(--accent); transition: opacity .2s, color .3s ease; }
.social-media-icon:hover { opacity: .6; }
.icon-contain { width: 100%; height: 100%; object-fit: contain; }

/* =================================================================
   LIGHTBOX (modal de vídeo)
   ================================================================= */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background-color: rgba(0,0,0,.9); padding: 2rem;
}
.lightbox-modal.is-open { display: flex; }
.lightbox-inner { width: min(90vw, 960px); }
.lightbox-inner video { width: 100%; border-radius: 1rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: 0; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1;
}

/* =================================================================
   WHY SPAIN  (texto izquierda + foto derecha, 2 columnas)
   ================================================================= */
.tagline--left { text-align: left; }

.why-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 72rem; margin-inline: auto;
}
.why-text p { color: var(--text); line-height: 1.7; }
.why-text p + p { margin-top: 1rem; }
.why-img {
  aspect-ratio: 4 / 5; max-height: 36rem;
  border-radius: 1rem; overflow: hidden;   /* mismo tratamiento que el resto de fotos */
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }

/* =================================================================
   DESTINOS  (carrusel vanilla: Málaga · Nerja · Marbella)
   ================================================================= */
.dest-carousel { position: relative; z-index: 1; max-width: 72rem; margin-inline: auto; }
.dest-viewport { overflow: hidden; }
.dest-track {
  display: flex;
  transition: transform .9s cubic-bezier(0.74, 0, 0.03, 0.99);  /* easing Quart de la web */
}
@media (prefers-reduced-motion: reduce) {
  .dest-track { transition: none; }
}
.dest-slide {
  flex: 0 0 100%; min-width: 0;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
  padding-inline: .25rem;
}
.dest-img {
  aspect-ratio: 4 / 5; max-height: 34rem;
  border-radius: 1rem; overflow: hidden;
}
.dest-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-text p { color: var(--text); line-height: 1.7; }
.dest-text p + p { margin-top: 1rem; }
.dest-text .heading-medium { font-size: 2.5rem; }

/* Controles: flechas + dots, con los colores de marca */
.dest-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.dest-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; padding: 0;
  border: 1px solid var(--accent); border-radius: 50%;
  background-color: transparent; color: var(--accent);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.dest-arrow svg { width: 1.1rem; height: 1.1rem; }
.dest-arrow:hover { background-color: var(--accent); color: var(--bg); }
.dest-arrow:focus-visible,
.dest-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.dest-dots { display: flex; gap: .75rem; }
.dest-dot {
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 50%;
  background-color: var(--accent); opacity: .4;
  cursor: pointer;
  transition: opacity .2s linear, transform .2s linear;
}
.dest-dot.is-active { opacity: 1; transform: scale(1.4); }

/* =================================================================
   RESEÑAS  (Google reviews — tarjetas renderizadas desde reviews.json)
   ================================================================= */
.reviews-title { text-align: center; }
/* Las iniciales script (2em, line-height 0) sobresalen por encima de la caja
   del titular; en #destinos el título es el primer elemento de una sección sin
   padding-top, así que sin este aire las astas se cortan. */
#destinos .reviews-title { padding-top: .55em; }

/* Título del bloque de blog en la home: da paso a blog.html */
.blog-heading { padding-top: .55em; }
.blog-heading-link { color: inherit; text-decoration: none; transition: opacity .25s ease; }
.blog-heading-link:hover { opacity: .65; }

/* Rejilla de 6 columnas; cada tarjeta ocupa 2 → 3 por fila en desktop.
   Si la última fila queda con 2 tarjetas, se centran (reglas nth de abajo). */
.reviews-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
  max-width: 72rem; margin-inline: auto;
}
.review-card { grid-column: span 2; }
.review-card:nth-child(3n+1):nth-last-child(2) { grid-column: 2 / span 2; }
.review-card:nth-child(3n+2):nth-last-child(1) { grid-column: 4 / span 2; }

.review-card {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--halo);
  border-radius: 1rem;
  background-color: transparent;
  transition: border-color .3s ease, background-color .3s ease, transform .3s ease;
}
/* Hover: mismo efecto "fill" que .button:hover (fondo acento, texto fondo).
   Avatar, estrellas y enlace se invierten para mantener el contraste. */
.review-card:hover { border-color: var(--accent); background-color: var(--accent); transform: translateY(-3px); }
.review-card:hover .review-author,
.review-card:hover .review-text,
.review-card:hover .review-link { color: var(--bg); }
.review-card:hover .review-stars svg { fill: var(--bg); }
.review-card:hover .review-avatar { background-color: var(--bg); color: var(--accent); }

.review-head { display: flex; align-items: center; gap: .9rem; }
/* Avatar: inicial del autor en un círculo del rojo de marca */
.review-avatar {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background-color: var(--accent); color: var(--bg);
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  transition: background-color .3s ease, color .3s ease;
}
.review-author { color: var(--text); font-weight: 600; font-size: 1rem; transition: color .3s ease; }
.review-stars { display: flex; gap: .2rem; margin-top: .25rem; }
.review-stars svg { width: .9rem; height: .9rem; fill: var(--accent); transition: fill .3s ease; }

.review-text {
  color: var(--text); font-size: .95rem; line-height: 1.6;
  transition: color .3s ease;
  /* Recorte visual: las reseñas largas se cortan a 6 líneas */
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-link {
  margin-top: auto;
  color: var(--accent); font-size: .85rem;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.review-link:hover { opacity: .7; }

/* Fallback si reviews.json falla o llega vacío */
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--text); font-size: 1rem; }

/* =================================================================
   MEET CELIA  (foto B/N de fondo SOLO en esta sección)
   ================================================================= */
.meet-celia {
  /* Ruta de la foto de fondo: cámbiala aquí */
  --celia-bg: url("images/Nikki & Darren -316.jpg");

  position: relative;
  display: flex; align-items: center;       /* texto centrado en vertical */
  min-height: 90vh;
  padding-block: 6rem;
  background-image: var(--celia-bg);        /* SOLO esta sección, nunca el body */
  background-size: cover;
  background-position: right center;        /* Celia queda a la derecha */
  background-repeat: no-repeat;
}
/* Velo beige degradado por la izquierda: garantiza la legibilidad del texto
   sin tapar a Celia (se desvanece hacia la derecha). */
.meet-celia::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(238, 234, 224, .92) 0%,
    rgba(238, 234, 224, .75) 38%,
    rgba(238, 234, 224, 0) 65%);
  pointer-events: none;
}
.meet-celia .padding-global { position: relative; z-index: 1; width: 100%; }

.meet-celia-content { max-width: 34rem; }
/* La foto es clara SIEMPRE (no cambia con el tema) → texto fijo en rojo de
   marca, no en tokens semánticos, para asegurar contraste también de noche. */
.meet-celia-content .tagline,
.meet-celia-content .heading-medium { color: var(--color-rojo); }
.meet-celia-content p { color: var(--color-rojo); line-height: 1.7; }
.meet-celia-content p + p { margin-top: 1rem; }

/* Reveal al scroll (IntersectionObserver en main.js).
   Solo anima si el usuario no pide movimiento reducido. */
@media (prefers-reduced-motion: no-preference) {
  .celia-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
    transition-delay: var(--reveal-delay, 0s);  /* stagger desde JS */
  }
  .celia-reveal.is-visible { opacity: 1; transform: none; }
}

/* =================================================================
   FORMULARIO DE CONTACTO  (sección roja de marca)
   Fondo SIEMPRE rojo original e inputs crema, en ambos temas.
   ================================================================= */
.section_form { background-color: var(--color-rojo); }

.form-title { text-align: center; font-size: 3.25rem; line-height: 1; padding-top: .55em; }
/* Sobre fondo rojo el titular va en crema (no en --accent) */
.section_form .form-title { color: var(--color-beige); }

.wedding-form { max-width: 44rem; margin-inline: auto; }

.form-group { margin: 0 0 1.75rem; padding: 0; border: 0; }
.form-label {
  display: block; margin-bottom: .6rem; padding: 0;
  color: var(--color-beige);
  font-size: .8rem; letter-spacing: 2.5px; text-transform: uppercase;
}
.req { color: var(--color-beige); }

/* Pares First/Last en una fila (se apilan en móvil) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.wedding-form input,
.wedding-form select,
.wedding-form textarea {
  width: 100%;
  padding: .85rem 1.4rem;
  background-color: transparent;
  border: 1px solid rgba(238, 234, 224, .7);   /* borde fino crema */
  border-radius: 50rem;                         /* pill */
  color: var(--color-beige);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s ease, background-color .25s ease;
}
.wedding-form textarea { border-radius: 1.5rem; resize: vertical; min-height: 8rem; }
.wedding-form ::placeholder { color: rgba(238, 234, 224, .55); opacity: 1; }

/* Select estilizado: flecha crema propia */
.wedding-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23EEEAE0' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 1.4rem center;
  padding-right: 3rem;
  cursor: pointer;
}
/* Las opciones del desplegable nativo necesitan texto legible */
.wedding-form select option { color: var(--color-rojo); background-color: var(--color-beige); }
.wedding-form select:invalid { color: rgba(238, 234, 224, .55); } /* placeholder del select */

/* Foco visible (accesibilidad) */
.wedding-form input:focus-visible,
.wedding-form select:focus-visible,
.wedding-form textarea:focus-visible {
  outline: 2px solid var(--color-beige); outline-offset: 2px;
  border-color: var(--color-beige);
}
.wedding-form input:hover, .wedding-form select:hover, .wedding-form textarea:hover { border-color: var(--color-beige); }

/* Estado inválido + mensaje de error inline (texto, no solo color) */
.wedding-form [aria-invalid="true"] { border-color: #ffd9dc; border-width: 2px; }
.field-error {
  margin: .45rem 0 0 1.4rem;
  color: #ffd9dc; font-size: .85rem;
}

/* Botón de envío: invertido sobre el fondo rojo */
.form-actions { display: flex; justify-content: center; margin-top: 2.25rem; }
.form-submit {
  border-color: var(--color-beige); color: var(--color-beige);
  background-color: transparent;
}
.form-submit:hover { background-color: var(--color-beige); color: var(--color-rojo); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-submit:focus-visible { outline: 2px solid var(--color-beige); outline-offset: 3px; }

/* Mensaje global de éxito / error del envío */
.form-status {
  margin-top: 1.75rem; text-align: center;
  color: var(--color-beige); font-size: 1.05rem;
}
.form-status.is-error { color: #ffd9dc; }

/* Etiqueta solo para lectores de pantalla */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .wedding-form input, .wedding-form select, .wedding-form textarea, .form-submit { transition: none; }
}

/* =================================================================
   PÁGINA DE VENUES  (venues.html — acordeón + carrusel por venue)
   ================================================================= */
.venues-page { padding-bottom: 4rem; }   /* aire extra sobre el nav flotante */
.venues-eyebrow { text-align: center; }
.venues-title {
  text-align: center; font-family: var(--font-display);
  color: var(--accent); font-size: 4rem; line-height: 1;
  padding-top: .55em;                     /* las iniciales script no se cortan */
}
.venues-intro {
  max-width: 40rem; margin: 1.25rem auto 0;
  text-align: center; color: var(--text); line-height: 1.7;
}
.venues-root { max-width: 56rem; margin: 3rem auto 0; }

.venue-destination { margin-top: 3.5rem; }

/* --- Watermark de fondo por destino (Málaga y Nerja) ---
   Cada sección define su imagen en --section-bg; el resto de ajustes son
   comunes. Diales: opacity (intensidad) y background-size (tamaño).
   El mask difumina los bordes. Detrás del contenido, sin clicks. */
.venue-destination[data-dest="malaga"],
.venue-destination[data-dest="nerja"] { position: relative; }
.venue-destination[data-dest="malaga"]  { --section-bg: url("images/Sectionbg3.png"); }
.venue-destination[data-dest="nerja"]   { --section-bg: url("images/Sectionbg2.png"); }

.venue-destination[data-dest="malaga"]::before,
.venue-destination[data-dest="nerja"]::before {
  content: "";
  /* A sangre completa: se expande a 100vw desde la columna centrada,
     cubriendo toda la sección de borde a borde del viewport */
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background-image: var(--section-bg);
  background-size: 70% auto;                        /* no llena la sección: motivo contenido */
  background-position: center;
  background-repeat: no-repeat;
  opacity: .25;                                     /* dial de sutileza (los PNG ya son suaves) */
  /* Desvanecido hacia los bordes: el watermark se funde con el fondo
     sin marcar el rectángulo de la imagen */
  -webkit-mask-image: radial-gradient(ellipse 90% 92% at center, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 92% at center, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* El contenido siempre por encima del watermark */
.venue-destination[data-dest="malaga"] > *,
.venue-destination[data-dest="nerja"] > * { position: relative; z-index: 1; }

/* Ornamento Lottie separador entre destinos (decorativo, aria-hidden).
   Proporción del asset: 850x300. Tintado al color de acento de la marca. */
.venue-ornament {
  width: 27.3rem; margin: 4.5rem auto 1rem;
  aspect-ratio: 850 / 300;   /* proporción del asset: sin esto el SVG (height:100%) mide 0 */
  pointer-events: none;
}
.venue-ornament svg path[fill]:not([fill="none"]) { fill: var(--accent); }
.venue-ornament svg path[stroke]:not([stroke="none"]) { stroke: var(--accent); }
.venue-destination-title {
  text-align: center; font-family: var(--font-display);
  color: var(--accent); font-size: 2.75rem; line-height: 1;
}
.venue-category { margin-top: 2.5rem; }
.venue-category-title {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .8rem; margin-bottom: .5rem;
}

/* --- Acordeón --- */
.venue-item { border-bottom: 1px solid var(--halo); }
/* Cabecera: contenedor flex. El +/− va arriba-derecha (absolute) para que
   el nombre + meta puedan ocupar/saltar de línea sin descolocarlo. */
.venue-header {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem .9rem;
  padding: 1.15rem 2.75rem 1.15rem 0;
}
/* Nombre = botón que abre/cierra; crece un 20% al expandir */
.venue-name {
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  color: var(--text);
  font-family: var(--font-display); font-size: 1.55rem; line-height: 1.1;
  transition: font-size .3s ease, color .25s ease;
}
.venue-name:hover, .venue-item.is-open .venue-name { color: var(--accent); }
.venue-name:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.venue-item.is-open .venue-name { font-size: 1.86rem; }   /* +20% sobre 1.55rem */

/* Meta (tags + iconos): solo visible al expandir, en la misma línea del título */
.venue-meta { display: none; align-items: center; flex-wrap: wrap; gap: .55rem; }
.venue-item.is-open .venue-meta { display: flex; }

/* Enlaces a Google / ubicación (iconos circulares con hover) */
.venue-glink {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid var(--halo); color: var(--accent);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.venue-glink:hover, .venue-glink:focus-visible {
  background-color: var(--accent); color: var(--bg); border-color: var(--accent);
}
.venue-glink svg { width: 1rem; height: 1rem; display: block; }

/* Botón +/− arriba-derecha */
.venue-toggle-btn {
  position: absolute; top: 1.45rem; right: 0;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--text); transition: color .25s ease;
  display: flex; align-items: center; justify-content: center;
}
.venue-item.is-open .venue-toggle-btn, .venue-toggle-btn:hover { color: var(--accent); }

/* Icono +/− dibujado con dos barras (la vertical se oculta al abrir) */
.venue-toggle { position: relative; flex: none; width: 1.2rem; height: 1.2rem; }
.venue-toggle::before, .venue-toggle::after {
  content: ""; position: absolute; background-color: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.venue-toggle::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.venue-toggle::after  { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.venue-item.is-open .venue-toggle::after { opacity: 0; transform: translateX(-50%) scaleY(0); }

/* Panel desplegable (altura animada vía JS).
   Descripción arriba (ancho completo) + carrusel de 2 fotos verticales debajo. */
.venue-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.venue-panel-inner { padding: .25rem 0 2.5rem; }
.venue-desc { color: var(--text); line-height: 1.7; max-width: 48rem; }

/* Tags de características (chips con hover), ahora en la cabecera */
.venue-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.venue-tag {
  padding: .35rem .9rem;
  border: 1px solid var(--halo); border-radius: 50rem;
  color: var(--accent); font-size: .75rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.venue-tag:hover {
  background-color: var(--accent); color: var(--bg); border-color: var(--accent);
}

/* --- Carrusel del venue: 2 fotos VERTICALES por página (reusa .dest-arrow/.dest-dot) --- */
.venue-carousel { margin-top: 1.75rem; }
.venue-viewport { overflow: hidden; }
.venue-track { display: flex; transition: transform .6s cubic-bezier(0.74, 0, 0.03, 0.99); }
/* Cada slide = una página con 2 retratos al 50% (centrada si el último es impar) */
.venue-slide { flex: 0 0 100%; min-width: 0; display: flex; gap: 1rem; justify-content: center; }
.venue-slide img {
  flex: 0 0 calc(50% - .5rem); min-width: 0;
  aspect-ratio: 4 / 5; max-height: 32rem; object-fit: cover;
  display: block; border-radius: 1rem;
}
.venue-carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .venue-panel, .venue-track, .venue-toggle::before, .venue-toggle::after,
  .venue-name, .venue-tag, .venue-glink, .venue-toggle-btn { transition: none; }
}

/* =================================================================
   PÁGINA DE SUPPLIERS  (suppliers.html — bento horizontal con drag)
   ================================================================= */
.suppliers-page { padding-bottom: 6rem; }

/* Scroller: scroll horizontal NATIVO (inercia táctil) + snap suave.
   En desktop, suppliers.js añade arrastre con el ratón. */
.sup-scroller {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;               /* barra oculta (Firefox) */
  padding-bottom: .5rem;
}
.sup-scroller::-webkit-scrollbar { display: none; }   /* barra oculta (WebKit) */
.sup-scroller.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.sup-scroller.is-dragging .sup-card { pointer-events: none; }  /* no hover durante drag */

/* Bento: grid en columnas, 2 filas; 'tall' ocupa 2 filas, 'wide' 2 columnas */
.sup-grid {
  display: grid;
  grid-auto-flow: column dense;   /* dense: rellena los huecos que dejan tall/wide */
  grid-template-rows: repeat(2, 16rem);
  grid-auto-columns: 19rem;
  gap: 1rem;
  width: max-content;
  padding-inline: max(2.5rem, calc((100vw - 80rem) / 2));  /* alineado con el container */
}
.sup-card--tall { grid-row: span 2; }
.sup-card--wide { grid-column: span 2; }

/* Tarjeta */
.sup-card {
  position: relative; overflow: hidden;
  border: 0; padding: 0; background: none; cursor: pointer;
  border-radius: 1rem;
  scroll-snap-align: start;
  text-align: left;
}
.sup-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(0.74, 0, 0.03, 0.99);
}
.sup-card:hover img, .sup-card:focus-visible img { transform: scale(1.05); }
.sup-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Overlay: banda de degradado ROJO siempre visible al pie (con el título
   dentro). Al hover/focus/selección, la banda SE EXPANDE hacia arriba
   hasta cubrir la foto y aparece la descripción. */
.sup-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;                 /* título abajo-IZQUIERDA */
  padding: 1.25rem 1.25rem .85rem;         /* menos aire abajo: el título pisa
                                              la zona más densa del degradado */
  pointer-events: none;
}
.sup-overlay::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 55%;                               /* velo neutro solo en la base */
  background: linear-gradient(to top, rgba(28, 20, 18, .72) 0%, rgba(28, 20, 18, .25) 55%, transparent 100%);
  opacity: .9;
  transition: opacity .4s ease, height .45s cubic-bezier(0.74, 0, 0.03, 0.99);
}
/* Al hover el velo se intensifica un poco y crece para alojar la descripción
   (no inunda la foto: sigue siendo un degradado a la base). */
.sup-card:hover .sup-overlay::before,
.sup-card:focus-visible .sup-overlay::before,
.sup-card.is-active .sup-overlay::before { opacity: 1; height: 72%; }

/* Badge de precio (arriba-derecha): velo neutro + texto crema, aparece al hover */
.sup-price {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  padding: .35rem .8rem;
  background-color: rgba(28, 20, 18, .72);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  border-radius: 50rem;
  color: var(--color-beige);
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.sup-card:hover .sup-price,
.sup-card:focus-visible .sup-price,
.sup-card.is-active .sup-price { opacity: 1; transform: translateY(0); }

/* Título: visible SIEMPRE (para localizar suppliers de un vistazo) */
.sup-card-title {
  position: relative; z-index: 1;
  color: var(--color-beige);
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
}
/* Descripción: en reposo NO ocupa sitio (el título queda pegado abajo);
   al hover/focus/selección crece (max-height) y EMPUJA el título hacia
   arriba mientras el texto aparece en fundido. */
.sup-card-desc {
  position: relative; z-index: 1;
  margin-top: 0; max-height: 0;
  color: rgba(238, 234, 224, .9);
  font-size: .82rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s cubic-bezier(0.74, 0, 0.03, 0.99),
              margin-top .45s cubic-bezier(0.74, 0, 0.03, 0.99),
              opacity .35s ease .08s;
}
.sup-card:hover .sup-card-desc,
.sup-card:focus-visible .sup-card-desc,
.sup-card.is-active .sup-card-desc { max-height: 7.5rem; margin-top: .6rem; opacity: 1; }

/* Reveal escalonado (clase .is-in desde JS; el delay por tarjeta llega
   en --reveal-delay) */
.sup-card { opacity: 0; transform: translateY(20px) scale(.97); transition: opacity .6s ease var(--reveal-delay, 0s), transform .6s ease var(--reveal-delay, 0s); }
.sup-card.is-in { opacity: 1; transform: none; }

/* Lightbox de imagen */
.sup-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background-color: rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 1.5rem;
}
.sup-modal.is-open { display: flex; }
.sup-modal-inner { max-width: 60rem; width: 100%; margin: 0; text-align: center; }
.sup-modal-inner img {
  width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: 1rem;
}
.sup-modal-title {
  margin-top: 1rem; color: var(--color-beige);
  font-family: var(--font-display); font-size: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .sup-card, .sup-card img, .sup-overlay, .sup-overlay::before,
  .sup-card-title, .sup-card-desc, .sup-price { transition: none; }
  .sup-scroller { scroll-behavior: auto; }
}

/* =================================================================
   PÁGINA DE PLANNING  (planning.html — timeline en 3 etapas)
   ================================================================= */
.planning-page { padding-bottom: 4rem; }

.pp-timeline { max-width: 44rem; margin: 4rem auto 0; }

/* Cabecera de etapa */
.pp-stage { margin: 4rem 0 2rem; text-align: center; }
.pp-stage:first-child { margin-top: 0; }
.pp-stage-label {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 3px; font-size: 1.04rem; margin-bottom: .5rem;   /* +30% */
}
.pp-stage-title {
  font-family: var(--font-display); color: var(--accent);
  font-size: 2.5rem; line-height: 1.05;
}

/* Pasos: línea vertical roja a la izquierda + marcador numerado */
.pp-steps { position: relative; padding-left: 4.25rem; }
.pp-steps::before {
  content: ""; position: absolute; left: 1.375rem; top: .5rem; bottom: .5rem;
  width: 2px; background-color: var(--halo);   /* línea sutil del recorrido */
}
.pp-step { position: relative; padding: 1.1rem 0; }
.pp-marker {
  position: absolute; left: -4.25rem; top: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--accent);
  background-color: var(--bg);
  color: var(--accent);
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1;
  transition: background-color .4s ease, color .4s ease;
}
/* Al entrar en viewport, el marcador se "enciende" en rojo */
.pp-step.is-in .pp-marker { background-color: var(--accent); color: var(--bg); }

.pp-step-title {
  font-family: var(--font-display); color: var(--accent);
  font-size: 1.6rem; line-height: 1.1; margin-bottom: .45rem;
}
.pp-step-body p { color: var(--text); line-height: 1.7; }

/* Reveal al scroll (clase .is-in desde planning.js) */
@media (prefers-reduced-motion: no-preference) {
  .pp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .pp-reveal.is-in { opacity: 1; transform: none; }
}

/* =================================================================
   PÁGINA DE CONTACTO  (contact.html — sobre fondo beige de la web)
   ================================================================= */
.contact-hero { text-align: center; max-width: 44rem; margin-inline: auto; }
.contact-logo {
  display: inline-block; width: 14rem; aspect-ratio: 1.285;  /* mismo tamaño que el logo del footer */
  background-color: var(--color-rojo);
  -webkit-mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
          mask: url('assets/Logo/PNG/vertical_claim@4x.png') center / contain no-repeat;
  margin-bottom: 3.25rem;                                     /* más aire hasta el título */
}
.contact-title { text-align: center; margin-inline: auto; }
.contact-lead { max-width: 38rem; margin: 1.25rem auto 0; color: var(--text); line-height: 1.7; }
.contact-lead em { font-style: italic; }

.contact-channels { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-wa-label {
  display: block; color: var(--accent); font-weight: 700;
  letter-spacing: 1.5px; margin-bottom: .15rem;
}
.contact-bigline {
  display: inline-block;
  font-family: var(--font-display); color: var(--accent);
  font-size: 2.4rem; line-height: 1.1;
  transition: opacity .2s ease;
}
.contact-bigline:hover { opacity: .7; }
.contact-socials { display: flex; gap: 1.1rem; margin-top: .75rem; }
.contact-socials a { color: var(--accent); transition: opacity .2s ease; }
.contact-socials a:hover { opacity: .6; }
.contact-socials svg { width: 1.6rem; height: 1.6rem; }
.contact-socials a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.contact-write-title {
  text-align: center; font-family: var(--font-display);
  color: var(--accent); font-size: 2.75rem; line-height: 1; padding-top: .4em;
}

/* --- Variante CLARA del formulario (rojo sobre beige, como la captura) --- */
.wedding-form--light .form-label,
.wedding-form--light .req { color: var(--color-rojo); }
.wedding-form--light input,
.wedding-form--light select,
.wedding-form--light textarea {
  border-color: rgba(183, 49, 59, .45);
  color: var(--color-rojo);
}
.wedding-form--light ::placeholder { color: rgba(183, 49, 59, .5); }
.wedding-form--light input:hover,
.wedding-form--light select:hover,
.wedding-form--light textarea:hover { border-color: var(--color-rojo); }
.wedding-form--light input:focus-visible,
.wedding-form--light select:focus-visible,
.wedding-form--light textarea:focus-visible {
  outline-color: var(--color-rojo); border-color: var(--color-rojo);
}
/* Flecha del select en rojo */
.wedding-form--light select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23B7313B' stroke-width='2' stroke-linecap='round'/></svg>");
}
.wedding-form--light select option { color: var(--color-rojo); background-color: var(--color-beige); }
.wedding-form--light select:invalid { color: rgba(183, 49, 59, .5); }
.wedding-form--light .field-error { color: #c0392b; }
.wedding-form--light .form-submit {
  border-color: var(--color-rojo); color: var(--color-rojo); background-color: transparent;
}
.wedding-form--light .form-submit:hover { background-color: var(--color-rojo); color: var(--color-beige); }
.wedding-form--light .form-status { color: var(--color-rojo); }
.wedding-form--light .form-status.is-error { color: #c0392b; }

/* =================================================================
   WEDDING STYLES  (sección bajo el hero: frases serif + acento script)
   ================================================================= */
.styles-list-section .tagline { margin-bottom: 1.5rem; }
.styles-phrases { list-style: none; margin: 0; padding: 0; text-align: center; }
.sp-line {
  color: var(--accent);
  line-height: 1.05;
  font-size: clamp(2.3rem, 6vw, 5rem);
}
.sp-line .cv-wordmark { font-family: var(--font-display); }
/* Palabra acento en script fluida, un poco mayor para equilibrar con el serif */
.sp-accent { font-family: var(--font-script); font-size: 1.18em; }

/* =================================================================
   PÁGINA DE PRICING  (weddingprices.html — "menú" de presupuesto)
   ================================================================= */
.pricing-page { padding-bottom: 4rem; }

/* Tarjetas suaves en 2 columnas: la descripción es la protagonista
   y el precio va como chip discreto al final */
.wp-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 52rem; margin: 4rem auto 0;
}
.wp-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--halo); border-radius: 1rem;
  transition: border-color .3s ease, background-color .3s ease;
}
/* Título con icono de marca delante (recolor vía mask + currentColor:
   hereda el color del título en cada estado, también al invertirse) */
.wp-title-row { display: flex; align-items: center; gap: .65rem; margin-bottom: .6rem; }
.wp-icon {
  flex: none; width: 1.6rem; height: 1.6rem;
  background-color: currentColor; color: var(--accent);
  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat;
  transition: color .3s ease;
}
.wp-name {
  font-family: var(--font-display); color: var(--accent);
  font-size: 1.5rem; line-height: 1.1;
  transition: color .3s ease;
}
.wp-inc { color: var(--text); font-size: .9rem; line-height: 1.65; transition: color .3s ease; }

/* Hover: la tarjeta se rellena del acento y todo se invierte
   (mismo lenguaje que las tarjetas de reseñas de la home) */
.wp-card:hover { border-color: var(--accent); background-color: var(--accent); }
.wp-card:hover .wp-name, .wp-card:hover .wp-inc, .wp-card:hover .wp-icon { color: var(--bg); }
.wp-card:hover .wp-tag { border-color: var(--bg); color: var(--bg); }

/* Chip de precio: pequeño, sereno, sin protagonismo */
.wp-tag {
  display: inline-block; margin-top: auto; padding: .35rem .85rem;
  padding-top: .42rem;                    /* compensación óptica */
  border: 1px solid var(--halo); border-radius: 50rem;
  color: var(--accent); font-size: .75rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s ease, border-color .3s ease;
}
.wp-card .wp-tag { margin-top: 1.1rem; }
.wp-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.wp-tags .wp-tag { margin-top: 0; }

/* Tarjeta destacada: tarifa de wedding planner (roja de marca, fija).
   El precio usa el MISMO chip que el resto: presencia sin zoom. */
.wp-planner {
  max-width: 52rem; margin: 1.25rem auto 0;
  padding: 2rem 2.25rem;
  background-color: var(--color-rojo);
  border-radius: 1rem;
}
.wp-planner-title {
  font-family: var(--font-display); color: var(--color-beige);
  font-size: 1.9rem; line-height: 1.1; margin-bottom: .6rem;
}
.wp-planner p { color: rgba(238, 234, 224, .92); line-height: 1.65; font-size: .95rem; max-width: 36rem; }
.wp-tag--inverse {
  margin-top: 1.1rem;
  border-color: rgba(238, 234, 224, .6);
  color: var(--color-beige);
}

/* Nota de transparencia */
.wp-note {
  max-width: 40rem; margin: 2.5rem auto 0;
  text-align: center; color: var(--text); font-size: .9rem; line-height: 1.7;
  font-style: italic;
}

/* =================================================================
   FAQ  (planning.html — acordeón de preguntas frecuentes)
   ================================================================= */
.faq-list { max-width: 46rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--halo); }
.faq-item:first-child { border-top: 1px solid var(--halo); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  color: var(--text);
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; line-height: 1.4;
  transition: color .25s ease;
}
.faq-q:hover, .faq-item.is-open .faq-q { color: var(--accent); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* Icono +/− (la barra vertical desaparece al abrir) */
.faq-toggle { position: relative; flex: none; width: 1.05rem; height: 1.05rem; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background-color: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.faq-toggle::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-toggle::after  { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-toggle::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
/* Panel de respuesta (altura animada vía JS) */
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { margin: 0; padding-bottom: 1.15rem; color: var(--text); line-height: 1.7; max-width: 42rem; }

@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-toggle::before, .faq-toggle::after, .faq-q { transition: none; }
}

/* =================================================================
   BLOG  (blog.html — índice de tarjetas + entrada individual)
   ================================================================= */
.blog-page { padding-bottom: 4rem; }
.blog-head { text-align: center; }
.blog-empty { text-align: center; color: var(--text); margin-top: 2rem; }

/* --- Índice: grid de tarjetas --- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 72rem; margin: 3rem auto 0;
}
.blog-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.blog-card-img {
  aspect-ratio: 3 / 2; border-radius: 1rem; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.74,0,0.03,0.99); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding-top: 1rem; }
.blog-meta {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .72rem;
}
.blog-card-title {
  margin-top: .5rem;
  font-family: var(--font-display); color: var(--accent);
  font-size: 1.7rem; line-height: 1.1;
}
.blog-card-excerpt { margin-top: .6rem; color: var(--text); line-height: 1.6; font-size: .95rem; }
.blog-readmore {
  display: inline-block; margin-top: .85rem;
  color: var(--accent); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  transition: opacity .2s ease;
}
.blog-card:hover .blog-readmore { opacity: .65; }

/* --- Entrada individual --- */
.blog-back {
  display: inline-block; margin-bottom: 1.5rem;
  color: var(--accent); letter-spacing: 1px; font-size: .85rem;
  transition: opacity .2s ease;
}
.blog-back:hover { opacity: .65; }
.blog-post-head { text-align: center; max-width: 46rem; margin: 0 auto; }
.blog-post-title { text-align: center; margin-top: .5rem; padding-top: .4em; }
.blog-cover {
  max-width: 56rem; margin: 2.5rem auto 0;
  aspect-ratio: 16 / 9; border-radius: 1rem; overflow: hidden;
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }

.blog-article { max-width: 40rem; margin: 2.5rem auto 0; }
.blog-article p { color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; }
.blog-h2 {
  font-family: var(--font-display); color: var(--accent);
  font-size: 1.9rem; line-height: 1.15; margin: 2rem 0 1rem;
}
.blog-quote {
  margin: 2rem 0; padding: .25rem 0 .25rem 1.5rem;
  border-left: 3px solid var(--accent);
  color: var(--accent); font-family: var(--font-display);
  font-size: 1.6rem; line-height: 1.25;
}
.blog-post-foot { margin-top: 3rem; }
.blog-back-foot {
  display: block; margin-top: 1.1rem;
  color: var(--accent); letter-spacing: 1px; font-size: .85rem;
  transition: opacity .2s ease;
}
.blog-back-foot:hover { opacity: .65; }

/* =================================================================
   REVEAL (estado inicial para animaciones de entrada con GSAP)
   ================================================================= */
[data-reveal] { opacity: 0; }
.no-anim [data-reveal] { opacity: 1; }  /* fallback si GSAP no carga */

/* =================================================================
   RESPONSIVE  (breakpoints de Webflow: 991 / 767 / 479)
   ================================================================= */

@media screen and (max-width: 991px) {
  h1 { font-size: 3rem; }
  .section_hero { padding-top: 2rem; }
  .logo-hero-img { width: 16.9rem; }
  .footer-logo-img { width: 11rem; }
  .marquee-text { font-size: 5rem; }
  .category-heading { font-size: 3.1rem; }
  .style-photo { width: 11.5rem; height: 13.8rem; }
  .styles-showcase { gap: 3.15rem; }
  /* Reseñas: 2 por fila (cada tarjeta ocupa 3 de las 6 columnas) */
  .review-card,
  .review-card:nth-child(3n+1):nth-last-child(2),
  .review-card:nth-child(3n+2):nth-last-child(1) { grid-column: span 3; }
  /* Why Spain + destinos: menos separación entre columnas */
  .why-split { gap: 2.5rem; }
  .dest-slide { gap: 2.5rem; }
  .dest-text .heading-medium { font-size: 2rem; }
  /* Meet Celia: velo algo más fuerte al estrecharse el hueco claro */
  .meet-celia { min-height: 80vh; }
  .meet-celia::before {
    background: linear-gradient(90deg,
      rgba(238, 234, 224, .94) 0%,
      rgba(238, 234, 224, .82) 45%,
      rgba(238, 234, 224, .25) 75%);
  }
  .heading-medium { font-size: 1.875rem; }
  .padding-section-large  { padding-top: 6rem; padding-bottom: 6rem; }
  .padding-section-medium { padding-top: 4rem; padding-bottom: 4rem; }
  ._3col-grid { grid-template-columns: 1fr 1fr; }
  .grid-footer { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* La nav colapsa: se ocultan los enlaces y aparece la hamburguesa */
  .nav_fixed { width: 12rem; height: 4rem; min-width: 0; padding: 0; justify-content: center; gap: 1rem; }
  .nav-burger { display: flex; }
  .menu-links-wrapper {
    position: fixed; inset: auto auto 4.5rem auto; left: 50%; transform: translateX(-50%);
    flex-direction: column; align-items: center; justify-content: center;
    width: 20rem; padding: 1.5rem 0;
    /* Panel crema con borde rojo, a juego con el pill */
    background-color: var(--color-beige);
    border: 1px solid var(--color-rojo);
    box-shadow: 0 12px 32px rgba(183, 49, 59, .18);
    border-radius: 1rem;
    display: none;
  }
  .nav_fixed.is-open .menu-links-wrapper { display: flex; }
  .menu-link { margin-block: .25rem; }
}

@media screen and (max-width: 767px) {
  .padding-global { padding-left: 1.25rem; padding-right: 1.25rem; }
  .padding-section-large  { padding-top: 4rem; padding-bottom: 4rem; }
  .padding-section-medium { padding-top: 3rem; padding-bottom: 3rem; }
  h2 { font-size: 2rem; }
  .category-heading { font-size: 2rem; }
  /* Showcase apilado: fotos arriba, nombres abajo (centrados) */
  .styles-showcase { flex-direction: column; align-items: center; gap: 2.5rem; }
  .styles-photos { gap: .6rem; }
  .style-photo { width: 7rem; height: 8.5rem; }
  .styles-col--down { margin-top: 2.5rem; }
  .styles-col--mid { margin-top: 1.25rem; }
  .styles-list { width: 100%; max-width: 26rem; }
  /* Centra el contenido (barra + nombre) de cada fila en móvil */
  .style-row { justify-content: center; }
  .styles-list .category-heading { text-align: center; }
  /* Reseñas: 1 por fila en móvil */
  .review-card,
  .review-card:nth-child(3n+1):nth-last-child(2),
  .review-card:nth-child(3n+2):nth-last-child(1) { grid-column: 1 / -1; }
  /* Why Spain: se apila (texto arriba, foto debajo) */
  .why-split { grid-template-columns: 1fr; gap: 2rem; }
  .why-img { aspect-ratio: 4 / 5; max-height: 28rem; }
  /* Destinos: cada slide se apila (foto arriba, texto debajo) */
  .dest-slide { grid-template-columns: 1fr; gap: 1.5rem; }
  .dest-img { max-height: 24rem; }
  .dest-text .heading-medium { font-size: 1.75rem; }
  /* Formulario: los pares First/Last se apilan en una columna */
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 2.2rem; }
  /* Contact page en móvil */
  .contact-bigline { font-size: 1.7rem; }
  .contact-write-title { font-size: 2.1rem; }
  .contact-logo { width: 11rem; }
  /* Pricing page en móvil: tarjetas a una columna */
  .wp-list { grid-template-columns: 1fr; }
  .wp-name { font-size: 1.35rem; }
  .wp-planner { padding: 1.75rem 1.5rem; }
  /* Planning page en móvil: timeline más compacto */
  .pp-stage-title { font-size: 1.9rem; }
  .pp-steps { padding-left: 3.25rem; }
  .pp-steps::before { left: 1.05rem; }
  .pp-marker { left: -3.25rem; width: 2.1rem; height: 2.1rem; font-size: 1.05rem; }
  .pp-step-title { font-size: 1.35rem; }
  /* Venues page en móvil */
  .venues-title { font-size: 2.6rem; }
  .venue-destination-title { font-size: 2rem; }
  .venue-name { font-size: 1.25rem; }
  .venue-item.is-open .venue-name { font-size: 1.5rem; }       /* +20% en móvil */
  .venue-meta { flex-basis: 100%; }                            /* tags+iconos a su propia línea */
  /* Panel en una columna: descripción arriba, carrusel (vertical) debajo */
  /* Carrusel 2-up también en móvil, con menos hueco entre fotos */
  .venue-slide { gap: .6rem; }
  .venue-slide img { flex-basis: calc(50% - .3rem); }
  .venue-ornament { width: 18.2rem; margin: 3rem auto .5rem; }
  /* Blog: índice a una columna */
  .blog-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 26rem; }
  .blog-cover { aspect-ratio: 4 / 3; }
  .blog-h2 { font-size: 1.6rem; }
  .blog-quote { font-size: 1.35rem; }
  /* Suppliers en móvil: bento VERTICAL de 2 columnas que fluye con el
     scroll de la página (sin carrusel horizontal) */
  .sup-scroller { overflow: visible; cursor: default; scroll-snap-type: none; }
  .sup-grid {
    grid-auto-flow: row dense;            /* fluye hacia abajo, sin huecos */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 11.5rem;
    width: auto;
    gap: .7rem;
    padding-inline: 1.25rem;
  }
  .sup-card--tall { grid-row: span 2; }
  .sup-card--wide { grid-column: span 2; }
  .sup-card-title { font-size: 1.25rem; }
  .sup-card-desc { -webkit-line-clamp: 3; font-size: .75rem; }
  /* Meet Celia en móvil: la foto apaisada deja a Celia a la derecha;
     velo beige casi pleno para que el texto sea siempre legible
     (nunca sobre su cara/figura). */
  .meet-celia { min-height: auto; padding-block: 4.5rem; background-position: 78% center; }
  .meet-celia::before {
    background: linear-gradient(90deg,
      rgba(238, 234, 224, .96) 0%,
      rgba(238, 234, 224, .9) 60%,
      rgba(238, 234, 224, .55) 100%);
  }
  .meet-celia-content { max-width: 100%; }
  .blog-horizontal { display: flex; flex-flow: wrap-reverse; }
  .blog-card-left { padding-inline: 0; }
  .blog-slider-img { width: 100%; }
  .wide-image-wrapper { aspect-ratio: 3/2; }
  ._3col-grid { grid-template-columns: 1fr; }
  .marquee-text { font-size: 3.5rem; }
}

@media screen and (max-width: 479px) {
  .category-heading { font-size: 1.7rem; }
  .style-photo { width: 6rem; height: 7.5rem; }
  .text-wrapper-center { margin-top: 2rem; padding-inline: .5rem; }
  .heading-card { font-size: 1.25rem; }
  .logo-hero-img { width: 14.3rem; }
}
