:root {
  --bg: #050505;
  --cream: #e6dbc0;
  --white: #fff;
  --gold: #b18a57;
  --green: #b8ff2c;
  --line: rgba(184, 255, 44, 0.22);
  --gold-line: rgba(177, 138, 87, 0.28);
  --text-soft: rgba(255, 255, 255, 0.74);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  background: #050505;
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}
.hero .container {
  width: min(1440px, calc(100% - 48px));
}
@media (min-width: 1400px) {
  .container {
    width: min(1480px, calc(100% - 64px));
  }
  .hero .container {
    width: min(1540px, calc(100% - 64px));
  }
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.86),
    rgba(0, 0, 0, 0.42),
    transparent
  );
  backdrop-filter: blur(5px);
}
.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 130px 1fr 150px;
  align-items: center;
  gap: 20px;
}
.brand-why img {
  width: 96px;
}
.brand-alma {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 700;
}
.brand-alma img {
  width: 50px;
}
.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  color: #f3f3f3;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.3px;
  font-weight: 700;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
}
.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040404;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 24%, rgba(0, 0, 0, 0.62) 45%, rgba(16, 0, 6, 0.44) 62%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.78)),
    url("../img/hero-whynot-bg.jpg") 76% center/cover no-repeat;
  filter: saturate(0.9) brightness(0.6);
  transform: scale(1.02);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 760px;
  padding-top: 118px;
  padding-bottom: 46px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 560px;
}
.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 7vw, 92px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-why {
  width: 210px;
  margin: 10px 0 26px;
}
.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  max-width: 430px;
  margin-bottom: 28px;
}
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--green);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}
.btn-outline:hover,
.btn-ghost:hover {
  background: rgba(184, 255, 44, 0.08);
  transform: translateY(-2px);
}
.hero-meta {
  display: flex;
  align-items: center;
  margin-top: 26px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 13px;
  font-weight: 700;
}
.hero-location i {
  color: var(--gold);
  font-size: 18px;
}
.hero-scroll {
  position: absolute;
  right: 10px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  z-index: 3;
}
.hero-scroll i {
  font-size: 23px;
  color: var(--green);
}
.bottle,
.hero-bottles,
.scroll-note {
  display: none;
}
.section-pad {
  padding: 72px 0;
}
.section-kicker {
  text-align: center;
  margin-bottom: 8px;
}
.section-kicker.left {
  text-align: left;
}
.section-title {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: 1px;
}
.section-lead {
  color: var(--text-soft);
  text-align: center;
  margin: 12px auto 42px;
  max-width: 720px;
}
.collection {
  background: linear-gradient(180deg, #050505, #0b0b0b);
}
.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.wine-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  min-height: 398px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 22px;
  transition: 0.25s;
}
.wine-card.highlight {
  border-color: rgba(177, 138, 87, 0.48);
  background: linear-gradient(
    180deg,
    rgba(108, 13, 28, 0.22),
    rgba(255, 255, 255, 0.012)
  );
}
.wine-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}
.wine-card img {
  max-height: 335px;
  margin: auto;
}
.wine-info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 31px;
  line-height: 1.04;
  margin-bottom: 16px;
}
.wine-info p,
.wine-info li {
  color: var(--text-soft);
  font-size: 13px;
}
.wine-info ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.wine-info li {
  display: flex;
  gap: 8px;
}
.wine-info i,
.wine-info a {
  color: var(--green);
}
.wine-info a {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
}
.center {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.story {
  padding: 86px 0;
  background: #050505;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: center;
}
.story-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 0.98;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.story-copy p {
  color: var(--text-soft);
  max-width: 500px;
  margin-bottom: 26px;
}
.film-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
}
.film-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.film-card button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--green);
  background: rgba(0, 0, 0, 0.38);
  color: var(--green);
  font-size: 38px;
  display: grid;
  place-items: center;
}
.film-card span {
  position: absolute;
  left: 50%;
  top: calc(50% + 70px);
  transform: translateX(-50%);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}
