:root {
  --cream: #F6F4F0;
  --ink: #1C2D36;
  --ink-soft: #4A5A66;
  --accent: #6F9AB1;
  --accent-light: #8FB4C9;
  --surface-dark: #16242C;
  --surface-dark-2: #0F1A20;
  --font: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
[hidden] { display: none !important; }

::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }
.wrap--narrow { max-width: 860px; }
.wrap--form { max-width: 720px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* BOTONES */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn:hover { transform: scale(1.06); }

.btn--primary { background: var(--cream); color: var(--ink); }
.btn--primary:hover { background: var(--accent); }

.btn--hero-primary { background: var(--cream); color: var(--ink); }
.btn--hero-primary:hover { box-shadow: 0 12px 30px rgba(0,0,0,.25); }

.btn--outline-cream { background: transparent; color: var(--cream); border: 1px solid rgba(246,244,240,.6); }
.btn--outline-cream:hover { border-color: var(--accent); color: var(--accent); }

.btn--outline-ink { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline-ink:hover { border-color: var(--accent); color: var(--accent); }

.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-light); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--ink-soft); }

.btn--login { background: #FFFFFF; color: var(--ink); }
.btn--login:hover { background: var(--accent); color: var(--ink); }

.btn--small { font-size: 13px; padding: 10px 22px; }

.btn--submit {
  margin-top: 10px;
  font-size: 17px;
  background: var(--ink);
  color: var(--cream);
  padding: 20px;
  border-radius: 14px;
  width: 100%;
}
.btn--submit:hover { background: var(--ink-soft); transform: none; }

/* CAMPO FORMULARIO */
.field {
  font-family: var(--font);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(74,90,102,.4);
  border-radius: 8px;
  padding: 13px 16px;
}

.field--large {
  font-size: 16px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color .25s ease;
}
.field--large:focus { border-color: var(--accent); }

/* NAVBAR */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 68px; }
.nav__bg {
  position: absolute; inset: 0;
  transition: background .4s ease, box-shadow .4s ease;
  background: linear-gradient(180deg, rgba(28,45,54,.55) 0%, rgba(28,45,54,.28) 55%, rgba(28,45,54,0) 100%);
}
.nav.is-scrolled .nav__bg {
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(246,244,240,.08), 0 8px 30px rgba(15,26,32,.35);
}
.nav__inner {
  position: relative;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a { font-family: var(--font); font-weight: 400; font-size: 15px; opacity: .85; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__actions .btn--login { font-size: 14px; letter-spacing: .02em; padding: 11px 26px; }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
}
.hamburger:hover { transform: scale(1.06); }
.hamburger__bar {
  display: block; width: 16px; height: 1.5px; background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
}

@media (max-width: 1080px) {
  .nav__links, .nav__actions .btn--login { display: none !important; }
  .hamburger { display: inline-flex !important; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column;
  animation: fadeIn .25s ease;
}
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 clamp(20px, 5vw, 44px);
}
.mobile-menu__close {
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(246,244,240,.4);
  border-radius: 999px;
  color: var(--cream);
  font-size: 20px; line-height: 1;
  cursor: pointer;
}
.mobile-menu__close:hover { transform: scale(1.06); }
.mobile-menu__links {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 clamp(24px, 7vw, 60px);
}
.mobile-menu__links a {
  font-family: var(--font); font-weight: 400; font-size: 30px; color: var(--cream); padding: 10px 0;
}
.mobile-menu__ctas {
  padding: 0 clamp(24px, 7vw, 60px) 40px;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-menu__ctas .btn { text-align: center; padding: 15px; }
.mobile-menu__ctas .btn--outline-cream { border-color: rgba(246,244,240,.5); }
.mobile-menu__ctas .btn--outline-cream:hover { border-color: rgba(246,244,240,.5); color: var(--cream); }

/* BOTON WPP */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px;
}
.whatsapp-float img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.3));
}

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero__media {
  position: absolute; inset: -12% 0; z-index: 0; will-change: transform;
  background-image: url('../img/hero-bg.webp');
  background-size: cover; background-position: center;
}
@media (max-width: 760px) {
  .hero__media { background-image: url('../img/hero-bg-mobile.webp'); }
}
.hero__scrim { position: absolute; inset: 0; z-index: 1; }
.hero__scrim--gradient {
  z-index: 2;
  background: linear-gradient(180deg, rgba(28,45,54,.55) 0%, rgba(28,45,54,.4) 28%, rgba(28,45,54,.4) 60%, rgba(28,45,54,.6) 100%);
}
.hero__scrim--radial {
  z-index: 2;
  background: radial-gradient(ellipse 60% 55% at 50% 42%, rgba(28,45,54,.5) 0%, rgba(28,45,54,0) 100%);
}
.hero__content {
  position: relative; z-index: 3; width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 44px) 80px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero__content h1 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.04; letter-spacing: -.02em; color: var(--cream); margin: 0;
  max-width: 1100px; text-wrap: balance;
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) .15s both;
}
.hero__content p {
  font-weight: 300; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6;
  color: rgba(246,244,240,.88); margin: 28px 0 0; max-width: 540px;
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) .3s both;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px;
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) .45s both;
}
.hero__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 22px;
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) .6s both;
}
.hero__link {
  font-family: var(--font); font-weight: 400; font-size: 13.5px;
  color: rgba(246,244,240,.7);
  text-decoration: underline; text-decoration-color: rgba(246,244,240,.35); text-underline-offset: 3px;
}
.hero__link:hover { color: var(--cream); }

