/* ─── 1. Variables y reset ─────────────────────────────── */
:root {
  --color-primary:   #82443F;
  --color-secondary: #DCD0C4;
  --color-bg:        #FAF7F4;
  --color-dark:      #2C2220;
  --color-muted:     #9E8A85;
  --color-gold:      #C9A84C;
  --color-gold-dark: #A8893A;
  --font-serif:      'Fraunces', serif;
  --font-sans:       'DM Sans', sans-serif;
  --font-script:     'Dancing Script', cursive;
  --section-pad:     120px;
  --maxw:            1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 150px; }

/* Evita scroll horizontal accidental sin romper el sticky header */
body { overflow-x: clip; }
body.menu-open { overflow-y: hidden; }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img { display: block; max-width: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; color: var(--color-primary); }

/* ─── 2. Utilidades ────────────────────────────────────── */
.deco-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  border: 0;
  margin: 20px auto;
}
.deco-line.light { background: rgba(201,168,76,0.55); }
.deco-line.left  { margin: 18px 0; }
.deco-line.short { width: 40px; margin: 16px 0; }
.deco-line.secondary { background: var(--color-gold); }

.script-label {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 54px;
}

.section-head h2 {
  font-weight: 700;
  font-size: 2.8rem;
  margin: 4px 0 12px;
}

.categories {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

/* ─── 3. Botones ───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  padding: 14px 36px;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-outline-primary {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; }

.btn-outline-light {
  border: 1.5px solid #FAF7F4;
  color: #FAF7F4;
  background: transparent;
}
.btn-outline-light:hover { background: #FAF7F4; color: var(--color-primary); }

.btn-fill-light {
  background: var(--color-bg);
  color: var(--color-primary);
  border: 1.5px solid var(--color-bg);
}
.btn-fill-light:hover { background: transparent; color: #FAF7F4; border-color: #FAF7F4; }

.btn-ghost-light {
  border: 1.5px solid transparent;
  color: #FAF7F4;
  background: transparent;
  position: relative;
}
.btn-ghost-light::after {
  content: '';
  position: absolute;
  left: 36px; right: 36px; bottom: 10px;
  height: 1px;
  background: rgba(250,247,244,0.5);
  transition: background 0.3s ease;
}
.btn-ghost-light:hover::after { background: var(--color-gold); }

.btn-fill-primary {
  background: var(--color-primary);
  color: #FAF7F4;
  width: 100%;
  border: 1.5px solid var(--color-primary);
  padding: 16px;
  font-size: 0.8rem;
}
.btn-fill-primary:hover { background: #6B3533; border-color: #6B3533; }

/* ─── 4. Barra de anuncio ──────────────────────────────── */
.topbar {
  background: var(--color-dark);
  color: #FAF7F4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 48px;
  position: relative;
}
.topbar.hidden { display: none; }

.topbar-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,244,0.85);
  text-align: center;
}
.topbar-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

.topbar-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(250,247,244,0.7);
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.topbar-close:hover { color: #FAF7F4; }

/* ─── 5. Header ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250,247,244,0.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--color-gold);
  box-shadow: 0 2px 18px rgba(44,34,32,0.05);
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: start;
}
.header-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  transition: color 0.2s;
}
.header-loc svg { width: 15px; height: 15px; fill: var(--color-gold); }
.header-loc:hover { color: var(--color-gold); }
.header-store {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  position: relative;
}
.header-store::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 13px;
  background: var(--color-secondary);
}
.header-store:hover { color: var(--color-gold); }

.header-logo {
  justify-self: center;
}
.header-logo img {
  height: 78px;
  transition: height 0.3s ease;
}
.site-header.scrolled .header-logo img { height: 54px; }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
.header-icon {
  display: inline-flex;
  align-items: center;
  color: var(--color-dark);
  transition: color 0.2s;
}
.header-icon svg { width: 20px; height: 20px; fill: currentColor; }
.header-icon:hover { color: var(--color-gold); }

/* Buscador desplegable */
.header-search {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-top: 1px solid transparent;
}
.header-search.open {
  max-height: 90px;
  border-top-color: var(--color-secondary);
}
.header-search input {
  display: block;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-dark);
}
.header-search input::placeholder { color: var(--color-muted); font-style: italic; }