.values {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: #070707;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.values article {
  padding: 42px 28px;
  text-align: center;
  border-right: 1px solid var(--gold-line);
}
.values article:last-child {
  border-right: 0;
}
.values i {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 16px;
}
.values h3 {
  color: var(--cream);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.values p {
  font-size: 13px;
  color: var(--text-soft);
}
.newsletter {
  border-bottom: 1px solid var(--gold-line);
  background: #050505;
}
.news-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  align-items: center;
  gap: 38px;
}
.news-grid p {
  color: var(--text-soft);
}
.mail-form {
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 70px;
  border: 1px solid var(--gold-line);
}
.mail-form input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  padding: 0 24px;
  font-family: inherit;
}
.mail-form button {
  border: 0;
  border-left: 1px solid var(--gold-line);
  background: transparent;
  color: var(--green);
  font-size: 32px;
}
.socials {
  display: flex;
  gap: 16px;
}
.socials a {
  color: var(--green);
  font-size: 28px;
}
.footer {
  background: #070707;
  padding: 46px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}
.footer-brand img {
  width: 98px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--text-soft);
  max-width: 260px;
  margin-bottom: 12px;
}
.footer-brand a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-col h4 {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--text-soft);
  font-size: 13px;
}
.footer-mark {
  border-left: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
}
.footer-mark img {
  width: 118px;
  opacity: 0.8;
}
.copy {
  border-top: 1px solid rgba(177, 138, 87, 0.16);
  text-align: center;
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(230, 219, 192, 0.55);
  font-size: 12px;
}
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 100px 1fr auto;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .brand-alma {
    display: none;
  }
  .nav-menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid var(--line);
  }
  .nav-menu.show {
    display: flex;
  }
  .nav-menu a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(184, 255, 44, 0.12);
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 46px;
    display: block;
  }
  .hero-copy {
    text-align: center;
    margin: auto;
  }
  .hero-copy p:not(.eyebrow),
  .hero-why,
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }
  .wine-grid,
  .story-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values article:nth-child(2) {
    border-right: 0;
  }
  .values article:nth-child(n + 3) {
    border-top: 1px solid var(--gold-line);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-mark {
    border-left: 0;
    justify-items: start;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .site-header {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.55),
      transparent
    );
  }
  .header-inner {
    min-height: 74px;
  }
  .brand-why img {
    width: 76px;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.94)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.4) 100%),
      url("../img/hero-whynot-bg.jpg") 66% center/cover no-repeat;
  }
  .hero-grid {
    padding-top: 112px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-why {
    width: 170px;
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-scroll {
    display: none;
  }
  .section-pad,
  .story {
    padding: 54px 0;
  }
  .section-title {
    font-size: 35px;
  }
  .wine-grid {
    gap: 16px;
  }
  .wine-card {
    grid-template-columns: 42% 58%;
    padding: 14px;
    min-height: 310px;
  }
  .wine-info h3 {
    font-size: 25px;
  }
  .wine-card img {
    max-height: 270px;
  }
  .story-copy {
    text-align: center;
  }
  .section-kicker.left {
    text-align: center;
  }
  .story-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .film-card,
  .film-card img {
    min-height: 300px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values article {
    border-right: 0;
    border-top: 1px solid var(--gold-line);
    padding: 34px 24px;
  }
  .values article:first-child {
    border-top: 0;
  }
  .news-grid {
    padding: 34px 0;
    text-align: center;
  }
  .mail-form {
    height: 56px;
  }
  .socials {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand img,
  .footer-mark img {
    margin-inline: auto;
  }
  .footer-brand p {
    margin-inline: auto;
  }
  .footer-mark {
    justify-items: center;
  }
}

/* Ajuste hero: título en 2 líneas exactas */
.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 6.4vw, 88px);
  color: var(--white);
  line-height: 0.94;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 560px;
}

.hero-why {
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero-title {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero-title {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
    letter-spacing: 0.8px;
    text-align: center;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-copy {
    max-width: 100%;
  }
}

/* Fondo real del hero Why Not */
.hero-bg {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.62) 38%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.42) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.76) 100%),
    url("../img/hero-whynot-bg.jpg") center center / cover no-repeat;
}

@media (max-width: 620px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.94)),
      url("../img/hero-whynot-bg.jpg") center top / cover no-repeat;
  }
}

@media (max-width: 980px) {
  .hero-location {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    max-width: 100%;
  }
  .hero-meta {
    justify-content: center;
    margin-top: 20px;
  }
  .hero-location {
    font-size: 12px;
    letter-spacing: 2px;
  }
}


/* Ajuste final hero solicitado */
.hero {
  min-height: 820px;
}

.hero-grid {
  justify-content: flex-start;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 34%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.78) 100%),
    url("../img/hero-whynot-bg.jpg") center center / cover no-repeat;
  filter: saturate(0.94) brightness(0.62);
}

.hero-location {
  gap: 8px;
}

