/* =====================
   DESIGN TOKENS
===================== */
:root {
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.3);
  --black: #0a0a0a;
  --dark: #181818;
  --cream: #f8f5ef;
  --gray: #535353;
  --white: #ffffff;
  --nav-bg: rgba(10, 10, 10, 0.96);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1172px;
  --section-py: 80px;
}

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   NAV
===================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1188px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3.96px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* =====================
   SECTION DIVIDER
===================== */
.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--gold); }

.btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Slider nav buttons — hidden on desktop, shown only on mobile */
.slider-btn { display: none; }

/* =====================
   SECTION 1 — HERO
===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 110px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 48px;
  flex-shrink: 0;
}

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-headline {
  text-align: left;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 72px);
  color: var(--white);
  line-height: 1.06;
}

.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-card {
  width: 100%;
  width: 100%;
  max-width: 100%;
  background: rgba(0,0,0,0.45);
  border: 4px solid var(--gold);
  border-radius: 5px;
  padding: 36px 48px;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: 10px;
  margin-bottom: 28px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.hero-feature img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-millesime {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

/* =====================
   SECTION 2 — PAIN POINTS
===================== */
#pain-points {
  background: var(--cream);
  padding: var(--section-py) 24px;
  text-align: center;
}

#pain-points > .container {
  max-width: 1400px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 24px;
  column-gap: 64px;
  width: 100%;
  margin: 0 auto;
}

.pain-grid .pain-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 554px;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.pain-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.pain-card p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 18px);
  font-style: italic;
  color: #333;
  line-height: 1.5;
  text-align: left;
}

.pain-closing {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 34px);
  font-style: italic;
  color: var(--black);
  text-align: center;
  margin-top: 48px;
  line-height: 1.4;
}

/* =====================
   SECTION 3 — VALUE PROP
===================== */
#value-prop {
  position: relative;
  padding: var(--section-py) 24px;
  text-align: center;
  overflow: hidden;
}

#value-prop .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#value-prop .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

#value-prop .section-content {
  position: relative;
  z-index: 2;
}

#value-prop .section-title {
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 40px;
}
#value-prop .section-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(17px, 1.7vw, 24px);
  max-width: 900px;
}

.section-tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.feature-card {
  background: var(--dark);
  padding: 28px 20px;
  text-align: left;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
}

.feature-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

.feature-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  text-align: center;
}

/* =====================
   SECTION 4 — CAVIAR CATALOG
===================== */
#caviar {
  background: var(--cream);
  padding: var(--section-py) 24px;
  text-align: center;
}

.caviar-intro {
  max-width: var(--container);
  margin: 0 auto 48px;
}

.caviar-intro p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 20px);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.caviar-intro p em {
  font-style: italic;
}

.caviar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto 32px;
}

.caviar-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,168,76,0.15);
}

.caviar-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.caviar-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caviar-card-header-content {
  position: absolute;
  inset: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.caviar-card-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  text-align: left;
}

.caviar-card-desc {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  text-align: left;
}

.caviar-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  width: 100%;
  margin-top: auto;
}

.caviar-price-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.caviar-price-currency {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--gold);
}

.caviar-price-weight {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-left: auto;
}

.caviar-card-body {
  background: var(--white);
  flex: 1;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.caviar-specs {
  list-style: none;
  flex: 1;
}

.caviar-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-dim);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.4;
}

.caviar-spec-item::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.caviar-spec-item.italic { font-style: italic; }

.caviar-perfect-for {
  margin-top: 16px;
}

.caviar-perfect-for h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 4px;
}

.caviar-perfect-for p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.caviar-cintilla {
  background: var(--dark);
  padding: 28px 40px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
}

.caviar-cintilla p {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 28px);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.5;
}

/* =====================
   SECTION 5 — SOCIAL PROOF
===================== */
#nosotros {
  position: relative;
  padding: var(--section-py) 24px;
  text-align: center;
  overflow: hidden;
}

#nosotros .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#nosotros .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

#nosotros .section-content {
  position: relative;
  z-index: 2;
}

#nosotros .section-title { color: var(--white); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto 48px;
}

.proof-card {
  background: var(--dark);
  padding: 28px 24px;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
  text-align: center;
}

.proof-card-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.proof-card-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-card-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.7;
  text-align: center;
}

.proof-card-text strong { font-weight: 600; }

.cities-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.city-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  color: var(--white);
  text-align: center;
  padding: 16px;
  background: rgba(0,0,0,0.35);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.city-card-name.gold-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
}

/* =====================
   SECTION 6 — GALLERY
===================== */
#galeria {
  background: var(--cream);
  padding: var(--section-py) 0;
  position: relative;
}

