/* ═══════════════════════════════════════════════════════════
   JOYERÍA GRIJALVA — main.css
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --vino: #891618;
  --vino-dark: #2a0608;
  --rosa: #bc8279;
  --blanco: #fff5f1;
  --crema: #f3eed9;
  --dorado: #edc757;
  --dorado-dark: #c9a83e;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --max-w: 1200px;
  --gap: clamp(24px, 5vw, 80px);
  --r: 2px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

/* ── Accessibility / SEO utilities ───────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--vino);
  background: var(--crema);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Noise texture helper ─────────────────────────────────── */
.hero__noise,
.filosofia__noise,
.cta-final__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--dorado);
  color: var(--vino);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--dorado);
  border-radius: var(--r);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s;
}

.btn-cta:hover {
  background: var(--rosa);
  border-color: var(--rosa);
  color: var(--blanco);
}

.btn-cta--outline {
  background: transparent;
  color: var(--vino);
  border-color: var(--dorado);
}

.btn-cta--outline:hover {
  background: var(--dorado);
  color: var(--vino);
}

.btn-cta--light {
  background: var(--dorado);
  color: var(--vino);
  border-color: var(--dorado);
}

.btn-cta--ghost {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(255, 245, 241, .35);
  margin-left: 12px;
}

.btn-cta--ghost:hover {
  background: rgba(255, 245, 241, .1);
  border-color: var(--blanco);
}

/* ── Section shared ───────────────────────────────────────── */
section {
  scroll-margin-top: 110px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 80px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 80px);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--vino);
}

.section-sub {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--vino);
  opacity: 0.9;
}

.section-line {
  width: 48px;
  height: 1px;
  background: var(--dorado);
  margin: 16px auto;
}

/* ── Fade-in animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in--delay-1 {
  transition-delay: .1s;
}

.fade-in--delay-2 {
  transition-delay: .22s;
}

.fade-in--delay-3 {
  transition-delay: .34s;
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  /* Reduced top padding for a cleaner look */
  transition: background .3s, padding .3s, box-shadow .3s;
}

.nav.scrolled {
  background: rgba(137, 22, 24, .96);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dorado);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: var(--vino);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    /* Clear fixed logo (60px + padding + margin) */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0px;
  }

  .hero__brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
  }

  .hero__brand::after {
    display: none;
  }

  .hero__brand-inner {
    margin-top: 0;
    margin-bottom: 40px;
    /* Breathing room before collage */
  }

  .hero__collage {
    display: block !important;
    position: relative;
    z-index: 10;
    flex: none;
    height: 65vw;
    min-height: 250px;
    width: 100%;
    background: var(--vino);
    /* Fallback */
  }

  .hero__collage-grid,
  .hero__collage-col {
    display: flex !important;
    height: 100%;
    gap: 0 !important;
  }

  .hero__collage-item img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.nav__logo-text em {
  font-style: italic;
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vino);
  border-radius: 50%;
  padding: 12px;
  width: 90px;
  height: 90px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

@media (max-width: 768px) {
  .nav__logo {
    width: 60px;
    height: 60px;
    padding: 8px;
  }
}

.nav__logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.nav__logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blanco);
  opacity: .8;
  transition: opacity .2s;
}

.nav__menu a:hover {
  opacity: 1;
}

.nav__cta {
  padding: 9px 22px;
  background: var(--dorado);
  color: var(--vino) !important;
  opacity: 1 !important;
  border-radius: var(--r);
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 2px;
  transition: background .2s !important;
}

.nav__cta:hover {
  background: var(--rosa) !important;
  color: var(--blanco) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dorado);
  transition: transform .3s, opacity .3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   HERO — Split layout
════════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: 100svh;
  overflow: hidden;
}

/* ── Left: brand ──────────────────────────── */
.hero__brand {
  flex: 0 0 50%;
  background: var(--vino);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px clamp(28px, 4vw, 64px) 60px;
  position: relative;
  z-index: 2;
}

.hero__brand::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(237, 199, 87, .5), transparent);
}

.hero__brand-inner {
  text-align: center;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crema);
  margin-bottom: 28px;
}

.hero__logo-wrap {
  padding: 14px 20px;
  display: inline-block;
}