.hero-flag {
  font-size: 15px;
  line-height: 1;
  filter: saturate(1.05);
}

@media (max-width: 980px) {
  .hero-grid {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy p:not(.eyebrow),
  .hero-why,
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta,
  .hero-location {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.95)),
      url("../img/hero-whynot-bg.jpg") center top / cover no-repeat;
  }

  .hero {
    min-height: auto;
  }
}


/* Ajuste final solicitado: texto principal centrado, sin scroll y bandera Perú */
.hero {
  min-height: 100vh;
}

.hero-grid {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  width: min(860px, 100%);
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy .hero-title,
.hero-copy .hero-why,
.hero-copy p,
.hero-copy .hero-meta {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-copy .hero-title {
  font-size: clamp(56px, 6.2vw, 92px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
}

.hero-copy .btn-outline {
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 13px;
  font-weight: 700;
}

.hero-location i,
.hero-scroll,
.scroll-note {
  display: none !important;
}

.peru-flag {
  width: 22px;
  height: 15px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22);
}

.peru-flag span:nth-child(1),
.peru-flag span:nth-child(3) {
  background: #d91023;
}

.peru-flag span:nth-child(2) {
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 106px;
    padding-bottom: 46px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .hero-title {
    font-size: clamp(39px, 11vw, 54px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-location {
    font-size: 12px;
    letter-spacing: 1.9px;
  }

  .peru-flag {
    width: 20px;
    height: 14px;
  }
}


/* Iconos personalizados sección valores */
.values .value-icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 10px rgba(184, 255, 44, 0.16));
}

.values article {
  display: grid;
  justify-items: center;
}

@media (max-width: 620px) {
  .values .value-icon-img {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }
}


/* Imagen estática de inspiración: reemplazo del antiguo Play film */
.inspiration-card {
  border: 1px solid rgba(184, 255, 44, 0.22);
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86) saturate(1.05);
}

.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.36), rgba(0,0,0,0.02) 46%, rgba(0,0,0,0.22)),
    linear-gradient(180deg, rgba(184,255,44,0.06), rgba(0,0,0,0.18));
}

.inspiration-card button,
.inspiration-card span {
  display: none !important;
}

@media (max-width: 620px) {
  .inspiration-card img {
    min-height: 280px;
    object-position: center;
  }
}


/* Formulario premium Why Not centrado */
.subscribe-full {
  position: relative;
  overflow: hidden;
  background: #030303;
  border-top: 1px solid rgba(177, 138, 87, 0.12);
  border-bottom: 1px solid rgba(177, 138, 87, 0.16);
}

.subscribe-centered {
  min-height: min(860px, 100vh);
  display: grid;
  align-items: center;
  padding: clamp(42px, 5.2vw, 68px) 0;
  isolation: isolate;
}

.subscribe-art-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76) 70%),
    linear-gradient(90deg, rgba(0,0,0,0.48), rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.48)),
    url("../img/formulario-whynot-bg.jpg") center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  will-change: auto;
}

.subscribe-art-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.02), rgba(0,0,0,0.32) 66%, rgba(0,0,0,0.68)),
    linear-gradient(180deg, rgba(0,0,0,0.34), rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.44));
}

.subscribe-center-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.subscribe-panel {
  width: min(820px, 100%);
  padding: clamp(22px, 3.2vw, 34px);
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.subscribe-panel .section-kicker {
  color: var(--green);
  text-align: center;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 3px;
}

.subscribe-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: .9;
  text-transform: uppercase;
  margin: 0 0 14px;
  letter-spacing: 1px;
}

.subscribe-intro {
  color: rgba(230, 219, 192, 0.82);
  max-width: 690px;
  margin: 0 auto 24px;
  font-size: 15.5px;
  line-height: 1.55;
}

.whynot-contact-form {
  display: grid;
  gap: 13px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.form-control {
  min-height: 52px;
  border: 1px solid rgba(177, 138, 87, 0.34);
  background: rgba(4, 6, 7, 0.64);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  transition: border-color .2s ease, background .2s ease;
}

.form-control:focus-within {
  border-color: rgba(184, 255, 44, 0.58);
  background: rgba(5, 8, 10, 0.78);
}

.form-control i {
  color: var(--gold);
  font-size: 20px;
  display: grid;
  place-items: center;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: 13.5px;
  padding: 0 16px 0 0;
}

.form-control input::placeholder,
.form-control textarea::placeholder {
  color: rgba(230, 219, 192, 0.54);
}

.form-control select {
  color: rgba(230, 219, 192, 0.78);
  appearance: none;
  cursor: pointer;
}

.select-control {
  position: relative;
}

.select-control::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gold);
  pointer-events: none;
}

