:root {
  --bg: #FCF5E5;
  --surface: #F6EFE3;
  --surface-2: #EFE6D8;
  --wine-image-bg: #EAE3D7;
  --text: #000000;
  --text-soft: #5F5A53;
  --cream: #FCF5E5;
  --white: #FFFFFF;
  --teal: #53AF85;
  --teal-deep: #3D8367;
  --coral: #EA6D46;
  --pink: #DE4663;
  --rose: #9E2A5F;
  --blue: #3A7FB4;
  --blue-deep: #0C2975;
  --gold: #C5A03F;
  --olive: #ACA56F;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.16);
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1000;
}

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

button {
  font: inherit;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.03em;
}

.mp-page {
  width: 100%;
}

.mp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(252,245,229,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.mp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mp-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.mp-nav a {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color .2s ease;
}

.mp-nav a:hover {
  color: var(--text);
}

.mp-nav-cta {
  background: var(--coral);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease !important;
}

.mp-nav-cta:hover {
  background: var(--rose);
}

.mp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 96px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.mp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(252,245,229,0.92) 0%,
      rgba(252,245,229,0.88) 35%,
      rgba(252,245,229,0.55) 60%,
      rgba(252,245,229,0.2) 100%
    ),
    url('../imagenes/box2_mayo.jpg') 65% center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.mp-hero-copy {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mp-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.mp-overline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.mp-overline-light {
  color: var(--coral);
}

.mp-hero h1 {
  font-size: clamp(64px, 8vw, 108px);
  line-height: .92;
  margin-bottom: 28px;
  max-width: 820px;
}

.mp-hero h1 em {
  display: block;
  color: var(--coral);
  font-style: normal;
}

.mp-hero p {
  font-size: 16px;
  color: #1E1A17;
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.mp-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.mp-btn {
  border: none;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mp-btn-primary {
  background: var(--coral);
  color: var(--cream);
}

.mp-btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.mp-btn-ghost,
.mp-btn-outline {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--border-strong);
  padding: 15px 28px;
  font-weight: 600;
  font-size: 12px;
}

.mp-btn-ghost:hover,
.mp-btn-outline:hover {
  color: var(--text);
  border-color: rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.45);
}

/* ===================== */
/* FOOTER */
/* ===================== */

.mp-footer {
  padding: 64px 40px 34px;
  background: #E9DECA;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* TOP */
.mp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

/* BRAND */
.mp-footer-brand-block {
  max-width: 420px;
}

.mp-footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 36px;
}

.mp-logo .logo-img {
  height: 56px;
}

.mp-footer-logo .logo-img {
  height: 56px;
}

.mp-footer-lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
}

/* COLUMNAS */
.mp-footer-nav-columns {
  display: flex;
  gap: 60px;
}

.mp-footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}

.mp-footer-col-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E06A43;
  font-weight: 700;
  margin-bottom: 10px;
}

.mp-footer-nav-col a {
  font-size: 14px;
  color: #5a5a5a;
  text-decoration: none;
  transition: 0.2s;
}

.mp-footer-nav-col a:hover {
  color: #111;
}

/* SOCIAL */
.mp-footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mp-footer-social-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E06A43;
  font-weight: 700;
  margin-bottom: 14px;
}

.mp-footer-social-icons {
  display: flex;
  gap: 14px;
}

.mp-footer-social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.mp-footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.9);
}

.mp-footer-social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* BOTTOM */
.mp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mp-footer-text {
  font-size: 12px;
  color: #6a6a6a;
}

.mp-footer-links {
  display: flex;
  gap: 18px;
}

.mp-footer-links a {
  font-size: 13px;
  color: #6a6a6a;
  text-decoration: none;
}

