:root {
    --wine: #121212;
    --wine-dark: #0b0b0b;
    --wine-soft: #4a4a4a;
    --honey: #f2c200;
    --honey-light: #ffe47a;
    --cream: #fff9df;
    --paper: #fffdf7;
    --sand: #f8ecae;
    --olive: #847316;
    --ink: #171717;
    --muted: #625b4b;
    --line: rgba(18, 18, 18, .12);
    --white: #fff;
    --shadow-sm: 0 10px 30px rgba(63, 27, 26, .08);
    --shadow-lg: 0 30px 70px rgba(63, 27, 26, .16);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --container: 1180px;
    --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--honey-light); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--warm { background: radial-gradient(circle at 12% 10%, rgba(242,194,0,.18), transparent 26%), linear-gradient(180deg, #fffef8 0%, var(--cream) 100%); }
.section--soft { background: linear-gradient(180deg, #fffdf2 0%, #fff6d8 100%); }
.section--dark { background: var(--wine-dark); color: var(--white); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 14px;
    border-radius: 10px; background: var(--ink); color: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.announcement { background: var(--wine-dark); color: var(--white); font-size: .84rem; }
.announcement__inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.announcement strong { color: var(--honey-light); }

.site-header {
    position: sticky; top: 0; z-index: 1000; height: var(--header-height);
    background: rgba(255, 252, 243, .94); backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(63, 27, 26, .05); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand__mark {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 16px;
    background: var(--honey); color: var(--ink); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 700;
    box-shadow: 0 10px 24px rgba(242,194,0,.28);
    transform: rotate(-4deg);
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand__meta { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: #9a7a00; font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.main-nav a { position: relative; font-size: .93rem; font-weight: 700; text-decoration: none; color: #3f372c; }
.main-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: var(--wine); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; }
.menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); display: block; margin: 5px 0; }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px;
    font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible { outline: 3px solid rgba(239, 169, 31, .55); outline-offset: 3px; }
.button--primary { background: var(--wine); color: var(--white); box-shadow: 0 8px 20px rgba(18, 18, 18, .22); }
.button--primary:hover { background: #000; box-shadow: 0 12px 26px rgba(18, 18, 18, .28); }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.68); }
.button--dark { background: var(--ink); color: var(--white); }
.button--honey { background: var(--honey); color: #2b211c; box-shadow: 0 12px 28px rgba(239,169,31,.25); }
.button--large { min-height: 56px; padding-inline: 29px; }
.button--full { width: 100%; }

.eyebrow { display: inline-block; margin-bottom: 14px; color: #9a7a00; font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: var(--honey-light); }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading h2, .builder-intro h2, .delivery-card h2, .final-cta h2, .blog-teaser h2 {
    margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.035em;
}
.section-heading p, .builder-intro > p, .delivery-card > div > p, .blog-teaser p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.hero { position: relative; overflow: hidden; padding: 76px 0 94px; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; right: -180px; top: -260px; background: rgba(239,169,31,.16); filter: blur(3px); }
.hero__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 44px; }
.hero__copy { position: relative; z-index: 2; }
.hero h1 { margin: 0; max-width: 700px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.35rem, 6.5vw, 6.2rem); line-height: .96; letter-spacing: -.055em; }
.hero h1 em { color: #b38300; font-weight: 400; }
.hero__lead { max-width: 620px; margin: 25px 0 0; color: #5d504a; font-size: 1.12rem; }
.hero__price { display: flex; align-items: center; gap: 18px; margin: 25px 0 22px; }
.hero__price > span { max-width: 60px; color: var(--muted); font-size: .82rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; }
.hero__price strong { color: #111; font-family: Georgia, serif; font-size: 3.25rem; line-height: 1; }
.hero__price small { font-size: 1.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; margin: 25px 0 0; padding: 0; list-style: none; color: #51453f; font-size: .9rem; font-weight: 700; }
.trust-list span { color: var(--olive); }
.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero__visual img { width: min(100%, 690px); filter: drop-shadow(0 30px 34px rgba(18,18,18,.18)); animation: float 5s ease-in-out infinite; border-radius: 28px; }
.hero__badge { position: absolute; z-index: 2; top: 50px; right: 0; width: 108px; height: 108px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--wine); color: var(--honey-light); box-shadow: var(--shadow-lg); transform: rotate(7deg); }
.hero__badge strong { font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.hero__badge span { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero__note { position: absolute; left: 10px; bottom: 30px; z-index: 2; padding: 14px 20px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.76); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.hero__note span, .hero__note strong { display: block; }
.hero__note span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero__note strong { font-size: .93rem; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-11px) rotate(1deg); } }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-strip__grid > div { padding: 24px 22px; border-right: 1px solid var(--line); }
.proof-strip__grid > div:first-child { padding-left: 0; }
.proof-strip__grid > div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--wine); font-family: Georgia, serif; font-size: 1.18rem; }
.proof-strip span { color: var(--muted); font-size: .82rem; }

.equation { display: grid; grid-template-columns: 1fr auto 1fr auto .8fr; align-items: stretch; gap: 18px; }
.equation__item, .equation__total { display: flex; align-items: center; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.equation__number { display: grid; place-items: center; flex: 0 0 auto; width: 58px; height: 58px; border-radius: 18px; background: var(--sand); color: var(--wine); font-family: Georgia, serif; font-size: 2rem; font-weight: 700; }
.equation__item strong, .equation__item small { display: block; }
.equation__item small { color: var(--muted); }
.equation__sign { align-self: center; color: var(--wine); font-family: Georgia, serif; font-size: 2rem; }
.equation__total { display: block; text-align: center; background: var(--wine); color: var(--white); }
.equation__total small, .equation__total strong { display: block; }
.equation__total small { color: #ead4cf; }
.equation__total strong { margin-top: 5px; color: var(--honey-light); font-family: Georgia, serif; font-size: 2.2rem; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.product-card { display: grid; grid-template-columns: .86fr 1.14fr; overflow: hidden; min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.product-card__image { display: grid; place-items: center; padding: 25px; background: linear-gradient(145deg, var(--cream), #efe1ca); }
.product-card__image img { max-height: 310px; transition: transform .3s ease; }
.product-card:hover img { transform: translateY(-7px) rotate(1deg); }
.product-card__body { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.product-card__tag { align-self: flex-start; padding: 5px 11px; border-radius: 999px; background: #fff3bc; color: #111; font-size: .72rem; font-weight: 800; }
.product-card h3, .gift-card h3 { margin: 17px 0 10px; font-family: Georgia, serif; font-size: 1.7rem; line-height: 1.1; }
.product-card p, .gift-card p { margin: 0; color: var(--muted); }
.product-card a { margin-top: 22px; color: var(--wine); font-weight: 800; text-decoration: none; }

.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gift-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.gift-card img { width: 100%; aspect-ratio: 1.23; object-fit: contain; padding: 20px; background: linear-gradient(180deg, #fffef7, #fff7dc); }
.gift-card > div { padding: 24px; }
.gift-card h3 { margin-top: 0; }

.builder-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.builder-intro { position: sticky; top: 120px; }
.builder-intro > p { color: #d7c8c1; }
.builder-intro__summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 35px; }
.builder-intro__summary > div { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.05); }
.builder-intro__summary span, .builder-intro__summary strong, .builder-intro__summary small { display: block; }
.builder-intro__summary span { color: var(--honey-light); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.builder-intro__summary strong { margin-top: 6px; }
.builder-intro__summary small { color: #cab8b0; }
.pack-builder { padding: 32px; border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.2); }
.builder-step { margin: 0 0 25px; padding: 0 0 25px; border: 0; border-bottom: 1px solid var(--line); }
.builder-step__header, .builder-step legend { width: 100%; display: flex; align-items: center; gap: 13px; margin-bottom: 16px; padding: 0; }
.builder-step__header > span, .builder-step legend > span { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--wine); color: var(--white); font-size: .8rem; font-weight: 900; }
.builder-step__header strong, .builder-step__header small, .builder-step legend strong, .builder-step legend small { display: block; }
.builder-step__header small, .builder-step legend small { color: var(--muted); font-size: .8rem; }
.quantity-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; }
.quantity-card label { font-weight: 800; }
.stepper { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.stepper button { width: 38px; height: 38px; border: 0; background: #f7f0e5; cursor: pointer; font-size: 1.3rem; }
.stepper output { min-width: 38px; text-align: center; font-weight: 900; }
.builder-validation { margin: 9px 0 0; color: var(--olive); font-size: .8rem; font-weight: 700; }
.builder-validation.is-error { color: #b3261e; }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span { display: grid; place-items: center; min-height: 62px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; text-align: center; transition: .18s ease; }
.choice-card input:checked + span { border-color: var(--wine); background: #fff8d4; color: #111; box-shadow: inset 0 0 0 1px var(--wine); }
.choice-card input:focus-visible + span { outline: 3px solid rgba(239,169,31,.45); outline-offset: 2px; }
.builder-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.builder-fields label { font-size: .83rem; font-weight: 800; }
.builder-fields label span { color: var(--muted); font-weight: 500; }
.builder-fields input { width: 100%; height: 48px; margin-top: 7px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: #fffcf7; }
.order-preview { display: flex; justify-content: space-between; gap: 20px; padding: 20px; margin-bottom: 16px; border-radius: 16px; background: #fff8d8; }
.order-preview span, .order-preview strong, .order-preview small { display: block; }
.order-preview span, .order-preview__price small { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.order-preview small { color: var(--muted); }
.order-preview__price { text-align: right; }
.order-preview__price strong { color: var(--wine); font-family: Georgia, serif; font-size: 1.65rem; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.steps-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { min-height: 250px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.steps-grid li > span { color: var(--wine-soft); font-family: Georgia, serif; font-size: 2rem; }
.steps-grid h3 { margin: 45px 0 8px; font-family: Georgia, serif; font-size: 1.35rem; }
.steps-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.delivery-card { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 60px; padding: 50px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.delivery-card__details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.delivery-card__details > div { min-height: 125px; padding: 18px; border-radius: 18px; background: #fff8dd; }
.delivery-card__details span, .delivery-card__details strong { display: block; }
.delivery-card__details span { color: var(--wine); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.delivery-card__details strong { margin-top: 25px; font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.2; }

.faq-preview__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.text-link { color: var(--wine); font-weight: 800; text-decoration: none; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 21px 44px 21px 0; cursor: pointer; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font-family: sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--wine); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: -4px 40px 22px 0; color: var(--muted); }

.blog-teaser__grid { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.blog-teaser__grid > div { max-width: 720px; }
.final-cta { padding: 90px 0; background: linear-gradient(135deg, #111 0%, #2b2b2b 100%); color: var(--white); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { margin-bottom: 10px; }
.final-cta p { color: #ead4cf; margin: 0; }

.site-footer { padding: 68px 0 22px; background: #111; color: #f8f2df; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; }
.brand--footer { margin-bottom: 20px; color: var(--white); }
.brand--footer small { color: var(--honey-light); }
.footer__grid h2 { margin: 0 0 16px; color: var(--honey-light); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer__grid p { color: #d7ceb7; font-size: .9rem; }
.footer__grid a { display: block; margin: 9px 0; color: #eee5c9; font-size: .9rem; text-decoration: none; }
.footer__grid a:hover { color: var(--honey-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #b9b09a; font-size: .78rem; }
.link-button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; text-decoration: underline; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 23px; z-index: 900; display: flex; align-items: center; gap: 8px; min-height: 52px; padding: 0 19px; border-radius: 999px; background: #1f9d57; color: var(--white); box-shadow: 0 16px 35px rgba(31,157,87,.32); font-weight: 900; text-decoration: none; }
.floating-whatsapp > span:first-child { font-size: 1.25rem; }
.mobile-order-bar { display: none; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 2000; max-width: 900px; margin: 0 auto; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-lg); }
.cookie-banner:not([hidden]) { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.cookie-banner__actions { display: flex; gap: 8px; flex: 0 0 auto; }

.page-hero { padding: 72px 0 62px; background: var(--cream); }
.page-hero__inner { max-width: 840px; }
.page-hero h1 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; letter-spacing: -.04em; }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.content-page { padding: 78px 0; }
.prose { max-width: 820px; }
.prose h2 { margin: 44px 0 12px; font-family: Georgia, serif; font-size: 2rem; line-height: 1.15; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #554943; }
.prose a { color: var(--wine); font-weight: 700; }
.info-box { padding: 22px; border-left: 4px solid var(--honey); border-radius: 0 15px 15px 0; background: var(--cream); }
.breadcrumbs { margin-bottom: 18px; font-size: .8rem; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #b3a29a; }
.breadcrumbs a { text-decoration: none; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card h2 { margin-top: 0; font-family: Georgia, serif; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .main-nav { gap: 16px; }
    .header__cta { display: none; }
    .hero__grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: clamp(3.1rem, 7vw, 5rem); }
    .product-card { grid-template-columns: 1fr; }
    .product-card__image { min-height: 280px; }
    .builder-layout { gap: 38px; }
    .equation { grid-template-columns: 1fr auto 1fr; }
    .equation__total { grid-column: 1 / -1; }
    .equation__sign:nth-of-type(2) { display: none; }
}

@media (max-width: 820px) {
    :root { --header-height: 68px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 75px 0; }
    .announcement__desktop { display: none; }
    .announcement__inner { justify-content: center; }
    .header__inner { gap: 14px; }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav { position: fixed; inset: calc(36px + var(--header-height)) 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-lg); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 13px 10px; }
    .main-nav a::after { display: none; }
    .hero { padding: 56px 0 70px; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { min-height: 390px; }
    .hero__badge { top: 10px; right: 10px; }
    .hero__note { bottom: 4px; }
    .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .proof-strip__grid > div { border-bottom: 1px solid var(--line); }
    .proof-strip__grid > div:nth-child(2) { border-right: 0; }
    .product-grid, .builder-layout, .delivery-card, .faq-preview__grid { grid-template-columns: 1fr; }
    .product-card { grid-template-columns: .85fr 1.15fr; }
    .gift-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .builder-intro { position: static; }
    .delivery-card { padding: 32px; gap: 30px; }
    .blog-teaser__grid, .final-cta__inner { align-items: flex-start; flex-direction: column; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
    body { padding-bottom: 72px; }
    .brand__mark { width: 37px; height: 37px; }
    .brand strong { font-size: 1.3rem; }
    .hero h1 { font-size: clamp(3.05rem, 16vw, 4.6rem); }
    .hero__lead { font-size: 1rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .button { width: 100%; }
    .hero__visual { min-height: 320px; }
    .hero__badge { width: 86px; height: 86px; }
    .hero__badge strong { font-size: 1.55rem; }
    .hero__note { left: 0; }
    .trust-list { display: grid; gap: 8px; }
    .proof-strip__grid > div { padding: 18px 12px; }
    .equation { grid-template-columns: 1fr; }
    .equation__sign { display: none; }
    .product-grid, .product-card, .gift-grid, .steps-grid, .delivery-card__details, .builder-fields { grid-template-columns: 1fr; }
    .product-card__image { min-height: 240px; }
    .option-grid, .option-grid--gifts { grid-template-columns: 1fr; }
    .pack-builder { padding: 22px 17px; border-radius: 25px; }
    .order-preview { flex-direction: column; }
    .order-preview__price { text-align: left; }
    .builder-intro__summary { grid-template-columns: 1fr; }
    .delivery-card { padding: 24px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { align-items: flex-start; flex-direction: column; }
    .floating-whatsapp { display: none; }
    .mobile-order-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,253,248,.96); backdrop-filter: blur(14px); box-shadow: 0 -8px 25px rgba(63,27,26,.08); }
    .mobile-order-bar small, .mobile-order-bar strong { display: block; line-height: 1.1; }
    .mobile-order-bar small { color: var(--muted); font-size: .7rem; }
    .mobile-order-bar strong { margin-top: 4px; font-family: Georgia, serif; }
    .mobile-order-bar .button { min-height: 44px; padding-inline: 18px; }
    .cookie-banner:not([hidden]) { align-items: stretch; flex-direction: column; }
    .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}
.product-detail { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: center; }
.product-detail h1 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.05em; }
.product-detail__copy > p { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.product-detail__facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0; }
.product-detail__facts span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); font-size: .78rem; font-weight: 800; }
.product-detail__image { display: grid; place-items: center; }
.product-detail__image img { max-height: 490px; filter: drop-shadow(0 28px 30px rgba(63,27,26,.16)); }
.product-story { display: grid; grid-template-columns: minmax(0, 780px) 280px; justify-content: center; gap: 65px; align-items: start; }
.product-story__aside { position: sticky; top: 110px; padding: 25px; border-radius: var(--radius); background: var(--wine); color: var(--white); text-align: center; }
.product-story__aside span, .product-story__aside strong, .product-story__aside em { display: block; }
.product-story__aside span { color: #e7c8c2; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-story__aside strong { margin-top: 10px; font-family: Georgia, serif; font-size: 1.5rem; }
.product-story__aside em { margin: 8px 0 20px; color: var(--honey-light); font-style: normal; }
@media (max-width: 820px) { .product-detail, .product-story { grid-template-columns: 1fr; } .product-detail__image { order: -1; } .product-story__aside { position: static; } }
.faq-page { display: grid; grid-template-columns: minmax(0, 760px) 300px; justify-content: center; gap: 65px; align-items: start; }
.faq-page__cta { position: sticky; top: 110px; padding: 27px; border-radius: var(--radius); background: var(--wine); color: var(--white); }
.faq-page__cta span, .faq-page__cta strong { display: block; }
.faq-page__cta span { color: var(--honey-light); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.faq-page__cta strong { margin-top: 9px; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.15; }
.faq-page__cta p { color: #dfc9c2; }
@media (max-width: 820px) { .faq-page { grid-template-columns: 1fr; } .faq-page__cta { position: static; } }

/* Línea de citratos */
.citrates-page {
    --wine: #315f50;
    --wine-dark: #173c32;
    --wine-soft: #668f82;
    --honey: #e5b84f;
    --honey-light: #ffe49a;
    --cream: #f4f7f1;
    --sand: #dfeae3;
    --line: rgba(23, 60, 50, .15);
}
.citrates-page .section--citrates {
    background: radial-gradient(circle at 85% 12%, rgba(229,184,79,.22), transparent 34%), linear-gradient(135deg, #f6f8f2 0%, #eef4ef 55%, #f8f2e7 100%);
}
.citrates-page .hero::before { background: rgba(71,121,107,.13); }
.citrates-page .hero__visual img { filter: drop-shadow(0 35px 35px rgba(23,60,50,.18)); }
.citrates-page .hero__badge--citrates { background: #315f50; }
.citrates-page .product-card__image--citrates { background: linear-gradient(145deg, #f2f7f2, #dce9df); }
.citrates-page .section--citrates-dark { background: linear-gradient(135deg, #173c32, #244d42); }
.citrates-page .choice-card input:checked + span { background: #f0f8f4; }
.citrates-page .order-preview { background: #f1f7f3; }
.citrates-page .final-cta--citrates { background: linear-gradient(135deg, #244d42, #173c32); }

.surprise-card {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
    gap: 55px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fffdf7, #eef5f0);
    box-shadow: var(--shadow-sm);
}
.surprise-card__visual { display: grid; place-items: center; }
.surprise-card__visual img { max-height: 300px; filter: drop-shadow(0 24px 22px rgba(23,60,50,.15)); }
.surprise-card h2 { margin: 0 0 16px; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; }
.surprise-card p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.included-gift__box { display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px dashed var(--wine-soft); border-radius: 16px; background: #f5faf7; }
.included-gift__box > span { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--wine); color: var(--honey-light); }
.included-gift__box strong, .included-gift__box small { display: block; }
.included-gift__box small { color: var(--muted); }

.cross-sell-line {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #173c32, #315f50);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.cross-sell-line__copy { padding: 48px; }
.cross-sell-line__copy .eyebrow { color: #ffe49a; }
.cross-sell-line__copy h2 { margin: 0 0 15px; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.04; letter-spacing: -.035em; }
.cross-sell-line__copy p { max-width: 650px; margin: 0 0 26px; color: #d9e6e0; }
.cross-sell-line__visual { min-height: 390px; display: grid; place-items: center; padding: 18px 26px 0; background: radial-gradient(circle, rgba(229,184,79,.22), transparent 60%); }
.cross-sell-line__visual img { max-height: 390px; filter: drop-shadow(0 24px 30px rgba(0,0,0,.22)); }

@media (max-width: 820px) {
    .surprise-card, .cross-sell-line { grid-template-columns: 1fr; }
    .surprise-card { gap: 20px; padding: 34px; }
    .cross-sell-line__visual { min-height: 310px; order: -1; }
}
@media (max-width: 580px) {
    .surprise-card { padding: 24px; }
    .cross-sell-line__copy { padding: 30px 24px 34px; }
    .cross-sell-line__visual { min-height: 260px; }
}