.textarea-control {
  min-height: 96px;
  align-items: start;
  padding-top: 14px;
}

.textarea-control textarea {
  min-height: 70px;
  resize: vertical;
  line-height: 1.42;
}

.interest-checks {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 10px 20px;
  align-items: center;
  color: rgba(230, 219, 192, 0.82);
  font-size: 12.8px;
}

.interest-checks label,
.accept-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.interest-checks input,
.accept-line input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.accept-line {
  color: rgba(230, 219, 192, 0.82);
  line-height: 1.42;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 12.8px;
}

.btn-submit {
  width: min(410px, 100%);
  min-height: 54px;
  margin: 3px auto 0;
  border: 1px solid rgba(177, 138, 87, 0.76);
  background: rgba(0, 0, 0, 0.42);
  color: var(--gold);
  font-family: inherit;
  font-size: 12.6px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(177, 138, 87, 0.12);
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: #050505;
  background: linear-gradient(135deg, var(--gold), #ddb66f);
}

.safe-note,
.form-status {
  color: rgba(230, 219, 192, 0.62);
  font-size: 12px;
  margin: 0;
}

.safe-note i {
  color: var(--gold);
  margin-right: 7px;
}

.form-status {
  min-height: 18px;
  font-weight: 700;
}

.form-status.ok {
  color: var(--green);
}

.form-status.error {
  color: #ffb3b3;
}

@media (max-width: 980px) {
  .subscribe-centered {
    min-height: auto;
    padding: 50px 0;
  }

  .subscribe-panel {
    width: min(760px, 100%);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .interest-checks {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .subscribe-centered {
    padding: 38px 0;
  }

  .subscribe-panel {
    padding: 24px 18px;
  }

  .subscribe-panel h2 {
    font-size: 46px;
  }

  .subscribe-intro {
    font-size: 14px;
  }

  .interest-checks {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    letter-spacing: 1.6px;
  }

  .safe-note {
    line-height: 1.45;
  }
}





/* Footer centrado estilo editorial, sin icono de Facebook */
.footer {
  background: #050505;
  padding: 70px 0 22px;
}

.footer-centered .copy {
  margin-top: 48px;
}

.footer-center-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 44px;
}

.footer-block {
  display: grid;
  gap: 28px;
}

.footer-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.footer-title-line {
  width: min(18vw, 226px);
  height: 1px;
  background: rgba(177, 138, 87, 0.24);
}

.footer-title-row h4 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 16px;
  font-weight: 500;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 54px;
}

.footer-links-row a {
  color: rgba(245, 240, 232, 0.96);
  font-size: 18px;
  line-height: 1.35;
}

.footer-links-row a:hover {
  color: var(--gold);
}

.copy {
  border-top: 1px solid rgba(177, 138, 87, 0.16);
  text-align: center;
  margin-top: 40px;
  padding-top: 18px;
  color: rgba(230, 219, 192, 0.55);
  font-size: 12px;
}

@media (max-width: 900px) {
  .footer {
    padding: 58px 0 20px;
  }

  .footer-center-layout {
    gap: 38px;
  }

  .footer-title-row {
    gap: 18px;
  }

  .footer-title-row h4 {
    letter-spacing: 5px;
    font-size: 15px;
  }

  .footer-links-row {
    gap: 18px 34px;
  }

  .footer-links-row a {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .footer {
    padding: 50px 0 18px;
  }

  .footer-center-layout {
    gap: 30px;
  }

  .footer-block {
    gap: 20px;
  }

  .footer-title-row {
    gap: 14px;
  }

  .footer-title-line {
    width: min(14vw, 70px);
  }

  .footer-title-row h4 {
    font-size: 13px;
    letter-spacing: 4px;
    text-align: center;
  }

  .footer-links-row {
    gap: 14px 20px;
    flex-direction: row;
  }

  .footer-links-row a {
    font-size: 16px;
    text-align: center;
  }
}


/* Footer final: solo Legal */
.footer-center-layout {
  max-width: 820px;
  gap: 34px;
}

.footer-links-legal {
  gap: 22px 58px;
}

.footer-centered .copy {
  margin-top: 44px;
}

@media (max-width: 620px) {
  .footer-center-layout {
    max-width: 100%;
  }

  .footer-links-legal {
    gap: 16px 24px;
  }
}



/* Página legal: Política de Privacidad */
.legal-page {
  background:
    radial-gradient(circle at top left, rgba(177, 138, 87, 0.08), transparent 34%),
    #050505;
  color: var(--cream);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid rgba(177, 138, 87, 0.16);
  backdrop-filter: blur(10px);
}

.legal-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header img {
  width: 86px;
  height: auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 800;
}

.legal-main {
  padding: 70px 0 40px;
}

.legal-wrap {
  max-width: 1040px;
}

.legal-title {
  text-align: center;
  margin-bottom: 42px;
}

.legal-title h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 10px 0 14px;
}

.legal-title p:last-child {
  color: rgba(230, 219, 192, 0.7);
}

.legal-content {
  columns: 2 380px;
  column-gap: 48px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(177, 138, 87, 0.18);
  background: rgba(0, 0, 0, 0.34);
}

.legal-content h2 {
  break-after: avoid;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.legal-content p,
.legal-content li {
  color: rgba(230, 219, 192, 0.82);
  font-size: 14.5px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 18px;
}

.legal-content li {
  margin-bottom: 7px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 700;
}

.legal-footer {
  padding-top: 0;
}

.accept-line a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .legal-header-inner {
    min-height: 72px;
  }

  .legal-header img {
    width: 72px;
  }

  .legal-main {
    padding: 44px 0 28px;
  }

  .legal-content {
    columns: 1;
    padding: 24px 20px;
  }
}



/* Ajustes finales: navbar legal igual al index y footer con iconos */
.legal-page .site-header {
  position: fixed;
}

.legal-page .legal-main {
  padding-top: 140px;
}

.legal-page .legal-title {
  margin-top: 0;
}

.footer-links-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-links-row a i {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.footer-links-row a span {
  display: inline-block;
}

@media (max-width: 980px) {
  .legal-page .legal-main {
    padding-top: 122px;
  }
}

@media (max-width: 620px) {
  .legal-page .legal-main {
    padding-top: 108px;
  }

  .footer-links-row a {
    gap: 8px;
  }

  .footer-links-row a i {
    font-size: 20px;
  }
}



/* Footer completo también en páginas legales */
.legal-footer-full {
  margin-top: 36px;
  border-top: 1px solid rgba(177, 138, 87, 0.16);
}

.legal-footer-full .footer-center-layout {
  max-width: 820px;
}

.legal-footer-full .footer-links-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.legal-footer-full .footer-links-row a i {
  color: var(--gold);
  font-size: 22px;
}

@media (max-width: 620px) {
  .legal-footer-full {
    margin-top: 22px;
  }
}



/* Carrusel móvil automático para colección de bebidas */
@media (max-width: 760px) {
  .collection {
    overflow: hidden;
  }

  .wine-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 calc((100vw - min(360px, calc(100vw - 48px))) / 2) 10px;
    margin-inline: calc(-1 * ((100vw - min(360px, calc(100vw - 48px))) / 2));
    scrollbar-width: none;
  }

  .wine-carousel::-webkit-scrollbar {
    display: none;
  }

  .wine-carousel .wine-card {
    flex: 0 0 min(360px, calc(100vw - 48px));
    width: min(360px, calc(100vw - 48px));
    min-height: 300px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    grid-template-columns: 38% 62%;
    padding: 18px;
  }

  .wine-carousel .wine-card img {
    max-height: 225px;
  }

  .wine-carousel .wine-info h3 {
    font-size: 27px;
    margin-bottom: 10px;
  }

  .wine-carousel .wine-info p,
  .wine-carousel .wine-info li {
    font-size: 12px;
  }

  .wine-carousel .wine-info ul {
    gap: 8px;
    margin: 16px 0;
  }

  .wine-carousel .wine-info a {
    font-size: 11px;
  }

  .wine-carousel.is-paused {
    scroll-behavior: auto;
  }
}

@media (max-width: 420px) {
  .wine-carousel {
    padding: 0 18px 10px;
    margin-inline: -18px;
  }

  .wine-carousel .wine-card {
    flex-basis: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }
}



/* Carrusel móvil automático para colección de 3 bebidas */
@media (max-width: 760px) {
  .collection {
    overflow: hidden;
  }

  .wine-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 calc((100vw - min(360px, calc(100vw - 48px))) / 2) 10px;
    margin-inline: calc(-1 * ((100vw - min(360px, calc(100vw - 48px))) / 2));
    scrollbar-width: none;
  }

  .wine-carousel::-webkit-scrollbar {
    display: none;
  }

  .wine-carousel .wine-card {
    flex: 0 0 min(360px, calc(100vw - 48px));
    width: min(360px, calc(100vw - 48px));
    min-height: 300px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    grid-template-columns: 38% 62%;
    padding: 18px;
  }

  .wine-carousel .wine-card img {
    max-height: 225px;
  }

  .wine-carousel .wine-info h3 {
    font-size: 27px;
    margin-bottom: 10px;
  }

  .wine-carousel .wine-info p,
  .wine-carousel .wine-info li {
    font-size: 12px;
  }

  .wine-carousel .wine-info ul {
    gap: 8px;
    margin: 16px 0;
  }

  .wine-carousel .wine-info a {
    font-size: 11px;
  }

  .wine-carousel.is-paused {
    scroll-behavior: auto;
  }

  .wine-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 12px 0 4px;
  }

  .wine-carousel-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(230, 219, 192, 0.34);
    padding: 0;
    cursor: pointer;
  }

  .wine-carousel-dots button.active {
    width: 22px;
    background: var(--green);
  }
}

