:root {
  --bg: #14090F;
  --bg-alt: #1B0F19;
  --bg-dark: #0F080F;
  --cream: #F3ECE6;
  --gold: #C9A46A;
  --body-text: #C9B9C4;
  --muted-text: #A996A3;
  --faint-text: #8C7A87;
  --dimmer-text: #665568;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); font-family: 'Work Sans', sans-serif; color: var(--cream); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button { font-family: inherit; }
::selection { background: var(--gold); color: var(--bg); }
img { max-width: 100%; display: block; }
.serif { font-family: 'Cormorant Garamond', serif; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }

/* NAV — caja de logo negra que baja por debajo de la barra, como en 1883.com */
header.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: flex-start;
  padding-left: 56px;
  background: transparent;
  transition: background .3s ease;
}
header.site-nav.scrolled { background: rgba(15,8,15,.94); backdrop-filter: blur(6px); }

.logo-box {
  display: flex; align-items: center; justify-content: center;
  background: #000;
  width: 164px; height: 176px;
  flex: none;
  transition: width .3s ease, height .3s ease;
}
header.site-nav.scrolled .logo-box { width: 110px; height: 92px; }
.logo-box a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.logo-box img { width: 76%; height: auto; display: block; transition: width .3s ease; }
header.site-nav.scrolled .logo-box img { width: 66%; }

nav.site-links {
  display: flex; gap: 34px; align-items: center; flex-wrap: nowrap;
  padding: 0 44px; flex: 1;
  height: 140px;
  transition: height .3s ease;
}
header.site-nav.scrolled nav.site-links { height: 92px; }
nav.site-links a {
  white-space: nowrap; font-size: 14px; letter-spacing: 1.2px; font-weight: 600;
  text-transform: uppercase; color: var(--cream);
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}
nav.site-links .spacer { flex: 1; }
nav.site-links ul { display: flex; gap: 34px; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
nav.site-links li { white-space: nowrap; }

@media (max-width: 1400px) {
  nav.site-links { gap: 24px; padding: 0 30px; }
  nav.site-links ul { gap: 24px; }
  nav.site-links a { font-size: 13px; letter-spacing: .8px; }
}

.mobile-menu-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  color: var(--cream); padding: 0 24px; align-items: center;
}
.mobile-menu-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 900px) {
  header.site-nav { padding-left: 0; align-items: center; }
  .logo-box { width: 104px; height: 104px; }
  header.site-nav.scrolled .logo-box { width: 78px; height: 74px; }
  nav.site-links { display: none; }
  .mobile-menu-toggle { display: flex; margin-left: auto; }
  header.site-nav.menu-open { background: var(--bg-dark); }
  header.site-nav.menu-open nav.site-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-dark); flex-direction: column; align-items: flex-start;
    padding: 20px 24px 30px; gap: 16px; height: auto;
  }
  header.site-nav.menu-open nav.site-links ul { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero .video-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero .video-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%); border: 0;
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,9,15,.45) 0%, rgba(20,9,15,.25) 40%, rgba(20,9,15,.92) 100%);
}
.hero .content { position: relative; z-index: 2; padding: 0 48px 100px; max-width: 900px; color: var(--cream); }
.hero .eyebrow { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; color: var(--gold); }
.hero h1 { font-weight: 500; font-size: clamp(42px, 6vw, 88px); line-height: 1.03; margin: 0 0 22px; }
.hero p { font-size: 18px; line-height: 1.6; max-width: 560px; font-weight: 300; color: #D9C9CE; }
.hero .scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--cream); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero .scroll-cue .line { width: 1px; height: 34px; background: rgba(243,236,230,.5); }
@media (max-width: 640px) { .hero .content { padding: 0 24px 80px; } }