@media (prefers-reduced-motion: reduce) {
  .hero__content h1, .hero__content p, .hero__ctas, .hero__links { animation: none; }
}

/* Stats band */
.stats { background: var(--cream); padding: clamp(72px, 9vw, 128px) 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 48px); text-align: center;
}
.stats__value {
  font-family: var(--font); font-weight: 700; font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1; color: var(--ink); letter-spacing: -.02em;
}
.stats__label {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .13em; font-size: 12px; color: var(--ink-soft); margin-top: 14px;
}

/* COMO FUNCIONA */
.how {
  background: var(--cream); padding: clamp(72px, 11vw, 160px) 0;
  border-top: 1px solid rgba(74,90,102,.14);
}
.how__intro { max-width: 720px; }
.how__intro h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--ink); margin: 18px 0 0;
}
.how__intro p {
  font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--ink-soft);
  margin: 20px 0 0; max-width: 560px;
}

.timeline {
  position: relative; display: flex; justify-content: space-between; gap: 24px;
  margin-top: clamp(56px, 7vw, 90px);
}
.timeline__hline { position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; z-index: 1; }
.timeline__hline svg { display: block; overflow: visible; }
.timeline__step {
  position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; max-width: 220px;
}
.timeline__circle {
  width: 60px; height: 60px; min-width: 60px; border-radius: 999px;
  background: var(--cream); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 400; font-size: 22px; color: var(--ink);
}
.timeline__body { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 20px; }
.timeline__body h3 {
  font-family: var(--font); font-weight: 700; font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.2; color: var(--ink); margin: 0;
}
.timeline__body p {
  font-weight: 300; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 12px 0 0;
}
.how__cta-row { display: flex; justify-content: center; margin-top: clamp(48px, 6vw, 72px); }

@media (max-width: 820px) {
  .timeline { flex-direction: column; align-items: center; gap: 0; }
  .timeline__hline { display: none; }
  .timeline__step {
    flex-direction: column; align-items: center; text-align: center; gap: 14px;
    padding: 22px 0; max-width: 320px; border-bottom: 1px solid rgba(74,90,102,.14);
  }
  .timeline__step:last-child { border-bottom: none; }
  .timeline__circle { width: 50px; min-width: 50px; height: 50px; font-size: 18px; }
  .timeline__body { margin-top: 0; }
}

/* BODEGAS */
.wineries { background: var(--ink); color: var(--cream); padding: clamp(72px, 11vw, 160px) 0; }
.wineries__intro { max-width: 720px; }
.wineries__intro h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--cream); margin: 18px 0 0;
}
.wineries__intro p {
  font-weight: 300; font-size: 18px; line-height: 1.6; color: rgba(246,244,240,.78);
  margin: 20px 0 0; max-width: 600px;
}

.wineries__chips, .faq__tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.wineries__chips { margin-top: 40px; }

.chip {
  font-family: var(--font); font-weight: 500; font-size: 13px; letter-spacing: .02em;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: all .25s ease;
  background: transparent; color: var(--cream); border: 1px solid rgba(246,244,240,.35);
}
.chip:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: scale(1.06); }
.chip.is-active { background: var(--accent); color: var(--ink); border-color: var(--accent); }