.hero__logo-img {
  width: 100%;
  max-width: min(420px, 80vw);
  height: auto;
  display: block;
}

.hero__line {
  width: 40px;
  height: 1px;
  background: var(--dorado);
  margin: 26px auto;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--crema);
  margin-bottom: 40px;
  opacity: 1;
}

/* ── Right: collage ───────────────────────── */
.hero__collage {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.hero__collage-grid {
  display: flex;
  height: 100%;
  gap: 3px;
}

.hero__collage-item {
  overflow: hidden;
  position: relative;
}

.hero__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 9s ease;
}

.hero__collage-item:hover img {
  transform: scale(1.05);
}

.hero__collage-item--tall {
  flex: 0 0 54%;
}

.hero__collage-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__collage-col .hero__collage-item {
  flex: 1;
}

.hero__collage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(137, 22, 24, .22) 0%, transparent 28%),
    linear-gradient(to top, rgba(42, 6, 8, .4) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}



/* ════════════════════════════════════════════
   SERVICIOS
════════════════════════════════════════════ */
.servicios {
  padding: var(--gap) 0;
  background: var(--blanco);
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.servicio-card {
  padding: 40px 32px;
  border: 1px solid rgba(137, 22, 24, .1);
  border-radius: var(--r);
  background: var(--blanco);
  transition: border-color .25s, transform .25s;
}

.servicio-card:hover {
  border-color: var(--dorado);
  transform: translateY(-4px);
}

.servicio-card__icon {
  width: 44px;
  height: 44px;
  color: var(--dorado);
  margin-bottom: 20px;
}

.servicio-card__icon svg {
  width: 100%;
  height: 100%;
}

.servicio-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--vino);
  margin-bottom: 10px;
}

.servicio-card__text {
  font-size: 14px;
  color: var(--vino);
  opacity: 1;
  font-weight: 450;
  line-height: 1.7;
  margin-bottom: 20px;
}

.servicio-card__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dorado);
  transition: color .2s;
}

.servicio-card__link:hover {
  color: var(--rosa);
}

/* ════════════════════════════════════════════
   FILOSOFÍA
════════════════════════════════════════════ */
.filosofia {
  position: relative;
  padding: var(--gap) 0;
  background: var(--vino);
  overflow: hidden;
}

.filosofia__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.filosofia__line {
  width: 48px;
  height: 1px;
  background: var(--dorado);
  margin: 28px auto;
}

.filosofia__quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--blanco);
  letter-spacing: .3px;
}

.filosofia__cite {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crema);
  font-style: normal;
}

/* ════════════════════════════════════════════
   COLECCIONES
════════════════════════════════════════════ */
.colecciones {
  padding: var(--gap) 0;
  background: var(--crema);
}

.colecciones__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.coleccion-card {
  background: var(--blanco);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.coleccion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(137, 22, 24, .12);
}

.coleccion-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.coleccion-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}

.coleccion-card:hover .coleccion-card__img img {
  transform: scale(1.04);
}

.coleccion-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--rosa);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coleccion-card__placeholder span {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--blanco);
  opacity: .7;
}

.coleccion-card__body {
  padding: 28px;
}

.coleccion-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--vino);
  margin-bottom: 10px;
}

.coleccion-card__text {
  font-size: 14px;
  color: var(--vino);
  opacity: 1;
  font-weight: 450;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   PROCESO
════════════════════════════════════════════ */
.proceso {
  padding: var(--gap) 0;
  background: var(--blanco);
}

.proceso__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.proceso__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--dorado);
  opacity: .4;
}

.proceso__step {
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
  padding-top: 0;
  position: relative;
}


.proceso__num {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--vino);
  background: var(--crema);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--dorado);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.proceso__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--vino);
  margin-bottom: 12px;
}

.proceso__text {
  font-size: 14px;
  color: var(--vino);
  opacity: 1;
  font-weight: 450;
  line-height: 1.7;
}

.proceso__connector {
  display: none;
}

/* ── Ubicación ────────────────────────────────────────────── */
.ubicacion {
  padding: var(--gap) 0;
  background: var(--blanco);
}

.ubicacion__map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(137, 22, 24, .08);
  aspect-ratio: 16 / 9;
}