/* GENERIC SECTION LAYOUT */
.section { padding: 130px 48px; max-width: 1360px; margin: 0 auto; }
.section.alt-bg { background: var(--bg-alt); max-width: none; padding: 0; }
.section.alt-bg > .inner { max-width: 1360px; margin: 0 auto; padding: 130px 48px 130px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split img.frame, .split .frame {
  position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden;
  width: 100%; height: 100%; object-fit: cover;
}
.split .reversed-media { order: 1; }
.split .reversed-text { order: 2; }
.eyebrow-label { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
h2.section-title { font-weight: 500; font-size: clamp(32px, 3vw, 48px); line-height: 1.1; margin: 0 0 28px; color: var(--cream); }
.section p.body { font-size: 16px; line-height: 1.85; color: var(--body-text); font-weight: 300; margin: 0 0 20px; }
.section p.body:last-child { margin-bottom: 0; }
.feature-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  margin-top: 110px; border-top: 1px solid rgba(243,236,230,.14); padding-top: 56px;
}
.feature-row .num { font-size: 44px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.feature-row .title { font-size: 22px; font-weight: 600; margin-bottom: 14px; color: var(--cream); }
.feature-row p { font-size: 15px; line-height: 1.7; color: var(--muted-text); font-weight: 300; margin: 0; }
@media (max-width: 900px) {
  .split, .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .split .reversed-media { order: 0; }
  .split .reversed-text { order: 1; }
  .section { padding: 90px 24px; }
  .section.alt-bg > .inner { padding: 90px 24px; }
}

/* VIDEO / IMAGE FEATURE SECTIONS */
.feature-video, .feature-image { position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature-video .bg-wrap, .feature-image .bg-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.feature-video .bg-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%); border: 0;
}
.feature-image .bg-wrap { background: radial-gradient(circle at 30% 20%, #3a2436, #14090F 70%); }
.feature-video .scrim { position: absolute; inset: 0; background: rgba(20,9,15,.72); }
.feature-image .scrim { position: absolute; inset: 0; background: rgba(20,9,15,.55); }
.feature-video .content, .feature-image .content { position: relative; z-index: 2; max-width: 760px; text-align: center; padding: 0 48px; color: var(--cream); }
.feature-video h2, .feature-image h2 { font-weight: 500; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; margin: 0 0 24px; }
.feature-video p, .feature-image p { font-size: 16px; line-height: 1.8; font-weight: 300; color: #D9C9CE; margin: 0 0 34px; }
.feature-video p:last-of-type, .feature-image p:only-of-type { margin-bottom: 0; }
.btn-solid {
  display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--cream); padding: 15px 34px; border-radius: 2px;
  border: none; cursor: pointer; font-family: 'Work Sans', sans-serif;
}
.btn-outline {
  display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); background: transparent; padding: 14px 32px; border-radius: 2px;
  border: 1px solid rgba(243,236,230,.35); cursor: pointer; font-family: 'Work Sans', sans-serif;
}

/* LAB SECTION */
.lab-section { background: var(--bg-dark); color: var(--cream); padding: 140px 48px; text-align: center; }
.lab-section .inner { max-width: 780px; margin: 0 auto; }
.lab-section h2 { font-weight: 500; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.15; margin: 0 0 30px; }
.lab-section p { font-size: 16px; line-height: 1.9; font-weight: 300; color: var(--body-text); margin: 0 0 20px; }
.lab-section p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .lab-section { padding: 90px 24px; } .feature-video, .feature-image { min-height: 70vh; } }

/* PALETA DETALLE */
.paleta-detalle { padding: 130px 48px 40px; max-width: 1360px; margin: 0 auto; }
.paleta-detalle .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
@media (max-width: 900px) { .paleta-detalle { padding: 90px 24px 20px; } .paleta-detalle .grid3 { grid-template-columns: 1fr; } }

/* FOOTER */
footer.site-footer { background: var(--bg-dark); color: #D9C9CE; padding: 90px 48px 32px; }
footer.site-footer .inner { max-width: 1360px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 60px; border-bottom: 1px solid rgba(243,236,230,.12); flex-wrap: wrap; gap: 24px; }
.footer-top .follow-label { font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); }
.social-links { display: flex; gap: 18px; align-items: center; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(243,236,230,.3);
  display: flex; align-items: center; justify-content: center; color: #D9C9CE; transition: border-color .2s ease, color .2s ease;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0; }
.footer-cols img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-cols .about-text { font-size: 14px; line-height: 1.7; font-weight: 300; max-width: 280px; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .col-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 6px; }
.footer-col a { font-size: 14px; font-weight: 300; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(243,236,230,.12); flex-wrap: wrap; gap: 16px; }
.footer-bottom .copyright { font-size: 12px; font-weight: 300; color: var(--faint-text); }
.footer-bottom .legal-links { display: flex; gap: 26px; }
.footer-bottom .legal-links a { font-size: 12px; font-weight: 300; color: var(--faint-text); }
@media (max-width: 900px) { footer.site-footer { padding: 70px 24px 24px; } .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

/* PALETTE MODAL */
.palette-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(15,8,15,.9); display: none; align-items: center; justify-content: center; padding: 48px; }
.palette-overlay.open { display: flex; }
.palette-modal { position: relative; background: var(--bg-alt); border-radius: 4px; padding: 40px; max-width: 820px; width: 100%; max-height: 88vh; overflow: auto; display: flex; flex-direction: column; align-items: center; }
.palette-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(243,236,230,.3); background: transparent; color: var(--cream); font-size: 16px; cursor: pointer; }
.palette-modal h3 { font-weight: 500; font-size: 26px; color: var(--cream); margin: 0 0 24px; text-align: center; }
.palette-hint { font-size: 11px; color: var(--dimmer-text); letter-spacing: .5px; margin-top: 10px; text-align: center; }

/* --- Paleta AromaSensoris interactiva --- */
.palette-modal { max-width: 1100px; }
.palette-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; width: 100%; align-items: start; }
.palette-wheel-wrap { min-width: 0; }
#paletteWheel { width: 100%; height: auto; display: block; }