.wineries__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px; margin-top: 44px; animation: fadeIn .35s ease;
}
.winery-card {
  position: relative; display: block; text-align: left; border: none; padding: 0;
  cursor: pointer; background: var(--surface-dark); border-radius: 6px; overflow: hidden;
  aspect-ratio: 4/5; width: 100%; transition: transform .3s ease, box-shadow .3s ease;
}
.winery-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.winery-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.winery-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,45,54,0) 38%, rgba(15,26,32,.92) 100%);
}
.winery-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; }
.winery-card__meta {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .13em; font-size: 11px; color: var(--accent);
}
.winery-card__name {
  font-family: var(--font); font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.12; color: var(--cream); margin: 8px 0 0;
}
.winery-card__underline { height: 2px; background: var(--accent); margin-top: 10px; width: 0; transition: width .45s cubic-bezier(.22,1,.36,1); }
.winery-card:hover .winery-card__underline { width: 54px; }
.winery-card__desc {
  font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(246,244,240,.8); margin: 14px 0 0;
}

.wineries__more-row { display: flex; justify-content: center; margin-top: 36px; }
.wineries__cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: clamp(48px, 6vw, 72px); }

@media (max-width: 960px) {
  .wineries__grid { grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)) !important; }
  .sommeliers__grid { grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)) !important; }
}

/* SOMMELIERS */
.sommeliers { background: var(--cream); padding: clamp(72px, 11vw, 160px) 0; }
.sommeliers__intro { max-width: 760px; }
.sommeliers__intro h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--ink); margin: 18px 0 0;
}
.sommeliers__intro p {
  font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--ink-soft);
  margin: 20px 0 0; max-width: 726px;
}

.sommelier-search {
  max-width: 720px; margin: 44px auto 0; background: #FFFFFF;
  border: 1px solid rgba(74,90,102,.14); border-radius: 10px; padding: clamp(22px, 3vw, 32px);
}
.sommelier-search__title { font-family: var(--font); font-weight: 700; font-size: 1.4rem; color: var(--ink); text-align: center; }
.sommelier-search__row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.sommelier-search__row .field { flex: 1 1 200px; min-width: 160px; }
.sommelier-search__row select.field { flex: 1 1 140px; min-width: 120px; }
.sommelier-search__row .btn { flex: 1 1 140px; min-width: 140px; }

