:root {
  --black: #120b08;
  --charcoal: #1e1410;
  --wine: #6f1717;
  --wine-dark: #441010;
  --cream: #f7ead5;
  --gold: #d8a752;
  --muted: #b9a68d;
  --white: #fffaf0;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(18, 11, 8, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 167, 82, .8);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
}

.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 32px;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 130px 7vw 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 11, 8, .96) 0%, rgba(18, 11, 8, .78) 45%, rgba(18, 11, 8, .3) 100%),
    url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(216, 167, 82, .22), transparent 28%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 13px;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: var(--wine);
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: .95;
}

h1 {
  font-size: clamp(58px, 9vw, 124px);
  max-width: 900px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(38px, 5vw, 74px);
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 640px;
  color: #eadcc4;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, #ffd986, var(--gold));
  box-shadow: 0 18px 45px rgba(216, 167, 82, .28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, .32);
  background: rgba(255, 255, 255, .06);
}

.btn.big {
  min-height: 64px;
  font-size: 18px;
  padding-inline: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: 999px;
  background: rgba(255, 250, 240, .08);
  color: #f2dfbd;
  font-weight: 700;
}

.section {
  padding: 96px 7vw;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: #6e5b48;
  font-size: 18px;
  line-height: 1.65;
}

.features-grid,
.product-grid,
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card,
.pack-card {
  padding: 34px;
  border-radius: 28px;
  background: #fff6e7;
  box-shadow: 0 18px 50px rgba(68, 16, 16, .08);
}

.feature-icon,
.pack-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(111, 23, 23, .1);
  font-size: 28px;
}

.feature-card p,
.pack-card p,
.product-card p {
  color: #765f49;
  line-height: 1.6;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 167, 82, .16), transparent 30%),
    linear-gradient(180deg, var(--black), var(--charcoal));
  color: var(--white);
}

.dark-section .section-heading p:not(.eyebrow) {
  color: #d9c4a4;
}

.product-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fff6e7;
  box-shadow: var(--shadow);
}

.product-image {
  min-height: 290px;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.salame {
  background-image: url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=900&q=85');
}

.bondiola {
  background-image: url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=900&q=85');
}

.longaniza {
  background-image: url('https://images.unsplash.com/photo-1598514982901-ae62764ae75e?auto=format&fit=crop&w=900&q=85');
}

.product-content {
  padding: 28px;
  color: var(--charcoal);
}

.product-content a {
  display: inline-block;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.experience {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 90px 7vw;
  background:
    linear-gradient(90deg, rgba(247, 234, 213, .96) 0%, rgba(247, 234, 213, .74) 48%, rgba(247, 234, 213, .1) 100%),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.experience-card {
  max-width: 620px;
  padding: 48px;
  border-radius: 34px;
  background: rgba(255, 246, 231, .86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.experience-card p {
  margin-bottom: 26px;
  color: #664f3b;
  font-size: 18px;
  line-height: 1.6;
}

.pack-card {
  text-align: center;
  border: 1px solid rgba(111, 23, 23, .08);
}

.pack-card.featured {
  color: var(--white);
  background: linear-gradient(160deg, var(--wine), var(--wine-dark));
  transform: translateY(-14px);
}

.pack-card.featured p {
  color: #f0d7b8;
}

.pack-card button {
  margin-top: 24px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 720px) auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial {
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.testimonial p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 36px;
  cursor: pointer;
}

.final-cta {
  position: relative;
  padding: 120px 7vw;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 11, 8, .76), rgba(18, 11, 8, .88)),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #eadcc4;
  font-size: 19px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  padding: 16px 22px;
  border-radius: 999px;
  color: #07160c;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(34, 197, 94, .35);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 7vw;
  color: #d9c4a4;
  background: var(--black);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.smoke {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(50px);
  animation: floatSmoke 8s ease-in-out infinite alternate;
}

.smoke-one {
  right: 16%;
  top: 22%;
}

.smoke-two {
  right: 30%;
  bottom: 14%;
  animation-delay: 1.8s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSmoke {
  from { transform: translateY(20px) scale(.95); }
  to { transform: translateY(-35px) scale(1.15); }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    right: 7vw;
    left: 7vw;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: rgba(18, 11, 8, .96);
  }

  .main-nav.open {
    display: flex;
  }

  .features-grid,
  .product-grid,
  .packs-grid {
    grid-template-columns: 1fr;
  }

  .pack-card.featured {
    transform: none;
  }

  .experience-card {
    padding: 32px;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    margin: 0 auto;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section,
  .experience,
  .final-cta {
    padding-inline: 5vw;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 14px 18px;
  }
}

.floating-whatsapp img {
  width: 38px;
  height: 38px;
  display: block;
}

.instagram-link img{
  width:32px;
  height:32px;
  transition:.3s;
}

.instagram-link img:hover{
  transform:scale(1.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
}