.gallery-wrapper {
  position: relative;
  max-width: calc(var(--container) + 96px);
  margin: 0 auto;
  padding: 0 60px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  scroll-snap-align: start;
  overflow: hidden;
  box-shadow: 2px 1px 2px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  cursor: pointer;
}
.gallery-item img:hover { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.gallery-btn:hover { opacity: 0.7; }

.gallery-btn img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.gallery-btn-prev { left: 0; }
.gallery-btn-next { right: 0; }

/* =====================
   SECTION 7 — TRUFAS
===================== */
#trufas {
  position: relative;
  padding: var(--section-py) 24px;
  text-align: center;
  overflow: hidden;
}

#trufas .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#trufas .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

#trufas .section-content {
  position: relative;
  z-index: 2;
}

#trufas .section-title { color: var(--white); }
#trufas .section-subtitle {
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
}

#trufas .section-subtitle em {
  font-style: italic;
}

.trufas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto 32px;
}

.trufa-card {
  display: flex;
  flex-direction: column;
}

.trufa-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.trufa-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trufa-card-header-content {
  position: absolute;
  inset: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.trufa-card-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2px;
  text-align: left;
}

.trufa-card-latin {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  text-align: left;
}

.trufa-card-season {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  padding: 6px 10px;
  width: 100%;
}

.trufa-card-season img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.trufa-card-season span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.3;
}

.trufa-card-body {
  background: var(--dark);
  flex: 1;
  padding: 16px 20px 20px;
  text-align: left;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.trufa-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}

.trufa-card-use {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.85;
}

.trufa-cintilla {
  background: var(--dark);
  padding: 32px 40px;
  text-align: center;
  max-width: var(--container);
  margin: 24px auto 0;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
}

.trufa-cintilla p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.trufa-cintilla .btn { margin: 0 auto; display: flex; width: fit-content; }
.trufa-card-body .btn { margin-top: auto; }

/* =====================
   SECTION 8 — REVIEWS
===================== */
#reviews {
  background: var(--cream);
  padding: calc(var(--section-py) * 1.5) 24px;
  text-align: center;
}

#reviews .section-title { margin-bottom: 48px; }

.reviews-wrapper {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: calc(50% - 12px);
  background: var(--white);
  padding: 32px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-author { display: flex; flex-direction: column; gap: 2px; }

.review-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.review-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.review-stars img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.review-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  text-align: left;
  font-style: italic;
}

.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.reviews-btn:hover { opacity: 1; }
.reviews-btn img { width: 44px; height: 44px; object-fit: contain; }
.reviews-btn-prev { left: 0; }
.reviews-btn-next { right: 0; }

/* =====================
   SECTION 9 — FINAL CTA
===================== */
#cta-final {
  position: relative;
  padding: var(--section-py) 24px;
  text-align: center;
  overflow: hidden;
}

#cta-final .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cta-final .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

#cta-final .section-content {
  position: relative;
  z-index: 2;
}

#cta-final .section-title {
  color: var(--white);
  max-width: 1100px;
  margin: 0 auto 40px;
}

.cta-features {
  list-style: none;
  max-width: var(--container);
  margin: 0 auto 40px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 40px;
  border-bottom: 1px solid var(--gold-dim);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--white);
  text-align: left;
}

.cta-feature-item:first-child { border-top: 1px solid var(--gold-dim); }

.cta-feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-feature-item strong { font-weight: 700; }

.stock-warning {
  background: rgba(32, 23, 13, 0.92);
  border: 1px solid #593a13;
  max-width: var(--container);
  margin: 0 auto 36px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stock-warning img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.stock-warning p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 300;
  color: #c47a20;
  line-height: 1.6;
  text-align: center;
}

.cta-final-btn {
  display: flex;
  justify-content: center;
}

/* =====================
   SECTION 10 — FAQ
===================== */
#preguntas {
  background: var(--cream);
  padding: var(--section-py) 24px;
  text-align: center;
}