.pw-familia { cursor: pointer; outline: none; }
.pw-seg { transition: opacity .2s ease, transform .2s ease; }
.pw-familia:hover .pw-seg,
.pw-familia:focus-visible .pw-seg { opacity: .88; }
.pw-familia:focus-visible .pw-seg-fam { stroke: var(--cream); stroke-width: 2; }
.pw-familia.is-dim { opacity: .28; }
.pw-familia.is-active .pw-seg-fam { stroke: var(--cream); stroke-width: 2; }

.pw-sublabel { fill: rgba(255,255,255,.92); font-size: 9px; letter-spacing: .3px; font-family: 'Work Sans', sans-serif; pointer-events: none; }
.pw-famlabel { fill: #fff; font-size: 12px; font-weight: 500; letter-spacing: .6px; font-family: 'Work Sans', sans-serif; pointer-events: none; }
.pw-core-title { fill: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.pw-core-sub { fill: var(--gold); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-family: 'Work Sans', sans-serif; }

.palette-panel { min-height: 300px; text-align: left; }
.palette-panel-empty p { font-size: 15px; line-height: 1.75; color: var(--body-text); font-weight: 300; }
.palette-panel-empty p.small { font-size: 13px; color: var(--faint-text); margin-top: 14px; }

.pf-head { display: flex; align-items: center; gap: 10px; border-left: 3px solid; padding-left: 12px; margin-bottom: 14px; }
.pf-head h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; margin: 0; color: var(--cream); }
.pf-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.pf-desc { font-size: 14px; line-height: 1.7; color: var(--body-text); font-weight: 300; margin: 0 0 22px; }

.pf-subs { display: flex; flex-direction: column; gap: 16px; max-height: 320px; overflow-y: auto; padding-right: 6px; }
.pf-sub-name { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pf-notas { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-nota { font-size: 12px; color: var(--body-text); border: 1px solid rgba(243,236,230,.18); border-radius: 14px; padding: 4px 11px; }

.pf-productos { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(243,236,230,.14); }
.pf-prod-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pf-prod { display: flex; align-items: center; gap: 9px; border: 1px solid rgba(243,236,230,.2); border-radius: 24px; padding: 5px 14px 5px 5px; font-size: 12px; color: var(--cream); }
.pf-prod:hover { border-color: var(--gold); }
.pf-prod img { width: 26px; height: 26px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.06); }

@media (max-width: 900px) {
  .palette-layout { grid-template-columns: 1fr; gap: 24px; }
  .palette-modal { padding: 28px 20px; }
  .pw-sublabel { font-size: 11px; }
  .pf-subs { max-height: none; }
}
.ph-alpes { background: radial-gradient(circle at 30% 20%, #3f5560, #14090F 75%); }
.ph-palette { background: conic-gradient(from 90deg, #C9A46A, #7a3b52, #3f5560, #C9A46A); }

/* ===== PRODUCTOS ===== */
.producto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 24px; }
.producto-card { display: block; }
.producto-card .thumb { position: relative; aspect-ratio: 1/1; border-radius: 2px; overflow: hidden; margin-bottom: 12px; background: var(--bg-alt); }
.producto-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Fondo de color + botella recortada superpuesta (como en 1883.com) */
.producto-card .thumb.has-bg img.bg { position: absolute; inset: 0; }
.producto-card .thumb.has-bg img.bottle { position: absolute; inset: 0; object-fit: contain; padding: 14px; }
.producto-card .thumb .no-image {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(243,236,230,.25); font-size: 11px; color: var(--dimmer-text); text-align: center; padding: 10px;
}
.producto-card .name { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: #D9C9CE; line-height: 1.4; }

.coleccion-search {
  max-width: 420px; margin: 0 auto; display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(243,236,230,.3); border-radius: 2px; padding: 12px 18px; background: transparent;
}
.coleccion-search input {
  border: none; background: transparent; color: var(--cream); font-size: 13px; font-weight: 300; width: 100%; outline: none;
}
.coleccion-search input::placeholder { color: var(--faint-text); }

.coleccion-banner { position: relative; height: 56vh; min-height: 360px; overflow: hidden; }
.coleccion-banner .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.coleccion-banner .slide.active { opacity: 1; }
.coleccion-banner .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,9,15,.15) 0%, rgba(20,9,15,.85) 100%); }
.coleccion-banner .dots { position: absolute; left: 24px; bottom: 20px; display: flex; gap: 8px; z-index: 3; }
.coleccion-banner .dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(243,236,230,.35); }
.coleccion-banner .dots span.active { background: var(--cream); }

.coleccion-section { max-width: 1360px; margin: 0 auto; padding: 70px 48px; border-top: 1px solid rgba(243,236,230,.1); }
.coleccion-section .head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.coleccion-section .head h2 { font-weight: 500; font-size: clamp(26px,2.6vw,36px); margin: 0 0 10px; color: var(--cream); }
.coleccion-section .head p { font-size: 15px; line-height: 1.7; color: var(--muted-text); font-weight: 300; font-style: italic; margin: 0; max-width: 520px; }
.coleccion-section .count { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--faint-text); white-space: nowrap; }
.coleccion-section .items { display: flex; flex-wrap: wrap; gap: 24px; }
.coleccion-section .items .producto-card { width: 200px; }
@media (max-width: 900px) { .coleccion-section { padding: 50px 24px; } }

/* PRODUCT HERO (single-producto) */
.producto-hero { position: relative; padding-top: 120px; overflow: hidden; }
.producto-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.producto-hero .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,9,15,.94) 0%, rgba(20,9,15,.75) 55%, rgba(20,9,15,.5) 100%); }
.producto-hero .inner {
  position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; padding: 60px 48px 100px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.producto-hero .breadcrumb { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-text); margin-bottom: 18px; }