.ubicacion__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--vino);
  position: relative;
}

.faq .section-title {
  color: var(--blanco);
}

.faq .section-sub {
  color: var(--crema);
  opacity: .75;
}

.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border-radius: var(--r);
  background: rgba(255, 245, 241, .05);
  border: 1px solid rgba(237, 199, 87, .2);
  overflow: hidden;
  transition: background .25s, border-color .25s;
}

.faq__item:hover {
  background: rgba(255, 245, 241, .08);
  border-color: rgba(237, 199, 87, .45);
}

.faq__item[open] {
  background: rgba(255, 245, 241, .09);
  border-color: var(--dorado);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--blanco);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--vino);
  background: var(--dorado);
  border-radius: 50%;
  line-height: 1;
  transition: transform .35s var(--ease-out), background .25s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  background: var(--dorado-dark);
}

.faq__answer {
  padding: 0 32px 28px;
  border-top: 1px solid rgba(237, 199, 87, .15);
  margin-top: 0;
}

.faq__answer p {
  padding-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--crema);
  opacity: .88;
}

.faq__answer a {
  color: var(--dorado);
  font-weight: 500;
  border-bottom: 1px solid rgba(237, 199, 87, .4);
  transition: border-color .2s, opacity .2s;
}

.faq__answer a:hover {
  border-color: var(--dorado);
  opacity: .8;
}

@media (max-width: 768px) {
  .faq__question {
    padding: 20px 24px;
    font-size: 17px;
  }

  .faq__answer {
    padding: 0 24px 22px;
  }
}

/* ════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: var(--gap) 0;
  background: var(--vino);
  overflow: hidden;
  text-align: center;
}

.cta-final__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.cta-final__line {
  width: 48px;
  height: 1px;
  background: var(--dorado);
  margin: 28px auto;
}

.cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--blanco);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-final__sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--crema);
  opacity: .95;
  margin-bottom: 36px;
}

.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--vino-dark);
  padding: 56px 0 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--dorado);
  display: block;
  margin-bottom: 8px;
}

.footer__logo em {
  font-style: italic;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--crema);
  opacity: .9;
  margin-bottom: 4px;
}

.footer__city {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crema);
  opacity: 1;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dorado);
  opacity: .8;
  transition: opacity .2s;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 245, 241, .06);
  padding: 16px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 11px;
  color: var(--crema);
  opacity: .35;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════
   WhatsApp Float
════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: var(--dorado);
  color: var(--vino);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  transition: transform .25s var(--ease-out), background .25s;
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--dorado-dark);
}

.wa-float svg {
  width: 24px;
  height: 24px;
}

/* ── Section Navigation Arrows ────────────────────────────── */
.nav-arrows {
  position: fixed;
  left: 20px;
  bottom: 80px;
  /* Shifted up to avoid overlap with browser bars or other buttons */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity .4s, transform .4s;
}

.nav-arrows.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.nav-arrows__btn {
  width: 44px;
  height: 44px;
  background: var(--dorado);
  color: var(--vino);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
  transition: background .25s, transform .25s var(--ease-out);
}

.nav-arrows__btn:hover {
  background: var(--dorado-dark);
  transform: scale(1.1);
}

.nav-arrows__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .nav-arrows {
    left: 16px;
    bottom: 16px;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--vino);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__menu a {
    font-size: 13px;
  }

  .nav__toggle {
    display: flex;
  }

  .proceso__steps::before {
    display: none;
  }

  .proceso__step {
    padding: 0;
    margin-bottom: 40px;
  }

  .cta-final__btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta--ghost {
    margin-left: 0;
  }

  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .colecciones__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Nav logo image ───────────────────────────────────────── */
.nav__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* El logo tiene fondo negro — screen lo hace transparente sobre el fondo vino */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

/* ── Footer logo image ────────────────────────────────────── */
.footer__logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  /* El PNG tiene fondo negro — con screen se integra sobre fondo oscuro del footer */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

/* ── Footer social icons ──────────────────────────────────── */
.footer__link--fb {
  color: var(--dorado);
}

.footer__link--tt {
  color: var(--dorado);
}


.wp-caption {
  max-width: 100%;
}

.aligncenter {
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}