*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold-dark:  #69531b;
  --gold:       #c2a66e;
  --brown:      #6c5336;
  --black:      #1d1b1e;
  --cream:      #efebe0;
}

html, body {
  height: 100%;
  background: var(--black);
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* ══ HERO ═══════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.7);
}

.hero-video-mobile { display: none; }

@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;

}

.hero-logo {
  position: absolute;
  top: clamp(20px, 4vh, 52px);
  left: 10%;
  transform: translateX(-50%);
  z-index: 10;
  width: clamp(20px, 13vw, 150px);
}

.hero-logo img {
  width: 100%;
  mix-blend-mode: lighten;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint span {
  font-size: 1rem;
  letter-spacing: 0.45em;
  color: #fff;
  font-weight: 900;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 3px solid #c2a66e;
  border-bottom: 3px solid #c2a66e;
  transform: rotate(45deg);
  animation: arrowPulse 1.8s ease-in-out infinite;
}
 
@keyframes arrowPulse {
  0%   { opacity: 0; transform: rotate(45deg) translate(-4px, -4px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
}

/* ══ ABOUT ═══════════════════════════ */
#about {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vh, 140px) clamp(32px, 6vw, 80px);
}

.about-left {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-founder-firma{
  max-width: 300px;
  margin: 0;
  padding: 0;
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-sub {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 50px;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.6;
  margin-bottom: 36px;
}

.about-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  transform: scaleX(0);
}

.about-concept {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 42px;
}

.about-founder {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 50px;
}

/* BOTÓN ABOUT PRO */
.about-cta {
  display: inline-block;
  padding: 16px 48px;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  will-change: transform;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.about-cta span {
  position: relative;
  z-index: 1;
  transition: letter-spacing 0.4s ease;
}

.about-cta:hover::before {
  transform: scaleX(1);
}

.about-cta:hover {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(194,166,110,0.25);
}

.about-cta:hover span {
  letter-spacing: 0.42em;
}

/* ══ GALLERY ═══════════════════════════ */
#gallery {
  background: #fff;
  padding: clamp(80px, 12vh, 130px) clamp(32px, 6vw, 80px);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(194,166,110,0.2);
  padding-bottom: 24px;
}

.gallery-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #69531b;
  margin-bottom: 10px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #1d1b1e;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

/* Alturas distintas */
.g-item { height: 500px; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.9s ease;
}

.g-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

/* Overlay oscuro — siempre presente pero transparente */
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29,27,30,0.82) 0%,
    rgba(29,27,30,0.3) 50%,
    rgba(29,27,30,0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

/* Texto del overlay */
.g-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
}

.g-item:hover .g-info {
  transform: translateY(0);
  opacity: 1;
}

.g-info-line {
  width: 28px;
  height: 1px;
  background: #c2a66e;
  margin-bottom: 12px;
}

.g-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #efebe0;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.g-info-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(239,235,224,0.65);
  letter-spacing: 0.04em;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .scroll-hint{
    bottom: 150px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .g-item {
    height: 75vw;
  }

  /* En mobile el overlay y texto NO se muestran por defecto */
  .g-overlay { opacity: 0; }
  .g-info    { opacity: 0; transform: translateY(12px); }

  /* Se activan solo con clase .active (al dar clic) */
  .g-item.active .g-overlay { opacity: 1; }
  .g-item.active .g-info    { opacity: 1; transform: translateY(0); }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ══ CTA ═══════════════════════════ */
#cta {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
}

.cta-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.9;
  color: rgba(29,27,30,0.5);
  margin-bottom: 48px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--gold);
  border: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.45s ease;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.cta-btn:hover::before { transform: scaleX(1); }
.cta-btn:hover { color: var(--black); }
.cta-btn:hover { color: var(--black); }

.cta-btn span,
.cta-btn svg { position: relative; z-index: 1; }

.cta-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg { transform: scale(1.15); }

/* ══ SCROLLBAR ══════════════════════════════════════════ */
@supports (scrollbar-width: auto) {
  html {
    scrollbar-color: #c2a66e #1d1b1e;
    scrollbar-width: thin;
  }
}

@supports selector(::-webkit-scrollbar) {
  html::-webkit-scrollbar              { width: 4px; }
  html::-webkit-scrollbar-track        { background: #1d1b1e; }
  html::-webkit-scrollbar-thumb        { background: #c2a66e; }
  html::-webkit-scrollbar-thumb:hover  { background: #69531b; }
}


/* ══ EXPERIENCIA ════════════════════════════════════════ */
#experiencia {
  background: var(--black);
  padding: clamp(100px, 14vh, 160px) clamp(32px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

/* fondo decorativo — línea diagonal dorada */
#experiencia::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    rgba(194,166,110,0.04) 0%,
    transparent 50%,
    rgba(194,166,110,0.03) 100%
  );
  pointer-events: none;
}

.exp-header {
  text-align: center;
  margin-bottom: clamp(64px, 10vh, 110px);
}

.exp-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.exp-title em {
  font-style: italic;
  color: var(--gold);
}

/* Grid de pasos */
.exp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.exp-step {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(194,166,110,0.15);
  position: relative;
  transition: background 0.5s ease;
}

.exp-step:first-child { border-left: none; }

.exp-step:hover {
  background: rgba(194,166,110,0.04);
}

/* Número grande de fondo */
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 7vw, 7rem);
  color: rgba(194,166,110,0.08);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.5s ease;
}

.exp-step:hover .exp-num {
  color: var(--cream);
}

/* línea dorada animada */
.exp-step-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-step.visible .exp-step-line {
  width: 40px;
}

.exp-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.exp-step-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  line-height: 1.85;
  color: rgba(239,235,224,0.45);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .exp-steps {
    grid-template-columns: 1fr 1fr;
  }
  .exp-step:nth-child(3) { border-left: none; }
}