@media (min-width: 761px) {
  .wine-carousel-dots {
    display: none;
  }
}

@media (max-width: 420px) {
  .wine-carousel {
    padding: 0 18px 10px;
    margin-inline: -18px;
  }

  .wine-carousel .wine-card {
    flex-basis: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }
}



/* Carrusel móvil automático para valores / arte */
@media (max-width: 760px) {
  .values {
    overflow: hidden;
    padding: 58px 0;
  }

  .values-carousel {
    --value-card-w: min(320px, 100%);
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: max(0px, calc((100% - 320px) / 2));
    -webkit-overflow-scrolling: touch;
    padding: 0 max(0px, calc((100% - 320px) / 2)) 10px;
    margin-inline: auto;
    scrollbar-width: none;
  }

  .values-carousel::-webkit-scrollbar {
    display: none;
  }

  .values-carousel article {
    flex: 0 0 var(--value-card-w);
    width: var(--value-card-w);
    max-width: 320px;
    min-height: 300px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding: 28px 24px;
    border: 1px solid rgba(177, 138, 87, 0.20);
    background:
      radial-gradient(circle at 50% 15%, rgba(184,255,44,0.05), transparent 34%),
      rgba(255,255,255,0.015);
  }

  .values-carousel .value-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 18px;
    filter: drop-shadow(0 0 12px rgba(184, 255, 44, 0.18));
  }

  .values-carousel article h3 {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .values-carousel article p {
    max-width: 250px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.65;
  }

  .values-carousel.is-paused {
    scroll-behavior: auto;
  }

  .values-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 14px 0 0;
  }

  .values-carousel-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(230, 219, 192, 0.34);
    padding: 0;
    cursor: pointer;
  }

  .values-carousel-dots button.active {
    width: 22px;
    background: var(--green);
  }
}