.sommeliers__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.sommelier-card {
  background: #FFFFFF; border: 1px solid rgba(74,90,102,.12); border-radius: 10px;
  padding: 32px 28px; text-align: center; transition: transform .3s ease, box-shadow .3s ease;
}
.sommelier-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28,45,54,.12); }
.sommelier-card__portrait {
  width: 120px; height: 120px; border-radius: 999px; margin: 0 auto;
  background: linear-gradient(150deg, #243843, #0F1A20); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(135deg, rgba(246,244,240,.05) 0, rgba(246,244,240,.05) 1px, transparent 1px, transparent 10px), linear-gradient(150deg, #243843, #0F1A20);
}
.sommelier-card__portrait span {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: 9.5px; color: rgba(246,244,240,.55); position: relative;
}
.sommelier-card__portrait img { width: 100%; height: 100%; object-fit: cover; }
.sommelier-card h3 { font-family: var(--font); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin: 20px 0 0; }
.sommelier-card__tag {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: 11px; color: var(--accent); margin-top: 8px;
}
.sommelier-card .btn { margin-top: 18px; }

.sommeliers__empty {
  grid-column: 1 / -1; text-align: center;
  font-family: var(--font); font-weight: 300; font-size: 15px; color: var(--ink-soft);
  padding: 24px 0;
}

.service-cards {
  margin-top: clamp(56px, 7vw, 80px); padding-top: clamp(48px, 6vw, 64px);
  border-top: 1px solid rgba(74,90,102,.18);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 28px;
}
.service-card {
  background: var(--ink); color: var(--cream); border-radius: 10px; padding: 36px 32px;
  text-align: center; box-shadow: 0 14px 34px rgba(28,45,54,.16);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(28,45,54,.24); }
.service-card h3 { font-family: var(--font); font-weight: 700; font-size: 1.5rem; line-height: 1.25; color: var(--cream); margin: 0; }
.service-card p { font-weight: 300; font-size: 15.5px; line-height: 1.55; color: rgba(246,244,240,.8); margin: 14px 0 0; }
.service-card .btn { margin-top: 22px; }

@media (max-width: 760px) {
  .sommeliers__grid { grid-template-columns: 1fr !important; max-width: 260px; margin-left: auto; margin-right: auto; gap: 20px !important; }
  .sommeliers__grid .sommelier-card { padding: 22px 20px !important; }
  .sommeliers__grid .sommelier-card__portrait { width: 80px !important; height: 80px !important; }
  .sommeliers__grid .sommelier-card h3 { font-size: 1.1rem !important; margin-top: 14px !important; }
  .sommeliers__grid .sommelier-card:nth-child(n+3) { display: none; }
  .service-cards { grid-template-columns: 1fr !important; max-width: 280px; margin-left: auto; margin-right: auto; gap: 14px !important; }
  .service-card { padding: 22px 18px !important; }
  .service-card h3 { font-size: 1.05rem !important; }
  .service-card p { font-size: 12.5px !important; margin-top: 8px !important; }
  .service-card .btn { font-size: 12.5px !important; padding: 10px 18px !important; margin-top: 12px !important; }
}

@media (max-width: 480px) {
  .service-card h3 { font-size: 1.3rem !important; }
}

/* PUNTOS DE RETIRO */
.pickup { background: var(--ink); color: var(--cream); padding: clamp(72px, 11vw, 160px) 0; border-top: 1px solid rgba(246,244,240,.14); }
.pickup__intro { max-width: 720px; }
.pickup__intro h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--cream); margin: 18px 0 0;
}
.pickup__intro p {
  font-weight: 300; font-size: 18px; line-height: 1.6; color: rgba(246,244,240,.78);
  margin: 20px 0 0; max-width: 600px;
}
.pickup__row { display: flex; gap: clamp(32px, 5vw, 56px); margin-top: 56px; align-items: stretch; }
.pickup__list { flex: 1 1 0; min-width: 0; border-top: 1px solid rgba(246,244,240,.2); }
.pickup__map { flex: 0 0 40%; position: relative; min-width: min(220px, 100%); border-radius: 8px; overflow: hidden; }
.pickup__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.pickup__cta-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; margin-top: clamp(48px, 6vw, 72px); }

.pickup-province { border-bottom: 1px solid rgba(246,244,240,.2); }
.pickup-province__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; background: transparent; border: none; cursor: pointer; padding: 26px 4px;
}
.pickup-province__name { font-family: var(--font); font-weight: 700; font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--cream); }
.pickup-province__meta { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.pickup-province__count { font-family: var(--font); font-weight: 500; font-size: 12px; letter-spacing: .06em; color: rgba(246,244,240,.65); }
.pickup-province__sign {
  font-family: var(--font); font-weight: 300; font-size: 26px; line-height: 1; color: var(--accent);
  width: 20px; text-align: center; transition: transform .35s ease; display: inline-block;
}
.pickup-province__panel { overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1), opacity .35s ease; max-height: 0; opacity: 0; }
.pickup-province.is-open .pickup-province__sign { transform: rotate(45deg); }
.pickup-province.is-open .pickup-province__panel { opacity: 1; }
.pickup-province__items { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 4px 30px; }
.pickup-location {
  display: inline-flex; flex-direction: column; font-family: var(--font); font-weight: 500; font-size: 14px;
  background: transparent; border: 1px solid rgba(246,244,240,.4); color: var(--cream);
  border-radius: 14px; padding: 12px 20px; cursor: pointer; transition: all .2s ease;
}
.pickup-location:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.pickup-location span:last-child { font-family: var(--font); font-weight: 300; font-size: 12px; opacity: .7; margin-top: 2px; }