.producto-hero h1 { font-weight: 500; font-size: clamp(34px,4vw,58px); line-height: 1.1; margin: 0 0 26px; color: var(--cream); }
.producto-hero .desc { font-size: 16px; line-height: 1.85; color: var(--body-text); font-weight: 300; max-width: 520px; margin: 0 0 36px; }
.producto-hero .meta-row { display: flex; gap: 56px; margin-bottom: 40px; flex-wrap: wrap; }
.producto-hero .meta-row .label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.producto-hero .meta-row .value { font-size: 15px; color: var(--cream); font-weight: 300; }
.producto-hero .share-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint-text); margin-bottom: 12px; }
.producto-hero .bottle-wrap { display: flex; justify-content: center; }
.producto-hero .bottle-wrap img { width: 100%; max-width: 340px; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }
@media (max-width: 900px) { .producto-hero .inner { grid-template-columns: 1fr; padding: 40px 24px 60px; } }

/* RADAR SENSORIAL (single-producto) */
.aroma-section { max-width: 1360px; margin: 0 auto; padding: 100px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-top: 1px solid rgba(243,236,230,.1); }
.aroma-wheel-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.aroma-radar { width: 100%; max-width: 440px; }
.aroma-radar-svg { display: block; width: 100%; height: auto; overflow: visible; }
.aroma-radar-svg .ar-grid { fill: none; stroke: rgba(243,236,230,.10); stroke-width: 1; }
.aroma-radar-svg .ar-axis { stroke: rgba(243,236,230,.14); stroke-width: 1; }
.aroma-radar-svg .ar-label { fill: #C9B9C4; font-size: 12px; letter-spacing: .6px; font-family: 'Work Sans', sans-serif; }
.aroma-radar-svg .ar-shape { fill: rgba(201,164,106,.22); stroke: var(--gold); stroke-width: 2.5; stroke-linejoin: round; transition: all 1.1s cubic-bezier(.2,.8,.2,1); }
.aroma-radar-svg .ar-dot { fill: var(--gold); transition: all 1.1s cubic-bezier(.2,.8,.2,1); }
.aroma-section--sin-rueda { grid-template-columns: 1fr; max-width: 820px; }
.aroma-notas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.aroma-nota { font-size: 12px; letter-spacing: .5px; color: var(--body-text); border: 1px solid rgba(201,164,106,.4); border-radius: 16px; padding: 6px 14px; }
@media (max-width: 900px) { .aroma-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; } .aroma-radar { max-width: 360px; } }

