/* ROOT */
:root {
    --bg: #FCF5E5;
    --surface: #F6EFE3;
    --surface-2: #EFE6D8;
    --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);
  }
  
  
/* BASE RESET */
*, *::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%;
  }
  
  
/* HEADER */
.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-logo .logo-img {
    height: 56px;
  }
  
  
.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);
  }
  
  
/* HERO */
.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/box4_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;
  }
  
  
/* BUTTONS */
.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);
  }
  
  
.mp-btn-footer {
    background: var(--coral);
    color: var(--cream);
  }
  
  
.mp-btn-footer:hover {
    background: var(--rose);
    transform: translateY(-2px);
  }
  
  
/* BOX-CARD */
.mp-box-card-wrap,
.mp-wines,
.mp-detail-section,
.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);
}
  
  
/* WINES */
.mp-wines {
  padding-top: 72px;
  padding-bottom: 24px;
}

.mp-section-head {
  max-width: 1100px;
  margin: 0 auto 28px;
}

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

.mp-wine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.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;
}
  
  
/* DETAIL */
.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: 34% 66%;
}

.mp-detail-left {
  background: #F5EBDD;
  padding: 18px;
  display: flex;
  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: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5EBDD;
  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-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);
}

/* BLOQUE CTA BOX */
.mp-footer-cta {
  max-width: 1100px;
  margin: 0px auto 60px;
  background: rgba(246, 239, 227, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-soft);
}

.mp-footer-cta h2 {
  font-size: 42px;
  line-height: 1.1;
}

.mp-footer-cta .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-footer-cta .mp-btn-footer:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mp-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .mp-footer-cta h2 {
    font-size: 30px;
  }

  .mp-footer-cta .mp-btn-footer {
    width: 100%;
    text-align: center;
  }
}

/* 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;
}

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

.mp-footer-brand-block {
  max-width: 520px;
}

.mp-footer-nav-columns {
  display: flex;
  align-items: flex-start;
  gap: 54px;
  margin-left: auto;
}

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

.mp-footer-col-title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 8px;
}

.mp-footer-nav-col a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color .2s ease;
}

.mp-footer-nav-col a:hover {
  color: var(--coral);
}



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

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

.mp-footer-lead {
  margin-top: 14px;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.8;
  color: #4A443E;
}

.mp-footer-social-block {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 20px;
}

.mp-footer-social-title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 14px;
}

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

.mp-footer-social-link {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  text-decoration: none;
  overflow: hidden;
  flex-shrink: 0;
}

.mp-footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.92);
}

.mp-footer-social-link img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

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

.mp-footer-text {
  font-size: 12px;
  color: var(--text-soft);
}

.mp-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mp-footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease;
}

.mp-footer-links a:hover {
  color: var(--coral);
}

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

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .mp-footer-top,
  .mp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .mp-footer-nav-columns {
    width: 100%;
    flex-direction: column;
    gap: 24px;
    margin-left: 0;
  }

  .mp-footer-nav-col {
    min-width: 0;
  }

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

  .mp-footer-links {
    justify-content: flex-start;
  }

  .mp-footer {
    padding: 36px 20px 26px;
  }
}

@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 {
    grid-template-columns: 1fr;
  }

  .mp-wine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

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

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

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

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

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

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

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

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

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