/* Navegación */
.header-nav {
  border-top: 1px solid var(--color-secondary);
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
}
.nav-links a {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburguesa (móvil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 6. Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(44,34,32,0.78) 0%,
    rgba(44,34,32,0.55) 38%,
    rgba(44,34,32,0.18) 68%,
    rgba(44,34,32,0.02) 100%
  );
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 620px;
  padding: 60px clamp(24px, 8vw, 110px);
  text-align: left;
}
.hero-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(250,247,244,0.7);
  text-transform: uppercase;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #FAF7F4;
  margin: 0 0 20px;
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(250,247,244,0.85);
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── 7. Compra por categoría ──────────────────────────── */
.categorias {
  background: var(--color-bg);
  padding: var(--section-pad) 24px;
}
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.cat-card {
  flex: 0 0 calc((100% - 4 * 18px) / 5);   /* 5 por fila en escritorio */
  text-align: center;
}
.cat-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-secondary);
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-name {
  display: block;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-dark);
  transition: color 0.2s;
}
.cat-card:hover .cat-name { color: var(--color-gold); }

/* ─── 8. Colecciones (carrusel) ────────────────────────── */
.colecciones {
  background: var(--color-bg);
  padding: 0 24px var(--section-pad);
}
.col-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: var(--maxw);
  margin: 0 auto 44px;
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 0;
}
.col-tab {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  color: var(--color-muted);
  padding: 0 2px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.col-tab:hover { color: var(--color-primary); }
.col-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-gold);
}

.carousel {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.col-card {
  flex: 0 0 auto;
  width: 290px;
  scroll-snap-align: start;
}
.col-card.is-hidden { display: none; }
.col-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-secondary);
}
.col-card-img .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s ease;
}
.col-card:hover .gallery-img { transform: scale(1.05); }
.col-card-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FAF7F4;
  background: linear-gradient(to top, rgba(130,68,63,0.92), rgba(130,68,63,0));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.col-card:hover .col-card-cta { opacity: 1; }
.col-card figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-dark);
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(44,34,32,0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: #FAF7F4;
  border-color: var(--color-primary);
}
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }

/* ─── 9. Charm Bar ─────────────────────────────────────── */
.charm-bar {
  background: var(--color-primary);
  color: #FAF7F4;
  text-align: center;
  padding: 120px 24px;
}
.charm-bar h2 { color: #FAF7F4; }
.charm-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(250,247,244,0.6);
}
.charm-title { font-weight: 800; font-size: 3.2rem; margin: 16px 0 4px; }
.charm-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: #FAF7F4;
  margin: 0 0 20px;
}
.charm-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  color: rgba(250,247,244,0.85);
}
.charm-gallery {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 40px auto 0;
  overflow: hidden;
}
.charm-gallery img {
  width: calc(33.333% - 8px);
  height: 280px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.charm-gallery img:hover { filter: brightness(1); transform: scale(1.02); }

/* ─── 10. Nosotros ─────────────────────────────────────── */
.nosotros {
  background: var(--color-bg);
  padding: var(--section-pad) 0;
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: center;
}
.nosotros-img img { width: 100%; height: 750px; object-fit: cover; }
.nosotros-text { padding: 60px; }
.nosotros-text h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-dark);
  margin: 16px 0 0;
}
.nosotros-text p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  margin: 20px 0;
}
.nosotros-mini-gallery { display: flex; gap: 8px; margin-top: 24px; }
.nosotros-mini-gallery img { width: calc(50% - 4px); height: 160px; object-fit: cover; }

/* ─── 11. Contacto + Floating Labels ───────────────────── */
.contacto {
  background: var(--color-secondary);
  padding: var(--section-pad) 24px;
  text-align: center;
}
.contacto-head h2 {
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--color-dark);
  margin: 4px 0 0;
}
.contacto-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

/* Tarjetas de contacto */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 56px auto 0;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 36px;
  background: rgba(250,247,244,0.55);
  border: 1px solid rgba(201,168,76,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  background: var(--color-bg);
  box-shadow: 0 18px 40px rgba(44,34,32,0.12);
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.6);
  margin-bottom: 24px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.contact-card-icon svg { width: 28px; height: 28px; fill: var(--color-gold); transition: fill 0.35s ease; }
.contact-card:hover .contact-card-icon { background: var(--color-gold); border-color: var(--color-gold); }
.contact-card:hover .contact-card-icon svg { fill: #FAF7F4; }
.contact-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.contact-card p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 240px;
  margin-bottom: 20px;
}
.contact-card-detail {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}

/* Línea inferior de información */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  max-width: 820px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.3);
}
.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.contact-info-item svg { width: 16px; height: 16px; fill: var(--color-gold); flex-shrink: 0; }