.producto-block { max-width: 1360px; margin: 0 auto; padding: 0 48px 100px; border-top: 1px solid rgba(243,236,230,.1); padding-top: 70px; }
.producto-block h2 { font-weight: 500; font-size: clamp(26px,2.6vw,36px); margin: 0 0 32px; color: var(--cream); }
.pill-list { display: flex; gap: 16px; flex-wrap: wrap; }
.pill-list a { font-size: 13px; color: #D9C9CE; border: 1px solid rgba(243,236,230,.25); border-radius: 20px; padding: 10px 20px; white-space: nowrap; }
.otros-sabores { display: flex; gap: 24px; flex-wrap: wrap; }
.otros-sabores .item { width: 160px; }
.otros-sabores .thumb { aspect-ratio: 1/1; border-radius: 2px; overflow: hidden; margin-bottom: 12px; }
.otros-sabores .thumb img { width: 100%; height: 100%; object-fit: cover; }
.otros-sabores a.ver { font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid rgba(243,236,230,.3); }
@media (max-width: 900px) { .producto-block { padding: 0 24px 60px; padding-top: 50px; } }

/* ===== RECETAS ===== */
.receta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.receta-card { display: block; background: var(--bg-alt); border-radius: 2px; overflow: hidden; }
.receta-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-dark); }
.receta-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.receta-card .thumb .no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--dimmer-text); }
.receta-card .body { padding: 20px 22px 26px; }
.receta-card .cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.receta-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 21px; margin: 0 0 10px; color: var(--cream); }
.receta-card .meta { font-size: 12px; color: var(--faint-text); display: flex; gap: 14px; }

.receta-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.receta-filter a {
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 20px;
  border: 1px solid rgba(243,236,230,.25); border-radius: 20px; color: var(--body-text);
}
.receta-filter a.active { background: var(--cream); color: var(--bg); border-color: var(--cream); }

.receta-hero { position: relative; padding-top: 120px; overflow: hidden; min-height: 60vh; display: flex; align-items: flex-end; }
.receta-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.receta-hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,9,15,.3) 0%, rgba(20,9,15,.92) 100%); }
.receta-hero .inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 40px 48px 70px; }
.receta-hero .cat { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.receta-hero h1 { font-weight: 500; font-size: clamp(32px,4vw,54px); line-height: 1.1; margin: 0 0 22px; color: var(--cream); }
.receta-meta-strip { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 14px; }
.receta-meta-strip .item { font-size: 13px; color: var(--body-text); }
.receta-meta-strip .item strong { display: block; color: var(--cream); font-size: 15px; font-weight: 500; margin-bottom: 2px; }

.receta-content { max-width: 1000px; margin: 0 auto; padding: 70px 48px 120px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.receta-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 24px; margin: 0 0 24px; color: var(--cream); }
.receta-content ul.ingredientes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.receta-content ul.ingredientes li { font-size: 15px; color: var(--body-text); font-weight: 300; padding-bottom: 12px; border-bottom: 1px solid rgba(243,236,230,.1); }
.receta-content ul.ingredientes li strong { color: var(--cream); font-weight: 500; }
.receta-content ol.pasos { margin: 0; padding: 0; list-style: none; counter-reset: paso; display: flex; flex-direction: column; gap: 22px; }
.receta-content ol.pasos li { padding-left: 44px; position: relative; font-size: 15px; line-height: 1.8; color: var(--body-text); font-weight: 300; }
.receta-content ol.pasos li::before {
  counter-increment: paso; content: counter(paso);
  position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold); font-size: 13px; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
}
.receta-empty { font-size: 14px; color: var(--dimmer-text); font-style: italic; }
.receta-producto-relacionado {
  margin-top: 40px; padding: 24px; border: 1px solid rgba(243,236,230,.15); border-radius: 2px;
  display: flex; align-items: center; gap: 18px;
}
.receta-producto-relacionado img { width: 56px; height: 56px; object-fit: cover; border-radius: 2px; }
.receta-producto-relacionado .label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--faint-text); margin-bottom: 4px; }
.receta-producto-relacionado .nombre { font-size: 15px; color: var(--cream); }
@media (max-width: 800px) { .receta-content { grid-template-columns: 1fr; padding: 50px 24px 80px; } .receta-hero .inner { padding: 30px 24px 50px; } }