@media (max-width: 560px) {
  .exp-steps { grid-template-columns: 1fr; }
  .exp-step   { border-left: none; border-top: 1px solid rgba(194,166,110,0.15); }
  .exp-step:first-child { border-top: none; }
}

/* ══ CUIDADO ════════════════════════════════════════════ */
#cuidado {
  background: var(--cream);
  padding: clamp(100px, 14vh, 160px) clamp(32px, 8vw, 120px);
}

.care-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vh, 90px);
}

.care-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.care-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--black);
  line-height: 1.2;
  letter-spacing: 0.06em;
  max-width: 700px;
  margin: 0 auto;
}

.care-title em {
  font-style: italic;
  color: var(--brown);
}

/* ── Acordeón ── */
.care-accordion {
  max-width: 860px;
  margin: 0 auto;
}

/*.acc-item {
  border-bottom: 1px solid rgba(105,83,27,0.2);
  overflow: hidden;
}

.acc-item:first-child {
  border-top: 1px solid rgba(105,83,27,0.2);
}*/

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
}

.acc-trigger-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.acc-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.acc-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--black);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.acc-trigger:hover .acc-title { color: var(--brown); }

.acc-line {
  flex: 1;
  height: 1px;
  background: rgba(105,83,27,0.2);
  transition: background 0.3s ease;
}

.acc-trigger:hover .acc-line { background: var(--gold); }

.acc-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease, transform 0.5s cubic-bezier(0.76,0,0.24,1);
  color: var(--gold-dark);
}

.acc-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}

.acc-item.open .acc-icon {
  background: var(--gold);
  color: var(--cream);
}

.acc-item.open .acc-icon svg {
  transform: rotate(45deg);
}

/* Panel desplegable */
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acc-panel-inner {
  padding: 0 0 36px 56px;
}

.acc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  line-height: 1.85;
  color: rgba(29,27,30,0.65);
  padding-left: 18px;
  position: relative;
}

.acc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* Footer */
.care-footer {
  text-align: center;
  margin-top: clamp(56px, 8vh, 80px);
}

.care-footer-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(29,27,30,0.4);
}

@media (max-width: 600px) {
  .acc-panel-inner { padding-left: 0; }
}
/*Blog*/
#blog {
  background: var(--brown);
  padding: clamp(100px, 14vh, 160px) clamp(32px, 6vw, 80px);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 8vh, 80px);
  border-bottom: 1px solid rgba(105,83,27,0.2);
  padding-bottom: 24px;
}

.blog-header-left {}

.blog-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
}

.blog-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(105,83,27,0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-link:hover {
  color: var(--brown);
  border-color: var(--brown);
}

/* ── Grid revista ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Artículo destacado — ocupa toda la altura izquierda */
.blog-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.blog-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.blog-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.blog-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.blog-card:nth-child(5) { grid-column: 3; grid-row: 2; }

/* Card base */
.blog-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  cursor: none;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Imagen destacada más alta */
.blog-card:nth-child(1) .blog-card-img { height: 340px; }
.blog-card:nth-child(n+2) .blog-card-img { height: 200px; }

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.9s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
  filter: saturate(1.0);
}