@media (min-width: 761px) {
  .values-carousel-dots {
    display: none;
  }
}

@media (max-width: 420px) {
  .values-carousel {
    --value-card-w: min(300px, 100%);
    scroll-padding-inline: max(0px, calc((100% - 300px) / 2));
    padding-inline: max(0px, calc((100% - 300px) / 2));
  }

  .values-carousel article {
    max-width: 300px;
  }
}



/* Ajuste formulario: quitar duplicado visual y corregir select */
.interest-checks {
  display: none !important;
}

.form-control select {
  background-color: transparent;
  color: rgba(230, 219, 192, 0.88);
}

.form-control select:focus {
  color: var(--cream);
}

.form-control select option {
  background: #070707;
  color: #e6dbc0;
}

.form-control select option:hover,
.form-control select option:checked {
  background: #1a1209;
  color: #ddb66f;
}

.form-control select option:first-child {
  color: rgba(230, 219, 192, 0.64);
}

@media (max-width: 760px) {
  .form-control select option {
    background: #070707;
    color: #e6dbc0;
  }
}



/* Header móvil: logo Why Not centrado y sin hamburguesa */
@media (max-width: 980px) {
  .site-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.62), transparent);
  }

  .header-inner {
    position: relative;
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .brand-why {
    justify-self: center;
    display: grid;
    place-items: center;
  }

  .brand-why img {
    width: 92px;
    margin-inline: auto;
  }

  .menu-toggle,
  .nav-menu,
  .brand-alma {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-why img {
    width: 88px;
  }
}