/* Generic page */
.page-content-wrap { max-width: 900px; margin: 0 auto; padding: 160px 48px 120px; }
.page-content-wrap h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(32px,4vw,52px); margin: 0 0 30px; color: var(--cream); }
.page-content-wrap .entry-content { font-size: 16px; line-height: 1.85; color: var(--body-text); font-weight: 300; }
@media (max-width: 640px) { .page-content-wrap { padding: 130px 24px 80px; } }

/* =========================================================
   LANDING MAISON ARTONIC (tónicas)
   Identidad real de Artonic: fondo claro, composiciones
   geométricas de color y botella recortada.
   ========================================================= */
.artonic {
  --ar-bg: #FFFFFF;
  --ar-bg-alt: #F4F1EB;
  --ar-ink: #14130F;
  --ar-muted: #6A655D;
  --ar-line: rgba(20,19,15,.10);
  --ar-gold: #C9A227;
  background: var(--ar-bg);
  color: var(--ar-ink);
}
.artonic h1, .artonic h2, .artonic h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.artonic p { font-weight: 300; }

/* ---- HERO con video ---- */
.ar-hero {
  position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0E0D0B;
}
.ar-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.ar-hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 170px 40px 90px; color: #fff; }
.ar-eyebrow { font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--ar-gold); margin-bottom: 22px; }
.ar-hero h1 { font-size: clamp(36px, 5.2vw, 68px); line-height: 1.08; margin: 0 0 26px; color: #fff; }
.ar-lead { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,.82); margin: 0 auto; max-width: 660px; }
.ar-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 34px 0 32px; }
.ar-badges span {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,.32); border-radius: 20px; padding: 8px 18px;
}

/* ---- Secciones ---- */
.ar-section { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.ar-section--dark { max-width: none; background: var(--ar-ink); color: #fff; }
.ar-section--dark > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.ar-section--dark .ar-head h2 { color: #fff; }
.ar-section--dark .ar-head p, .ar-section--dark .ar-card p { color: rgba(255,255,255,.66); }
.ar-head { text-align: center; margin-bottom: 66px; }
.ar-kicker { font-size: 11px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--ar-gold); margin-bottom: 14px; }
.ar-head h2 { font-size: clamp(30px, 3.6vw, 50px); margin: 0 0 14px; }
.ar-head p { font-size: 15.5px; color: var(--ar-muted); margin: 0; }

/* ---- Colección: botella grande alternada ---- */
.ar-coleccion { display: flex; flex-direction: column; gap: 34px; }
.ar-tonica {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  background: var(--ar-bg-alt); border-radius: 4px; overflow: hidden;
}
.ar-tonica.is-reverse .ar-tonica-img { order: 2; }
.ar-tonica-img {
  position: relative; padding: 40px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, color-mix(in srgb, var(--ar-acc) 26%, #fff), #fff 78%);
  min-height: 430px;
}
.ar-tonica-img img { max-height: 380px; width: auto; max-width: 100%; object-fit: contain; }
.ar-tonica-txt { padding: 48px 56px 48px 0; }
.ar-tonica.is-reverse .ar-tonica-txt { padding: 48px 0 48px 56px; }
.ar-bio {
  display: inline-block; font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  background: #4A6B3A; color: #fff; border-radius: 12px; padding: 5px 12px; margin-bottom: 16px;
}
.ar-tonica h3 { font-size: clamp(26px, 2.8vw, 38px); margin: 0 0 16px; }
.ar-perfil { font-size: 15.5px; line-height: 1.8; color: var(--ar-muted); margin: 0 0 24px; }
.ar-bot { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-top: 1px solid var(--ar-line); font-size: 14px; line-height: 1.6; }
.ar-bot-label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ar-gold); }
.ar-formato { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ar-muted); margin-top: 16px; }