@media (max-width: 760px) {
  .pickup__row { flex-direction: column; }
  .pickup-province__items { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}

/* NOSOTROS */
.about { background: var(--cream); color: var(--ink); padding: clamp(72px, 11vw, 160px) 0; }
.about__intro { display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__photo { flex: 1 1 320px; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; min-width: min(280px, 100%); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__text { flex: 1 1 420px; min-width: min(300px, 100%); }
.about__text h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1; letter-spacing: -.01em; color: var(--ink); margin: 18px 0 0;
}
.about__text p { font-weight: 300; font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 20px 0 0; }

.about__quote {
  max-width: 860px; margin: clamp(96px, 12vw, 140px) auto; padding: 0 clamp(20px, 5vw, 44px);
  text-align: center; position: relative;
}
.about__quote-rule { width: 44px; height: 1px; background: var(--accent); margin: 0 auto 32px; }
.about__quote-rule:last-child { margin: 32px auto 0; }
.about__quote p {
  font-family: var(--font); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.45; color: var(--ink); margin: 0;
}

.founders {
  margin-top: clamp(56px, 7vw, 80px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 32px;
}
.founder { display: flex; gap: 20px; align-items: flex-start; }
.founder img { width: 88px; height: 88px; border-radius: 999px; object-fit: cover; flex: 0 0 auto; }
.founder h3 { font-family: var(--font); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin: 0; }
.founder__role { font-family: var(--font); font-weight: 500; font-size: 12.5px; color: var(--accent); margin-top: 4px; }
.founder p { font-weight: 400; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 10px 0 0; }

.backers { margin-top: clamp(96px, 12vw, 140px); overflow: hidden; }
.backers__label {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .13em; font-size: 12px; color: var(--ink-soft); text-align: center;
}
.backers__viewport {
  margin-top: 36px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.backers__track { display: flex; width: max-content; gap: clamp(28px, 4vw, 40px); animation: marquee 28s linear infinite; }
.backers__viewport:hover .backers__track { animation-play-state: paused; }
.backers__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; width: 150px; flex: 0 0 auto; }
.backers__logo { height: 56px; display: flex; align-items: center; justify-content: center; }
.backers__logo img { max-height: 56px; max-width: 130px; object-fit: contain; }
.backers__item p { font-weight: 300; font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 180px; }

@media (max-width: 760px) {
  .founders { flex-direction: column; align-items: center; text-align: center; }
  .founder { flex-direction: column; align-items: center; text-align: center; }
  .founder p { text-align: left !important; }
  .founder img { width: 96px !important; height: 96px !important; }
}

/* FAQ */
.faq { background: var(--cream); padding: clamp(72px, 11vw, 160px) 0; border-top: 1px solid rgba(74,90,102,.18); }
.faq h2 {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--ink); margin: 18px 0 0;
}
.faq__tabs { margin-top: 36px; }
.faq-tab {
  font-family: var(--font); font-weight: 500; font-size: 14px; border-radius: 999px;
  padding: 11px 24px; cursor: pointer; transition: all .25s ease;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
}
.faq-tab:hover { background: rgba(28,45,54,.06); transform: scale(1.06); }
.faq-tab.is-active { background: var(--ink); color: var(--cream); }
.faq-tab.is-active:hover { background: var(--ink); }

.faq__list { margin-top: 32px; border-top: 1px solid rgba(74,90,102,.2); animation: fadeIn .4s ease; }
.faq-item { border-bottom: 1px solid rgba(74,90,102,.2); }
.faq-item__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; background: transparent; border: none; cursor: pointer; padding: 24px 4px;
}
.faq-item__q { font-family: var(--font); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); }
.faq-item__sign {
  font-family: var(--font); font-weight: 300; font-size: 26px; line-height: 1; color: var(--accent);
  flex: 0 0 auto; transition: transform .35s ease; display: inline-block;
}
.faq-item.is-open .faq-item__sign { transform: rotate(45deg); }
.faq-item__panel { overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1), opacity .35s ease; max-height: 0; opacity: 0; }
.faq-item.is-open .faq-item__panel { opacity: 1; }
.faq-item__answer { font-weight: 300; font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; padding: 0 4px 28px; max-width: 680px; }
.faq__cta-row { display: flex; justify-content: center; margin-top: 48px; }

@media (max-width: 760px) {
  .wineries__chips, .faq__tabs {
    flex-wrap: nowrap !important; overflow-x: auto; justify-content: flex-start !important;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    padding: 0 4px;
  }
  .wineries__chips::-webkit-scrollbar, .faq__tabs::-webkit-scrollbar { display: none; }
  .wineries__chips .chip, .faq__tabs .faq-tab { flex: 0 0 auto; white-space: nowrap; }
}