.mp-footer-links a:hover {
  color: #111;
}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 768px) {
  .mp-footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .mp-footer-nav-columns {
    flex-direction: column;
    gap: 30px;
  }

  .mp-footer-social-block {
    align-items: flex-start;
  }

  .mp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.mp-btn-footer {
  background: var(--coral);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.mp-btn-footer:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.mp-box-card-wrap,
.mp-wines,
.mp-detail-section,
.mp-extras,
.mp-footer-cta {
  padding-left: 40px;
  padding-right: 40px;
}

.mp-box-card-wrap {
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.mp-box-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mp-box-card-top {
  padding: 34px 38px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.mp-chip {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}

.mp-box-card h2 {
  font-size: 44px;
  margin-bottom: 8px;
}

.mp-box-card-top p {
  color: var(--text-soft);
}

.mp-price-block {
  text-align: right;
}

.mp-price-block strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.mp-price-block span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.mp-box-card-bottom {
  padding: 18px 38px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.35);
}

.mp-box-card-bottom span {
  font-size: 13px;
  color: var(--text-soft);
}

.mp-wines {
  padding-top: 72px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mp-section-head {
  max-width: 1100px;
  margin: 0 auto 28px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mp-section-head h2 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: .96;
}

.mp-wine-grid {
  display: flex;
  justify-content: flex-start;
  margin: 16px auto 0;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
}

.mp-wine-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  box-shadow: none;
}

.mp-wine-card:hover,
.mp-wine-card.is-active {
  border-color: var(--coral);
  background: rgba(234,109,70,0.08);
}

.mp-wine-thumb {
  display: none;
}

.mp-wine-card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.mp-wine-card small,
.mp-wine-card em {
  display: none;
}

.mp-detail-section {
  padding-top: 20px;
  padding-bottom: 56px;
  margin-top: 20px;
}

#wine-detail {
  max-width: 1100px;
  margin: 0 auto;
}

.mp-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

.mp-detail-top {
  display: grid;
  grid-template-columns: 32% 68%;
}

.mp-detail-left {
  background: #F5EBDD;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  border-right: 1px solid rgba(0,0,0,0.04);
}

.mp-detail-photo {
  width: 100%;
  height: 500px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5EBDD;
  margin: 0 0 8px;
  padding: 0;
  overflow: hidden;
}

.mp-detail-photo img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  object-position: center;
  display: block;
  clip-path: inset(16px 16px 16px 16px);
}


.mp-detail-left h3 {
  font-size: 24px;
  line-height: 1.02;
  margin: 0;
  color: var(--text);
  text-align: center;
}

.mp-detail-left p {
  color: rgba(255,255,255,0.84);
  margin-bottom: 18px;
}

.mp-detail-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mp-detail-right {
  padding: 30px 30px 24px;
  background: #fcfaf7;
}

.mp-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

.mp-detail-grid span {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 8px;
}

.mp-detail-grid p {
  color: #454341;
  font-size: 16px;
  line-height: 1.7;
}

.mp-detail-description-block {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.mp-detail-description-block span {
  display: block;
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}

.mp-detail-description-block p {
  margin: 0;
  color: #454341;
  font-size: 16px;
  line-height: 1.7;
}

.mp-detail-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mp-detail-bottom p {
  color: #67615d;
  font-size: 15px;
  line-height: 1.65;
}

.mp-detail-bottom strong {
  color: var(--text);
}

.mp-extras {
  padding-top: 12px;
  padding-bottom: 56px;
}

.mp-extras-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mp-extra-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.mp-extra-mini {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.mp-extra-card h3 {
  font-size: 26px;
  line-height: 1.04;
  margin-bottom: 10px;
}

.mp-extra-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.72;
}

.mp-footer-cta {
  max-width: 1100px;
  margin: 0 auto 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 38px 40px;
}

.mp-footer-cta h2 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: .96;
  margin-bottom: 8px;
}

.mp-footer-cta p {
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .mp-header,
  .mp-box-card-top,
  .mp-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-price-block {
    text-align: left;
  }

  .mp-detail-top,
  .mp-extras-grid {
    grid-template-columns: 1fr;
  }

  .mp-wine-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 16px auto 0;
  }

  .mp-detail-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .mp-detail-photo {
    height: 340px;
    min-height: 340px;
  }
  .mp-detail-left {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .mp-header,
  .mp-box-card-wrap,
  .mp-wines,
  .mp-detail-section,
  .mp-extras {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mp-header {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 14px;
  }

  .mp-logo .logo-img {
    height: 56px;
  }

  .mp-nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .mp-hero {
    min-height: 100vh;
    padding: 110px 20px 120px;
  }

  .mp-box-card-top,
  .mp-box-card-bottom,
  .mp-footer-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mp-footer-logo .logo-img {
    height: 56px;
  }

  .mp-detail-grid {
    grid-template-columns: 1fr;
  }

  .mp-detail-description-block {
    margin-top: 10px;
  }

  .mp-hero-actions {
    flex-direction: column;
  }

  .mp-btn,
  .mp-btn-primary,
  .mp-btn-ghost,
  .mp-btn-outline,
  .mp-btn-footer {
    width: 100%;
  }
}