/* ---- Grids ---- */
.ar-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 38px; }
.ar-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.ar-card { text-align: center; }
.ar-card-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; margin-bottom: 20px; }
.ar-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ar-card:hover .ar-card-img img { transform: scale(1.05); }
.ar-card h3 { font-size: 23px; margin: 0 0 8px; }
.ar-card p { font-size: 14px; line-height: 1.7; color: var(--ar-muted); margin: 0; }

.ar-coctel { margin: 0; }
.ar-coctel img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; display: block; transition: transform .5s ease; }
.ar-coctel:hover img { transform: scale(1.03); }
.ar-coctel figcaption { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-top: 14px; text-align: center; }

/* ---- Cita ---- */
.ar-quote { background: var(--ar-bg-alt); padding: 100px 48px; text-align: center; }
.ar-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(23px, 3vw, 36px); line-height: 1.45; max-width: 900px; margin: 0 auto 22px; font-style: italic; }
.ar-quote-src { font-size: 11px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--ar-gold); }

/* ---- CTA / botones ---- */
.ar-cta { text-align: center; padding: 96px 48px 110px; }
.ar-cta h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 0 0 12px; }
.ar-cta p { font-size: 15.5px; color: var(--ar-muted); margin: 0 0 30px; }
.ar-btn { display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; background: var(--ar-ink); color: #fff; padding: 16px 40px; border-radius: 2px; }
.ar-btn:hover { background: var(--ar-gold); color: var(--ar-ink); }
.ar-btn--light { background: #fff; color: var(--ar-ink); }
.ar-btn--light:hover { background: var(--ar-gold); color: var(--ar-ink); }
.ar-editor { max-width: 820px; margin: 0 auto; font-size: 16px; line-height: 1.85; color: var(--ar-muted); }

@media (max-width: 900px) {
  .ar-hero { min-height: 76vh; }
  .ar-hero-inner { padding: 140px 24px 70px; }
  .ar-section { padding: 66px 24px; }
  .ar-tonica, .ar-tonica.is-reverse { grid-template-columns: 1fr; gap: 0; }
  .ar-tonica.is-reverse .ar-tonica-img { order: 0; }
  .ar-tonica-img { min-height: 340px; padding: 30px; }
  .ar-tonica-img img { max-height: 290px; }
  .ar-tonica-txt, .ar-tonica.is-reverse .ar-tonica-txt { padding: 32px 28px 40px; }
  .ar-quote { padding: 66px 24px; }
  .ar-cta { padding: 66px 24px 80px; }
}

/* =========================================================
   PRECARGA + VIDEOS DIFERIDOS
   ========================================================= */

/* Pantalla de precarga con el logo. Solo se muestra si hay JavaScript
   (la clase .has-js la pone el propio header), porque si no, nadie
   podría retirarla. */
.site-preloader { display: none; }
.has-js .site-preloader {
  display: flex; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center; flex-direction: column;
  background: var(--bg-dark);
  transition: opacity .45s ease, visibility .45s ease;
}
.site-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.site-preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.site-preloader img { width: 92px; height: auto; animation: preloaderPulse 1.6s ease-in-out infinite; }
.site-preloader-bar {
  display: block; width: 120px; height: 2px; background: rgba(243,236,230,.16);
  border-radius: 2px; overflow: hidden;
}
.site-preloader-bar > span {
  display: block; width: 40%; height: 100%; background: var(--gold);
  animation: preloaderBar 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes preloaderBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(320%); } }

/* Respeta a quien pidió reducir el movimiento en su sistema. */
@media (prefers-reduced-motion: reduce) {
  .site-preloader img, .site-preloader-bar > span { animation: none; }
  .site-preloader { transition: none; }
}

/* Contenedor de los videos de Vimeo que se cargan al hacer scroll.
   Mantiene el mismo encuadre que tenía el iframe original. */
.video-lazy { position: absolute; inset: 0; overflow: hidden; }
.video-lazy iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%); border: 0;
  opacity: 0; transition: opacity .6s ease;
}
.video-lazy.is-loaded iframe { opacity: 1; }
/* El hero necesita cubrir toda la altura de la pantalla. */
.hero .video-lazy iframe { min-height: 100vh; }

/* Fondo del hero de Artonic mientras el video aún no se descarga. */
.ar-hero-video { background: #0E0D0B; }