/* PRE INSCRIPCION */
.signup { background: var(--cream); padding: clamp(72px, 11vw, 160px) 0; border-top: 1px solid rgba(74,90,102,.18); }
.signup__intro { text-align: center; }
.signup__intro h2 {
  font-family: var(--font); font-weight: 400; font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--ink); margin: 0;
}
.signup__intro p { font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 16px 0 0; }
.signup__form { display: flex; flex-direction: column; gap: 16px; margin-top: clamp(36px, 5vw, 48px); }

/* FOOTER */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(56px, 8vw, 96px) 0 36px; }
.site-footer__top {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-end; justify-content: space-between;
  padding-bottom: 48px; border-bottom: 1px solid rgba(246,244,240,.16);
}
.site-footer__brand { max-width: 420px; }
.site-footer__brand img { height: 38px; }
.site-footer__brand p {
  font-family: var(--font); font-style: italic; font-weight: 300; font-size: 1.35rem;
  line-height: 1.35; color: rgba(246,244,240,.85); margin: 22px 0 0;
}
.site-footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; padding: 48px 0;
}
.site-footer__col-title {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .13em; font-size: 11px; color: var(--accent); margin-bottom: 16px;
}
.site-footer__cols a {
  display: block; font-family: var(--font); font-weight: 300; font-size: 15px;
  color: rgba(246,244,240,.8); padding: 5px 0; overflow-wrap: break-word;
}
.site-footer__cols a:hover { color: var(--accent); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 8px;
}
.site-footer__bottom span { font-family: var(--font); font-weight: 300; font-size: 13px; color: rgba(246,244,240,.55); }
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a { font-family: var(--font); font-weight: 300; font-size: 13px; color: rgba(246,244,240,.55); }
.site-footer__legal a:hover { color: var(--accent); }

/* WINERY MODAL */
.winery-modal { position: fixed; inset: 0; z-index: 100; }
.winery-modal__backdrop {
  position: absolute; inset: 0; background: rgba(28,45,54,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.winery-modal { display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; padding: clamp(16px, 4vw, 56px); }
.winery-modal__panel {
  position: relative; width: 100%; max-width: 860px; background: var(--ink); color: var(--cream);
  border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.5); padding: clamp(28px, 4vw, 52px);
  animation: modalIn .3s cubic-bezier(.22,1,.36,1);
}
.winery-modal__close {
  position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 999px;
  background: rgba(246,244,240,.08); border: 1px solid rgba(246,244,240,.2); color: var(--cream);
  font-size: 22px; line-height: 1; cursor: pointer; transition: color .25s ease, border-color .25s ease;
}
.winery-modal__close:hover { color: var(--accent); border-color: var(--accent); transform: scale(1.06); }
.winery-modal__region {
  font-family: var(--font); font-weight: 500; text-transform: uppercase;
  letter-spacing: .13em; font-size: 12px; color: var(--accent);
}
.winery-modal__name {
  font-family: var(--font); font-weight: 700; font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05; letter-spacing: -.01em; color: var(--cream); margin: 10px 0 0; max-width: 90%;
}
.winery-modal__country {
  display: inline-block; margin-top: 14px; font-family: var(--font); font-weight: 500;
  font-size: 12px; letter-spacing: .04em; color: var(--cream);
  border: 1px solid rgba(246,244,240,.32); border-radius: 999px; padding: 6px 14px;
}
.winery-modal__location-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; }
.winery-modal__location-row span { font-family: var(--font); font-weight: 300; font-size: 15px; color: rgba(246,244,240,.75); }
.winery-modal__location-row a {
  font-family: var(--font); font-weight: 500; font-size: 13px; color: var(--accent);
  border-bottom: 1px solid rgba(111,154,177,.5);
}
.winery-modal__gallery {
  display: flex; gap: 14px; margin-top: 30px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; padding-bottom: 4px;
}
.winery-modal__gallery-item { flex: 0 0 min(240px, 80%); scroll-snap-align: start; }
.winery-modal__gallery-item div {
  aspect-ratio: 16/10; border: 1px solid rgba(246,244,240,.22); border-radius: 6px;
  overflow: hidden;
}
.winery-modal__gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.winery-modal__editorial { margin-top: 30px; max-width: 680px; }
.winery-modal__editorial p { font-weight: 300; font-size: 16.5px; line-height: 1.7; color: rgba(246,244,240,.82); margin: 0 0 16px; }
.winery-modal__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.winery-modal__ctas .btn { padding: 15px 30px; }
