/* ════════════════════════════════════════════════
   BELLE ÉPOQUE · KATIA FABRICS
   Paleta: crema #F5F0E8, marrón cacao #3D2B1F,
           dorado #C9A96E, vino oscuro #7B2D3A,
           arena #EDE0CC, verde oliva #4A5240
   ════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:      #F5F0E8;
  --warm-white: #FAF7F2;
  --cacao:      #3D2B1F;
  --cacao-mid:  #5A3E2B;
  --gold:       #C9A96E;
  --gold-light: #DEC48E;
  --wine:       #7B2D3A;
  --sand:       #EDE0CC;
  --olive:      #4A5240;
  --dark-bg:    #2A1F15;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: var(--warm-white);
  color: var(--cacao);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.modal-dialog.modal-login-katia{
	display:none !important;
}

/* ─── Utility ───────────────────────────────────── */
.section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cacao);
  letter-spacing: 0.02em;
}
.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem !important;
  color: var(--cacao-mid);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.7;
  opacity: 0.85;
  font-weight: 100;
}

.ornament {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin: 0.6rem 0;
}

.btn-primary {
  display: inline-block;
  background: #F5F0E8;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--cacao);
}

.link-arrow {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cacao);
  text-transform: uppercase;
  border-bottom: 1px solid var(--cacao);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  display: block;
  text-align: center;
}
.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.link-arrow-sm {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cacao-mid);
  text-transform: uppercase;
  border-bottom: 1px solid var(--cacao-mid);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
  display: inline-block;
  margin-top: 0.3rem;
}
.link-arrow-sm:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.ver-mas {
  text-align: center;
  margin-top: 2rem;
}

/* ─── SITE HEADER ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(61,43,31,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}
.logo-brand {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.logo-sub {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.main-nav a {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0.9;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--gold-light); opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── SECCIÓN 1 · HERO ──────────────────────────── */
.hero {
  position: relative;
  height: 115vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(285deg, rgba(30, 15, 5, 0.5) 0%, rgba(30, 15, 5, 0.3) 50%, rgba(30, 15, 5, 0.02) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0rem 7rem 0rem 10rem;
  max-width: 800px;
}
.hero-logo-badge {
  display: flex;
  flex-direction: column;
  background: rgba(30,15,5,0.55);
  border: 1px solid rgba(201,169,110,0.45);
  padding: 0.5rem 0.8rem;
  width: max-content;
  margin-bottom: 1.2rem;
}
.badge-brand {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream);
}
.badge-fabrics {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.hero-season {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-desc {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  color: rgba(245,240,232,0.88);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
  font-weight: 100;
}

/* ─── SECCIÓN 2 · EL HILO ROJO ─────────────────── */
.hilo-rojo {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.hilo-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}
.hilo-text {
  padding-right: 2rem;
}
.hilo-text .section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.3rem;
  padding-top:0px !important;
}
.hilo-desc {
  font-size: 1.5rem !important;
  color: var(--cacao-mid);
  line-height: 1.5;
  margin: 1.2rem 0rem 0rem 1.2rem !important;
  font-weight: 100;
}
.hilo-media {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
}
.hilo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hilo-media:hover .hilo-img {
  transform: scale(1.03);
}
.hilo-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42,31,21,0.88);
  backdrop-filter: blur(6px);
  padding: 1.2rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.hilo-card-logo {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.card-fabrics { color: var(--gold-light); }
.card-tag {
  color: var(--wine);
  font-style: italic;
  font-family: var(--font-cormorant);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.hilo-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.hilo-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.hilo-card-season {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(201,169,110,0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
  z-index: 5;
}
.play-btn:hover {
  background: rgba(201,169,110,0.45);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn svg { width: 100%; height: 100%; }

/* ─── SECCIÓN 3 · TEJIDOS ───────────────────────── */
.tejidos {
  background: var(--cream);
  padding: 5rem 2rem;
}
.tejidos-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.tejidos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 2.5rem;
  min-height: 380px;
}
.tejido-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.tejido-item.tejido-tall {
  /* no extra height needed – all items same height in the grid */
}
.tejido-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tejido-item:hover img {
  transform: scale(1.05);
}

/* ─── SECCIÓN 4 · ROMANTICISMO + PATRONES ──────── */
.romanticismo-patrones {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.rp-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Columna izq */
.romanticismo-col .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.romanticismo-desc {
  font-size: 1.3rem !important;
  color: var(--cacao-mid);
  line-height: 1.5;
  margin: 1.2rem 0rem 0rem 1.2rem !important;
}

/* Columna der: Patrones */
.patrones-col-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cacao);
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--sand);
}
.patrones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.patron-item {
  
  max-width: 338px;
  display: flex;
  flex-direction: column;
}
.patron-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 0.6rem;
  position: relative;
}
.patron-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.patron-item:hover .patron-img-wrap img {
  transform: scale(1.05);
}
.patron-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.0rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cacao);
  margin-bottom: 0.3rem;
  min-height: 60px;
}