/* ─── 12. Footer ───────────────────────────────────────── */
.footer {
  background: var(--color-dark);
  padding: 60px 40px;
  text-align: center;
}
.footer-logo { height: 56px; margin: 0 auto 20px; filter: brightness(0) invert(1); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(250,247,244,0.6);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  color: rgba(250,247,244,0.5);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.footer-social a { transition: color 0.2s; }
.footer-social a:hover { color: #FAF7F4; }
.footer-sep {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: rgba(250,247,244,0.1);
  margin: 0 auto 24px;
}
.footer-copy { font-family: var(--font-sans); font-size: 0.7rem; color: rgba(250,247,244,0.35); }
.footer-credit {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(250,247,244,0.3);
  margin-top: 10px;
}
.footer-credit a { color: var(--color-gold); transition: color 0.2s; }
.footer-credit a:hover { color: #FAF7F4; }

/* ─── 13. Lightbox ─────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44,34,32,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  position: relative;
  z-index: 1;
}
.lb-content img { max-height: 85vh; max-width: 90vw; object-fit: contain; }
.lb-name {
  font-family: var(--font-serif);
  font-style: italic;
  color: #FAF7F4;
  font-size: 1rem;
  text-align: center;
}
.lb-close {
  position: absolute;
  top: 20px; right: 30px;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #DCD0C4;
  line-height: 1;
  z-index: 2001;
  transition: color 0.2s;
}
.lb-close:hover { color: #FAF7F4; }
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 2.5rem;
  color: #DCD0C4;
  padding: 0 16px;
  z-index: 2001;
  transition: color 0.2s;
  line-height: 1;
}
.lb-arrow:hover { color: #FAF7F4; }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }

/* ─── 14. Animaciones reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── 15. Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-card { flex-basis: calc((100% - 2 * 18px) / 3); }   /* 3 por fila */
  .charm-gallery img { height: 200px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  html { scroll-padding-top: 84px; }

  /* Barra de anuncio */
  .topbar { padding: 8px 40px; gap: 8px; }
  .topbar-text { font-size: 0.62rem; letter-spacing: 0.08em; }
  .topbar-text a { margin-left: 4px; }

  /* Header colapsa a menú móvil (layout flex robusto) */
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    position: relative;
    z-index: 60;               /* por encima del overlay para poder cerrarlo */
    background: var(--color-bg);
  }
  .site-header.scrolled .header-top { background: transparent; }
  .header-left { display: none; }
  .header-logo img { height: 54px; }
  .site-header.scrolled .header-logo img { height: 46px; }
  .header-right { gap: 16px; }
  .nav-toggle { display: flex; }
  .header-nav { border-top: none; }

  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 80px 24px 40px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 40;               /* dentro del contexto del header, debajo de .header-top */
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }

  .hero { min-height: 78vh; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(44,34,32,0.85) 0%,
      rgba(44,34,32,0.45) 55%,
      rgba(44,34,32,0.2) 100%
    );
    align-items: flex-end;
  }
  .hero-content { text-align: center; padding: 0 24px 70px; max-width: 100%; }
  .hero-label { font-size: 0.62rem; letter-spacing: 0.18em; }
  .deco-line.left { margin: 18px auto; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 260px; padding: 13px 22px; font-size: 0.74rem; letter-spacing: 0.12em; }
  .hero-actions .btn-ghost-light { width: auto; padding-top: 4px; padding-bottom: 4px; }
  .btn-ghost-light::after { left: 22px; right: 22px; }

  .cat-grid { gap: 22px 14px; }
  .cat-card { flex-basis: calc((100% - 14px) / 2); }       /* 2 por fila */
  .cat-name { font-size: 0.95rem; margin-top: 12px; }

  .col-tabs { gap: 20px; }
  .col-tab { font-size: 0.68rem; letter-spacing: 0.1em; }

  .charm-title { font-size: 2.4rem; }
  .charm-gallery { flex-direction: column; }
  .charm-gallery img { width: 100%; height: 220px; }

  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-img img { height: auto; }
  .nosotros-text { padding: 40px 24px; }
  .nosotros-mini-gallery img { height: 120px; }

  /* En móvil el carrusel se navega deslizando: ocultamos flechas */
  .carousel-arrow { display: none; }
  .carousel-track { scroll-snap-type: x mandatory; gap: 14px; }

  .contact-cards { grid-template-columns: 1fr; gap: 18px; max-width: 420px; }
  .contact-card { padding: 40px 28px; }
  .contact-info { flex-direction: column; align-items: center; gap: 14px; }
}

@media (max-width: 480px) {
  .cat-grid { gap: 18px 12px; }
  .cat-card { flex-basis: calc((100% - 12px) / 2); }       /* 2 por fila */
  .col-card { width: 78vw; }            /* deja ver el borde de la siguiente tarjeta */
  .section-head h2 { font-size: 2.2rem; }
  .contacto-head h2,
  .charm-title { font-size: 2rem; }
  .hero-sub { font-size: 1.05rem; }
  .topbar-text { font-size: 0.58rem; }
  .topbar { padding: 8px 34px; }
  .contact-card { padding: 36px 22px; }
  .contact-card p { max-width: 100%; }
  .lb-arrow { font-size: 2rem; padding: 0 8px; }
  .lb-close { top: 14px; right: 18px; }
}