/* Categoría tag */
.blog-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* Contenido */
.blog-card-body {
  padding: clamp(20px, 2.5vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(105,83,27,0.1);
}

.blog-card-top {}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:nth-child(1) .blog-card-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.blog-card:nth-child(n+2) .blog-card-title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.blog-card:hover .blog-card-title { color: var(--brown); }

.blog-card-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  line-height: 1.8;
  color: rgba(29,27,30,0.55);
  margin-bottom: 20px;
}

/* Ocultar excerpt en cards pequeñas */
.blog-card:nth-child(n+2) .blog-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(105,83,27,0.1);
}

.blog-card-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(29,27,30,0.35);
}

.blog-card-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(194,166,110,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.blog-card-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
}

.blog-card:hover .blog-card-arrow svg {
  stroke: var(--cream);
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .blog-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .blog-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .blog-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .blog-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .blog-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(n) { grid-column: 1; grid-row: auto; }
  .blog-card:nth-child(1) .blog-card-img { height: 260px; }
}
/* Backdrop */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29,27,30,0.6);
  backdrop-filter: blur(4px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.popup-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 9991;
  width: min(92vw, 560px);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Lado izquierdo — imagen */
.popup-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

/* Lado derecho — contenido */
.popup-body {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Botón cerrar */
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.popup-close:hover { opacity: 1; }

.popup-close svg {
  width: 14px;
  height: 14px;
  stroke: #1d1b1e;
  fill: none;
  stroke-width: 1.5;
}

/* Contenido */
.popup-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #c2a66e;
  margin-bottom: 16px;
}

.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #1d1b1e;
  line-height: 1.2;
  margin-bottom: 8px;
}

.popup-title em {
  font-style: italic;
  color: #6c5336;
}

.popup-discount {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #1d1b1e;
  line-height: 1;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.popup-discount span {
  font-size: 1.2rem;
  vertical-align: super;
  letter-spacing: 0;
}

.popup-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(29,27,30,0.55);
  margin-bottom: 28px;
}

/* Input email */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.popup-input {
  border: none;
  border-bottom: 1px solid rgba(29,27,30,0.2);
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: #1d1b1e;
  background: transparent;
  outline: none;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease;
  cursor: none;
}

.popup-input::placeholder { color: rgba(29,27,30,0.3); }
.popup-input:focus { border-color: #c2a66e; }

.popup-btn {
  padding: 13px 0;
  background: #1d1b1e;
  color: #efebe0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.popup-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c2a66e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.popup-btn:hover::before { transform: scaleX(1); }
.popup-btn:hover { color: #1d1b1e; }
.popup-btn span { position: relative; z-index: 1; }

/* No mostrar de nuevo */
.popup-skip {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(29,27,30,0.3);
  text-align: center;
  cursor: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  width: 100%;
}

.popup-skip:hover { color: rgba(29,27,30,0.6); }

/* Línea decorativa */
.popup-rule {
  width: 28px;
  height: 1px;
  background: #c2a66e;
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 560px) {
  .popup {
    grid-template-columns: 1fr;
    width: min(92vw, 400px);
  }

  .popup-img { min-height: 200px; }
  .popup-body { padding: 32px 28px; }
}

footer {
  background: var(--black);
  padding: clamp(60px, 10vh, 100px) clamp(32px, 6vw, 80px) clamp(32px, 5vh, 48px);
  position: relative;
  overflow: hidden;
}

/* Línea dorada superior */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(32px, 6vw, 80px);
  right: clamp(32px, 6vw, 80px);
  height: 1px;
  background: linear-gradient(to right, transparent, #c2a66e, transparent);
}

/* ── Fila principal ── */
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

/* Logo */
.footer-logo {
  width: clamp(120px, 10vw, 150px);
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  display: block;
  mix-blend-mode: lighten;
  opacity: 0.9;
}

/* Frase de marca — centro */
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  color: rgba(239,235,224,0.45);
  letter-spacing: 0.04em;
  text-align: center;
  flex: 1;
}

/* Redes sociales */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(194,166,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.footer-social a:hover {
  background: #c2a66e;
  border-color: #c2a66e;
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: rgba(239,235,224,0.6);
  transition: fill 0.35s ease;
}

.footer-social a:hover svg {
  fill: #1d1b1e;
}

/* ── Línea divisoria ── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(194,166,110,0.12);
  margin-bottom: clamp(28px, 4vh, 40px);
}

/* ── Fila inferior ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Info de contacto */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: #c2a66e;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(239,235,224,0.45);
  transition: color 0.3s ease;
}

.footer-contact-item:hover span {
  color: rgba(239,235,224,0.85);
}

/* Copyright */
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: rgba(239,235,224,0.2);
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}