/* ─── SECCIÓN 5 · FAMILIA ───────────────────────── */
.familia {
  background: var(--sand);
  padding: 5rem 2rem;
}
.familia-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
.familia-magazines {
  position: relative;
}
.mag-stack {
  position: relative;
  height: 540px;
}
.mag-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  z-index: 1;
}
.mag-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  height: 90%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 10px 10px 30px rgba(61,43,31,0.28);
  z-index: 2;
}
.familia-sub {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}
.familia-desc {
  font-size: 0.88rem;
  color: var(--cacao-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.familia-features {
  display: block;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.feat-item {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  text-align: start;
  gap: 1.5rem;
  flex: 1;
  min-width: 90px;
  padding: 1rem 0rem 1rem 1rem;
}
.feat-icon {
  font-size: 1.6rem;
  width: max-content;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-item p {
  font-size: 1.00rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cacao);
  text-transform: uppercase;
  line-height: 1.4;
  margin-left:0px !important;
  margin-right:0px !important;
}

/* ─── SECCIÓN 6 · ACCESSORIES ──────────────────── */
.accessories {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.accessories-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  min-height:540px;
}
.accessories-text .section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}
.accessories-desc {
  font-size: 0.88rem;
  color: var(--cacao-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 320px;
}
.accessories-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  height: 340px;
}
.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mosaic-item {
  overflow: hidden;
  border-radius: 2px;
  flex: 1;
}
.mosaic-item.mosaic-tall {
  grid-row: span 1;
  height: 100%;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mosaic-item:hover img {
  transform: scale(1.06);
}

/* ─── SECCIÓN 7 · 75 AÑOS ───────────────────────── */
.aniversario {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--dark-bg);
}
.aniv-overlay {
  position: absolute;
  inset: 0;
  background: url('https://www.katia.com/files/img/landings/belle-epoque/Belle-epoque-Footer.jpg?w=1600&q=80&auto=format&fit=crop');
  opacity: 0.6;
  z-index: 0;
}
.aniv-inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
  display: inline-flex;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 7rem 10rem;
}
.aniv-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.badge-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-katia-logo {
  display: flex;
  flex-direction: column;
}
.katia-k {
  font-family: var(--font-cormorant);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.aniv-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.aniv-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.78);
  line-height: 1.85;
  max-width: 400px;
}
.aniv-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  height: 100%;
}
.aniv-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
  flex: 1;
}
.btn-aniv {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  border: 1.5px solid var(--gold);
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-aniv:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* ─── SITE FOOTER ───────────────────────────────── */
.site-footer {
  padding: 2rem;
  background: var(--warm-white);
}
.footer-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
}
.footer-nav {
  display: contents;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.5);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.footer-nav a:hover {
  color: var(--gold-light);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* ── Tablet ≤ 900px ──────────────────────────── */
@media (max-width: 900px) {
  .hilo-inner,
  .rp-inner,
  .familia-inner,
  .accessories-inner,
  .aniv-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hilo-text { padding-right: 0; }

  .hilo-media {
    aspect-ratio: 16/9;
  }

  .tejidos-grid {
    grid-template-columns: repeat(2, 1fr);
	height:auto;
    min-height: 380px;
  }
  .tejidos-grid .tejido-item:nth-child(4),
  .tejidos-grid .tejido-item:nth-child(5) {
    display: ;
  }

  .patrones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .accessories-mosaic {
    height: 260px;
  }

  .aniv-right {
    align-items: flex-start;
  }
  .aniv-img {
    height: 220px;
  }

  .mag-stack { height: 340px; }
}

/* ── Mobile ≤ 600px ──────────────────────────── */
@media (max-width: 600px) {
  /* Nav */
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42,31,21,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .main-nav a {
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero-content {
    padding: 0rem 0.5rem 0rem;
    max-width: 100%;
	height: 100%;
  }
  
  .hero {
  position: relative;
  height: 0vh;
  min-height: 600px;
  overflow: hidden;
}

  .imglogo{
	  max-width: 150px !important;
	  margin-left: 1rem !important;
	  margin-bottom: 3rem;
  }

  /* Sections padding */
  .hilo-rojo,
  .tejidos,
  .romanticismo-patrones,
  .familia,
  .accessories,
  .aniversario { padding: 3.5rem 1.2rem; }

  /* Tejidos */
  .tejidos-grid {
    grid-template-columns: repeat(2, 1fr);
	height:auto;
    min-height: 380px;
  }
  .tejidos-grid .tejido-item:nth-child(3),
  .tejidos-grid .tejido-item:nth-child(4),
  .tejidos-grid .tejido-item:nth-child(5) {
    
  }

  /* Patrones */
  .patrones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Familia */
  .mag-stack { height: 260px; }

  /* Familia features */
  .familia-features { gap: 0.8rem; }
  .feat-item { min-width: 70px; }

  /* Accessories mosaic */
  .accessories-mosaic {
    grid-template-columns: 1fr 1fr;
    height: 220px;
  }
  .mosaic-col { display: contents; }
  .mosaic-item.mosaic-tall { display: block; }

  /* Aniversario */
  .aniv-inner { padding: 0rem 1rem; display: block; }
  .aniv-img { height: 180px; }
  .badge-katia-logo { margin: -1rem 0rem 3rem 0rem; }
  .aniv-img75 { min-height: 330px !important; margin: 0rem 0rem 0rem -7rem; }
  .aniv-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://www.katia.com/files/img/landings/belle-epoque/Belle-epoque-Footer-m.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
}

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  /* Hilo rojo media */
  .hilo-media { aspect-ratio: 16/9; }
}

/* ── Large screens ≥ 1400px ──────────────────── */
@media (min-width: 1400px) {
  .hero-title { font-size: 7.5rem; }
  .section-title { font-size: 2.6rem; }

}

/* ─── Animations ────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeInUp 0.75s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-content > *:nth-child(5) { animation-delay: 0.65s; }