.faq-list {
  max-width: var(--container);
  margin: 0 auto 60px;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

.faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.5px;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
  object-fit: contain;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 8px 24px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* =====================
   FOOTER
===================== */
footer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 32px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.footer-contact-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: block;
  width: 44px;
  height: 44px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.8; }

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.5px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trufas-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet landscape / small laptop */
@media (max-width: 960px) {
  .caviar-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { padding: 24px 28px; }
  .hero-content { padding: 80px 24px 60px; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-card { padding: 28px 36px; }
  .hero-card-title { font-size: clamp(34px, 4.5vw, 54px); }
  .btn { font-size: 17px; padding: 11px 24px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav-links { display: none; }
  .caviar-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .trufas-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid .pain-card:nth-child(5) { grid-column: auto; max-width: 100%; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact { align-items: center; }
  .cta-feature-item { padding: 18px 16px; }
  .stock-warning { flex-direction: column; text-align: center; }
  .stock-warning p { text-align: center; }
  .hero-content { padding: 72px 24px 52px; }
  .hero-logo { width: 120px; height: 120px; }
  .hero-card { padding: 24px 28px; }
  .hero-card-title { font-size: clamp(32px, 5vw, 44px); }
  .hero-cta { margin-top: 28px; }
  .btn { font-size: 16px; padding: 10px 22px; }
  .review-card { padding: 20px 22px; }
}

@media (max-width: 600px) {
  .hero-logo { width: 110px; height: 110px; }
  .hero-card { padding: 22px 24px; }
  .hero-card-title { font-size: clamp(28px, 6vw, 42px); }
  .hero-cta .btn { font-size: 15px; padding: 10px 20px; }
  .section-title { font-size: clamp(22px, 4.5vw, 28px); }
  .review-card { width: 88%; padding: 24px 20px; }
  .review-text { font-size: 15px; }
  .trufa-card-body { padding: 14px 16px 16px; }
  .caviar-card-body { padding: 16px 16px 20px; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }

  /* --- SLIDER BUTTONS --- */
  .slider-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0.8;
  }
  .slider-btn:hover { opacity: 1; }
  .slider-btn img { width: 40px; height: 40px; object-fit: contain; }
  .slider-btn-prev { left: 0; }
  .slider-btn-next { right: 0; }

  /* --- NAV --- */
  .nav-inner { padding: 10px 16px; }
  .nav-cta { font-size: 10px; padding: 8px 12px; letter-spacing: 0.5px; }

  /* --- HERO --- */
  .hero-content { padding: 80px 16px 40px; }
  .hero-logo { width: 125px; height: 125px; margin-bottom: 24px; }
  .hero-body { gap: 32px; }
  .hero-headline { font-size: 40px; line-height: 1.1; }
  .hero-card { padding: 20px 18px; }
  .hero-card-title { font-size: 32px; letter-spacing: 7px; margin-bottom: 16px; }
  .hero-features { gap: 10px; margin-bottom: 16px; align-items: flex-start; width: fit-content; margin-left: auto; margin-right: auto; }
  .hero-feature { font-size: 12px; gap: 8px; }
  .hero-feature img { width: 16px; height: 16px; }
  .hero-millesime { font-size: 14px; }
  .hero-cta { margin-top: 24px; }
  .hero-cta .btn { font-size: 14px; padding: 10px 20px; width: 100%; justify-content: center; }

  /* --- PAIN POINTS --- */
  #pain-points { padding: 48px 16px; }
  #pain-points > .container { max-width: 100%; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 16px; margin-bottom: 32px; }
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-grid .pain-card:nth-child(5) { grid-column: auto; max-width: 100%; }
  .pain-card { padding: 16px 14px; gap: 12px; }
  .pain-card img { width: 35px; height: 35px; }
  .pain-card p { font-size: 14px; }
  .pain-closing { font-size: 18px; margin-top: 24px; }

  /* --- VALUE PROP --- */
  #value-prop { padding: 48px 16px; }
  #value-prop .section-subtitle { font-size: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { padding: 16px 10px; }
  .feature-card img { width: 40px; height: 40px; margin-bottom: 10px; }
  .feature-card-title { font-size: 18px; }
  .feature-card-text { font-size: 13px; }
  .section-tagline { font-size: 16px; margin-bottom: 24px; }

  /* --- CAVIAR (slider) --- */
  #caviar { padding: 48px 0; }
  #caviar > .container { padding: 0; }
  #caviar .section-divider,
  #caviar .section-title,
  #caviar .caviar-intro { padding-left: 16px; padding-right: 16px; }
  .caviar-intro { margin-bottom: 24px; }
  .caviar-slider-wrapper {
    position: relative;
    padding: 0 44px;
    margin-top: 24px;
  }
  .caviar-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .caviar-grid::-webkit-scrollbar { display: none; }
  .caviar-card {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
  }
  .caviar-card-header { height: 165px; }
  .caviar-card-name { font-size: 28px; }
  .caviar-card-desc { font-size: 16px; }
  .caviar-price-amount { font-size: 40px; }
  .caviar-price-currency { font-size: 20px; }
  .caviar-spec-item { font-size: 13px; }
  .caviar-perfect-for h4 { font-size: 13px; }
  .caviar-perfect-for p { font-size: 13px; }
  .caviar-cintilla { margin: 16px 16px 0; padding: 20px 16px; }
  .caviar-cintilla p { font-size: 20px; }

  /* --- SOCIAL PROOF (slider) --- */
  /* overflow: clip lets inner scrollers work on iOS (unlike overflow: hidden) */
  #nosotros, #trufas { overflow: clip; }
  #nosotros { padding: 48px 0; }
  #nosotros .section-content { padding: 0; }
  #nosotros .section-content > .section-divider,
  #nosotros .section-content > .section-title { padding-left: 16px; padding-right: 16px; }
  .proof-slider-wrapper {
    position: relative;
    padding: 0 44px;
    margin-bottom: 24px;
    margin-top: 0;
  }
  .proof-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
  }
  .proof-grid::-webkit-scrollbar { display: none; }
  .proof-card {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
    padding: 20px 14px;
  }
  .proof-card-number { font-size: 72px; }
  .proof-card-icon { width: 50px; height: 50px; }
  .proof-card-text { font-size: 13px; }
  .cities-title { font-size: 20px; margin-bottom: 16px; padding: 0 16px; }
  .cities-slider-wrapper {
    position: relative;
    padding: 0 44px;
  }
  .cities-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin: 0;
  }
  .cities-grid::-webkit-scrollbar { display: none; }
  .city-card {
    flex-shrink: 0;
    width: 100%;
    height: 120px;
    scroll-snap-align: start;
  }
  .city-card-name { font-size: 14px; }
  .city-card-name.gold-text { font-size: 12px; }

  /* --- GALLERY --- */
  .gallery-wrapper { padding: 0 44px; }
  .gallery-item { width: 100%; height: 280px; }
  .gallery-btn { width: 40px; height: 40px; }
  .gallery-btn img { width: 40px; height: 40px; }

  /* --- TRUFAS (slider) --- */
  #trufas { padding: 48px 0; }
  #trufas .section-content { padding: 0; }
  #trufas .section-content > .section-divider,
  #trufas .section-content > .section-title,
  #trufas .section-content > .section-subtitle { padding-left: 16px; padding-right: 16px; }
  .trufas-slider-wrapper {
    position: relative;
    padding: 0 44px;
    margin-bottom: 16px;
  }
  .trufas-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin: 0;
  }
  .trufas-grid::-webkit-scrollbar { display: none; }
  .trufa-card {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
  }
  .trufa-card-header { height: 190px; }
  .trufa-card-name { font-size: 26px; }
  .trufa-card-latin { font-size: 17px; }
  .trufa-card-desc { font-size: 14px; }
  .trufa-card-use { font-size: 13px; }
  .trufa-cintilla { margin: 0 16px 0; padding: 20px 16px; }
  .trufa-cintilla p { font-size: 18px; margin-bottom: 20px; }

  /* --- REVIEWS --- */
  #reviews { padding: 48px 0; }
  #reviews > .container { padding: 0; }
  #reviews .section-divider,
  #reviews .section-title { padding-left: 16px; padding-right: 16px; }
  #reviews .section-title { margin-bottom: 16px; }
  .reviews-wrapper { padding: 0 44px; }
  .review-card {
    width: 100%;
    padding: 28px 20px;
    gap: 20px;
  }
  .review-avatar { width: 52px; height: 52px; }
  .review-name { font-size: 15px; }
  .review-role { font-size: 13px; }
  .review-text { font-size: 15px; line-height: 1.7; }
  .review-stars img { width: 18px; height: 18px; }
  .reviews-btn { width: 36px; height: 36px; }
  .reviews-btn img { width: 36px; height: 36px; }
  .reviews-btn-prev { left: 0; }
  .reviews-btn-next { right: 0; }

  /* --- FINAL CTA --- */
  #cta-final { padding: 48px 16px; }
  .cta-feature-item { padding: 14px 8px; font-size: 15px; gap: 12px; align-items: flex-start; }
  .cta-feature-item img { width: 28px; height: 28px; }
  .stock-warning { padding: 16px; }
  .stock-warning p { font-size: 15px; }
  .stock-warning img { width: 28px; height: 28px; }
  .cta-final-btn .btn { font-size: 15px; padding: 12px 16px; }

  /* --- FAQ --- */
  #preguntas { padding: 48px 16px; }
  .faq-question { font-size: 17px; padding: 14px 8px; }
  .faq-answer p { font-size: 16px; }

  /* --- FOOTER --- */
  .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; text-align: left; }
  .footer-brand { align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .footer-social { flex-direction: row; align-items: flex-start; align-self: flex-start; gap: 8px; }
  .footer-social a { width: 28px; height: 28px; }
  .footer-logo { width: 75px; height: 75px; }
  .footer-contact-item { font-size: 16px; gap: 10px; }
  .footer-contact-item img { width: 18px; height: 18px; }
  .footer-copy { font-size: 11px; }
}
