:root {
  --canvas: #f4f2ed;
  --paper: #fff;
  --ink: #101713;
  --muted: #667069;
  --forest: #10372c;
  --forest-deep: #09251e;
  --wine: #7b2442;
  --wine-deep: #59162e;
  --gold: #b79461;
  --line: rgba(16, 23, 19, .12);
  --soft-line: rgba(16, 23, 19, .075);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1420px;
  --header-h: 82px;
  --shadow-sm: 0 12px 34px rgba(14, 31, 24, .065);
  --shadow-lg: 0 28px 80px rgba(8, 26, 19, .13);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body { margin: 0; min-width: 320px; overflow-x: clip; background: var(--canvas); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(123, 36, 66, .35); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: -5rem; left: 1rem; border-radius: 999px; padding: .7rem 1rem; background: #fff; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.section { padding: clamp(82px, 8vw, 132px) 0; }
.section-tight { padding: clamp(68px, 7vw, 104px) 0; }
.eyebrow { margin: 0 0 16px; color: var(--wine); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.display, .section-title { font-family: var(--serif); font-weight: 400; letter-spacing: -.048em; text-wrap: balance; }
.display { margin: 0; font-size: clamp(3.5rem, 6vw, 6.8rem); line-height: .88; }
.section-title { max-width: 820px; margin: 0; font-size: clamp(2.55rem, 4.3vw, 4.9rem); line-height: .98; }
.section-copy { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 46px; margin-bottom: 44px; }
.section-heading .section-copy { max-width: 500px; margin: 0; }

.btn { position: relative; display: inline-flex; min-height: 56px; min-width: 0; align-items: center; justify-content: center; gap: 12px; overflow: hidden; border: 1px solid transparent; border-radius: 999px; padding: 14px 24px; background: var(--wine); color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .06em; line-height: 1.25; text-align: center; text-transform: uppercase; box-shadow: 0 10px 25px rgba(92, 22, 46, .16); transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease; }
.btn::after { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); content: "↗"; font-size: .75rem; transition: transform .28s var(--ease), background .28s ease; }
.btn:hover { background: var(--wine-deep); box-shadow: 0 16px 34px rgba(92, 22, 46, .23); transform: translateY(-2px); }
.btn:hover::after { background: rgba(255,255,255,.24); transform: rotate(45deg); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 12px 32px rgba(7,25,18,.1); }
.btn-light::after { background: var(--forest); color: #fff; }
.btn-light:hover { background: #fff; color: var(--wine); }
.btn-outline { border-color: rgba(16,23,19,.28); background: transparent; color: var(--ink); box-shadow: none; }
.btn-outline::after { background: var(--ink); color: #fff; }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: 0 14px 32px rgba(16,23,19,.16); }
.btn-whatsapp { background: #176b4d; box-shadow: 0 12px 30px rgba(23,107,77,.2); }
.btn-whatsapp::after { display: none; }
.btn-whatsapp:hover { background: #0e563d; box-shadow: 0 16px 36px rgba(23,107,77,.28); }
.btn-icon { display: inline-flex; width: 20px; height: 20px; flex: 0 0 20px; align-items: center; justify-content: center; }
.icon { display: block; width: 100%; height: 100%; }
.icon-phone { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon-whatsapp .wa-ring { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.icon-whatsapp .wa-phone { fill: currentColor; stroke: none; }
.mobile-nav-actions .btn::after, .product-actions .btn::after, .contact-band-actions .btn::after, .mobile-cta .btn::after { display: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; }
.text-link::after { content: "↗"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translate(3px,-3px); }

.announcement { position: relative; z-index: 42; min-height: 34px; background: var(--forest-deep); color: rgba(255,255,255,.78); font-size: .7rem; font-weight: 650; letter-spacing: .075em; }
.announcement .container { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 24px; }
.announcement a { color: #fff; font-weight: 800; }
.site-header { position: sticky; z-index: 40; top: 0; height: var(--header-h); border-bottom: 1px solid rgba(16,23,19,.08); background: rgba(255,255,255,.88); backdrop-filter: blur(22px) saturate(140%); transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 38px rgba(8,27,20,.08); }
.header-inner { display: grid; height: 100%; align-items: center; grid-template-columns: auto 1fr auto; gap: clamp(20px, 2.5vw, 38px); }
.brand { display: inline-flex; min-width: max-content; align-items: center; gap: 13px; }
.brand-emblem { position: relative; display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border: 1px solid rgba(16,23,19,.38); border-radius: 50%; background: linear-gradient(145deg,#fff,#f0ece5); color: var(--forest); box-shadow: inset 0 0 0 4px #fff, 0 8px 20px rgba(16,23,19,.08); }
.brand-emblem::before { position: absolute; inset: 5px; border: 1px solid rgba(183,148,97,.7); border-radius: inherit; content: ""; }
.brand-emblem::after { position: absolute; top: 3px; right: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 3px #fff; content: ""; }
.brand-emblem span { position: relative; z-index: 1; font-family: var(--serif); font-size: 1rem; font-weight: 600; letter-spacing: -.06em; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--serif); font-size: 1.06rem; font-weight: 500; letter-spacing: .115em; text-transform: uppercase; }
.brand-name small { margin-top: 7px; color: #6b736e; font-size: .52rem; font-weight: 750; letter-spacing: .26em; text-transform: uppercase; }
.desktop-nav { display: flex; height: 100%; align-items: stretch; justify-content: center; gap: clamp(24px,2.4vw,38px); }
.desktop-nav > a, .nav-dropdown > summary { position: relative; display: flex; min-height: var(--header-h); align-items: center; padding: 3px 0 0; color: #39443e; font-size: .82rem; font-weight: 760; letter-spacing: .055em; line-height: 1.2; text-transform: uppercase; white-space: nowrap; }
.desktop-nav > a::after, .nav-dropdown > summary::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; border-radius: 2px; background: var(--wine); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav > a:hover::after, .desktop-nav > a[aria-current="page"]::after, .nav-dropdown[open] > summary::after, .nav-dropdown.is-current > summary::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; height: 100%; }
.nav-dropdown > summary { gap: 9px; list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .25s var(--ease); }
.nav-dropdown[open] .nav-chevron { transform: translateY(2px) rotate(225deg); }
.nav-dropdown-panel { position: absolute; z-index: 50; top: calc(100% - 10px); left: 50%; display: grid; width: 460px; grid-template-columns: 1fr 1fr; gap: 6px; border: 1px solid rgba(16,23,19,.09); border-radius: 20px; padding: 16px; background: rgba(255,255,255,.985); box-shadow: 0 26px 70px rgba(8,26,19,.17); opacity: 0; pointer-events: none; transform: translate(-50%,-8px); transition: opacity .2s ease, transform .25s var(--ease); }
.nav-dropdown[open] .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%,0); }
.nav-dropdown-title { grid-column: 1 / -1; padding: 3px 9px 9px; color: var(--wine); font-size: .72rem; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.nav-dropdown-panel a { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 12px; border-radius: 12px; padding: 10px 12px; color: #344039; font-size: .83rem; font-weight: 680; line-height: 1.3; transition: background .2s ease, color .2s ease, transform .2s var(--ease); }
.nav-dropdown-panel a span { color: var(--wine); }
.nav-dropdown-panel a:hover, .nav-dropdown-panel a[aria-current="page"] { background: #f0eee8; color: var(--wine); transform: translateX(2px); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-select { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 29px 8px 13px; background: #f5f3ef; color: var(--ink); font-size: .8rem; font-weight: 750; }
.header-call, .header-whatsapp { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease; }
.header-call { padding: 10px 17px; background: var(--forest); color: #fff; box-shadow: 0 8px 22px rgba(9,37,30,.14); }
.header-whatsapp { min-width: 44px; padding: 10px 15px; background: #e6f3ed; color: #176b4d; }
.header-call > .icon, .header-whatsapp > .icon { width: 18px; height: 18px; flex: 0 0 18px; }
.header-call:hover, .header-whatsapp:hover { background: var(--wine); color: #fff; transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: var(--forest); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 18px; height: 1px; background: #fff; content: ""; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle span { margin: 5px 0; }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { position: fixed; z-index: 39; inset: var(--mobile-nav-top,calc(var(--header-h) + 34px)) 0 0; display: block; overflow-y: auto; padding: 28px 24px 130px; background: rgba(9,37,30,.985); color: #fff; opacity: 0; pointer-events: none; transform: translateX(28px); transition: opacity .3s ease, transform .38s var(--ease); }
.nav-open .mobile-nav { opacity: 1; pointer-events: auto; transform: translateX(0); }
.mobile-nav-label { display: block; margin: 25px 0 4px; color: #ceb78f; font-size: .72rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.mobile-nav > a { display: flex; min-height: 56px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; }
.mobile-nav > a[aria-current="page"] { color: #e4c89a; }
.mobile-nav > a::after { color: rgba(255,255,255,.45); content: "↗"; font-family: var(--sans); font-size: .85rem; }
.mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }

.hero { position: relative; display: grid; min-height: 720px; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); overflow: hidden; background: #e9e4dc; }
.hero::before { position: absolute; z-index: 1; top: -180px; left: -180px; width: 520px; height: 520px; border: 1px solid rgba(123,36,66,.13); border-radius: 50%; content: ""; box-shadow: 0 0 0 80px rgba(255,255,255,.15), 0 0 0 160px rgba(255,255,255,.09); }
.hero-media { position: relative; grid-column: 2; grid-row: 1; min-height: 720px; overflow: hidden; background: #d8d3ca; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(9,37,30,.14),transparent 35%), linear-gradient(0deg,rgba(9,37,30,.12),transparent 30%); content: ""; pointer-events: none; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; transform: translate3d(0,var(--hero-shift,0),0) scale(1.045); transition: transform .15s linear; }
.hero-inner { position: relative; z-index: 2; grid-column: 1; grid-row: 1; width: 100%; max-width: 740px; min-height: 720px; margin: 0 0 0 auto; padding: 92px clamp(44px,5vw,86px) 74px max(32px,calc((100vw - var(--max))/2)); }
.hero-content { display: flex; height: 100%; flex-direction: column; justify-content: center; }
.hero .eyebrow { color: var(--wine); }
.hero .display { max-width: 650px; color: var(--forest-deep); }
.hero-copy { max-width: 575px; margin: 28px 0 0; color: #58635c; font-size: 1.03rem; line-height: 1.82; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-actions .btn-light { background: var(--forest); color: #fff; }
.hero-actions .btn-light::after { background: rgba(255,255,255,.17); }
.hero-actions .btn-light:hover { background: var(--wine); color: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(16,23,19,.13); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; color: #59635d; font-size: .72rem; font-weight: 720; }
.hero-trust span::before { width: 18px; height: 18px; border: 1px solid rgba(16,55,44,.28); border-radius: 50%; color: var(--forest); content: "✓"; font-size: .66rem; line-height: 17px; text-align: center; }
.hero-note { position: absolute; z-index: 3; right: 30px; bottom: 30px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 10px 14px; background: rgba(9,37,30,.55); color: #fff; font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(12px); }
.js .hero-content { animation: heroIn .9s var(--ease) both; }
.js .hero-media { animation: mediaIn 1s var(--ease) both; }

.category-strip { padding: 28px 0 0; }
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.category-card { position: relative; aspect-ratio: 1 / 1.08; overflow: hidden; border-radius: 24px; background: #d9d4cc; box-shadow: var(--shadow-sm); isolation: isolate; }
.category-card picture, .category-card img { width: 100%; height: 100%; }
.category-card img { object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.category-card::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg,rgba(4,17,13,.82),rgba(4,17,13,.04) 66%); content: ""; }
.category-card::after { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; content: "↗"; opacity: 0; transform: translate(-6px,6px); transition: opacity .3s ease, transform .3s var(--ease); }
.category-card:hover img { filter: saturate(1.05); transform: scale(1.045); }
.category-card:hover::after { opacity: 1; transform: none; }
.category-card-content { position: absolute; z-index: 3; right: 22px; bottom: 20px; left: 22px; color: #fff; }
.category-card span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.64); font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.category-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem,2vw,2rem); font-weight: 400; line-height: 1.08; }

.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(16px,2vw,30px); align-items: stretch; }
.product-card { display: flex; min-width: 0; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--soft-line); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 10px 30px rgba(8,26,19,.045); transition: border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease); }
.product-card:hover { border-color: rgba(123,36,66,.24); box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.product-image { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: #ded9d0; isolation: isolate; }
.product-image picture, .product-image img { width: 100%; height: 100%; }
.product-image img { object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.product-image::after { position: absolute; z-index: 2; inset: 0; background: linear-gradient(115deg,transparent 34%,rgba(255,255,255,.2) 49%,transparent 64%); content: ""; pointer-events: none; transform: translateX(-125%); transition: transform .85s var(--ease); }
.product-card:hover .product-image img { filter: saturate(1.03); transform: scale(1.025); }
.product-card:hover .product-image::after { transform: translateX(125%); }
.product-tag { position: absolute; z-index: 3; top: 14px; left: 14px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: 7px 11px; background: rgba(255,255,255,.84); color: var(--forest-deep); font-size: .58rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(14px); }
.product-body { display: flex; min-height: 205px; flex: 1; flex-direction: column; padding: 20px 19px 18px; }
.product-category-label { margin-bottom: 8px; color: var(--wine); font-size: .62rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.product-body h3 { min-height: 2.42em; margin: 0; font-family: var(--serif); font-size: clamp(1.18rem,1.55vw,1.48rem); font-weight: 400; line-height: 1.2; }
.product-body h3 a { transition: color .2s ease; }
.product-body h3 a:hover { color: var(--wine); }
.product-body p { margin: 8px 0 18px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.product-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }
.card-detail, .card-whatsapp { display: inline-flex; min-height: 43px; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 9px 15px; font-size: .67rem; font-weight: 820; letter-spacing: .055em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s var(--ease); }
.card-detail { background: #eeece6; color: var(--ink); }
.card-detail::after { content: "→"; font-size: .85rem; }
.card-detail:hover { background: var(--forest); color: #fff; }
.card-whatsapp { background: #e4f2eb; color: #126345; }
.card-whatsapp .btn-icon { width: 19px; height: 19px; flex-basis: 19px; }
.card-whatsapp:hover { background: #176b4d; color: #fff; transform: translateY(-1px); }

.why-section { position: relative; overflow: hidden; background: var(--forest-deep); color: #fff; }
.why-section::after { position: absolute; right: -150px; bottom: -260px; width: 560px; height: 560px; border: 1px solid rgba(183,148,97,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(183,148,97,.04),0 0 0 180px rgba(183,148,97,.025); }
.why-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(60px,9vw,150px); align-items: start; }
.why-section .eyebrow { color: #ceb78f; }
.why-section .section-copy { color: rgba(255,255,255,.65); }
.reason-list { border-top: 1px solid rgba(255,255,255,.16); counter-reset: reason; }
.reason { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); counter-increment: reason; }
.reason::before { color: #ceb78f; content: "0" counter(reason); font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.reason h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.48rem; font-weight: 400; }
.reason p { margin: 0; color: rgba(255,255,255,.63); font-size: .91rem; }

.occasions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.occasion { display: inline-flex; min-height: 48px; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; background: rgba(255,255,255,.7); font-size: .8rem; font-weight: 750; transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s var(--ease); }
.occasion::after { content: "+"; color: var(--wine); font-size: 1rem; }
.occasion:hover { border-color: var(--wine); background: #fff; color: var(--wine); transform: translateY(-2px); }

.split-section { display: grid; width: min(calc(100% - 64px),var(--max)); min-height: 660px; margin: 0 auto clamp(82px,8vw,132px); grid-template-columns: 1.06fr .94fr; overflow: hidden; border-radius: 34px; background: #fff; box-shadow: var(--shadow-lg); }
.split-media { min-height: 660px; overflow: hidden; background: #d9d4cc; }
.split-media picture, .split-media img { width: 100%; height: 100%; }
.split-media img { object-fit: cover; transition: transform 1s var(--ease); }
.split-section:hover .split-media img { transform: scale(1.025); }
.split-copy { display: flex; align-items: center; padding: clamp(50px,7vw,104px); }
.split-copy-inner { max-width: 560px; }
.split-copy .btn { margin-top: 30px; }

.reviews-section { background: #e4dfd7; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 42px; }
.review { min-height: 290px; border: 1px solid rgba(16,23,19,.08); border-radius: 22px; padding: clamp(28px,3vw,42px); background: rgba(255,255,255,.72); box-shadow: 0 12px 34px rgba(8,26,19,.04); }
.stars { color: var(--wine); font-size: .74rem; letter-spacing: .18em; }
.review blockquote { margin: 25px 0 30px; font-family: var(--serif); font-size: 1.35rem; line-height: 1.42; }
.review cite { font-size: .7rem; font-style: normal; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.review-note { margin: 18px 0 0; color: var(--muted); font-size: .75rem; }

.faq { margin-top: 30px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 24px 54px 24px 0; list-style: none; font-family: var(--serif); font-size: 1.23rem; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 19px; right: 0; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #ebe8e1; content: "+"; font-family: var(--sans); font-size: 1rem; }
.faq details[open] summary::after { background: var(--forest); color: #fff; content: "−"; }
.faq details p { max-width: 780px; margin: 0; padding: 0 0 26px; color: var(--muted); }

.contact-band { position: relative; overflow: hidden; background: linear-gradient(120deg,var(--wine-deep),var(--wine)); color: #fff; }
.contact-band::after { position: absolute; top: -200px; right: -80px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(255,255,255,.035); }
.contact-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding-block: clamp(68px,7vw,96px); }
.contact-band h2 { max-width: 790px; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem,4vw,4.7rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.contact-band p { max-width: 690px; margin: 18px 0 0; color: rgba(255,255,255,.7); }
.contact-band-actions { display: grid; min-width: 245px; gap: 10px; }

.page-hero { position: relative; min-height: 530px; overflow: hidden; background: var(--forest-deep); color: #fff; }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg,var(--forest-deep) 0%,rgba(9,37,30,.98) 48%,rgba(9,37,30,.22) 80%); content: ""; }
.page-hero-media { position: absolute; inset: 0 0 0 48%; background: #223f36; }
.page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; }
.page-hero-inner { position: relative; z-index: 2; display: flex; min-height: 530px; align-items: center; padding-block: 74px; }
.page-hero-inner > div { width: min(710px,55%); }
.page-hero .breadcrumbs { margin-bottom: 42px; color: rgba(255,255,255,.6); }
.page-hero .breadcrumbs a { color: #fff; }
.page-hero .eyebrow { color: #d4bc94; }
.page-hero .section-title { color: #fff; }
.page-hero .section-copy { color: rgba(255,255,255,.68); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--muted); font-size: .7rem; font-weight: 720; letter-spacing: .055em; }
.breadcrumbs span::before { margin-right: 8px; content: "/"; opacity: .45; }
.breadcrumbs a:hover { color: var(--wine); }

.category-layout { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: clamp(34px,5vw,72px); align-items: start; }
.category-aside { position: sticky; top: calc(var(--header-h) + 28px); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; padding: 8px; background: rgba(255,255,255,.76); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.category-aside a { display: flex; min-height: 46px; align-items: center; justify-content: space-between; border-radius: 13px; padding: 10px 13px; color: #4e5851; font-size: .78rem; font-weight: 720; }
.category-aside a::after { content: "→"; opacity: .35; }
.category-aside a:hover, .category-aside a[aria-current="page"] { background: var(--forest); color: #fff; }
.category-content { min-width: 0; }
.category-content .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.category-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 68px; }
.info-panel { border: 1px solid var(--soft-line); border-radius: 22px; padding: clamp(28px,4vw,46px); background: #fff; box-shadow: var(--shadow-sm); }
.info-panel h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.info-panel p { margin: 0; color: var(--muted); }

.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.delivery-card { border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 20px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.delivery-card .number { color: #d4bc94; font-family: var(--serif); font-size: 1rem; }
.delivery-card h2 { margin: 10px 0 6px; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.delivery-card p { margin: 0; color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.55; }

.product-detail { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(390px,.98fr); gap: clamp(54px,7vw,110px); align-items: start; }
.product-main-image { position: sticky; top: calc(var(--header-h) + 24px); aspect-ratio: 4 / 5; overflow: hidden; border-radius: 30px; background: #ddd8cf; box-shadow: var(--shadow-lg); }
.product-main-image picture, .product-main-image img { width: 100%; height: 100%; }
.product-main-image img { object-fit: cover; transition: transform 1s var(--ease); }
.product-main-image:hover img { transform: scale(1.018); }
.image-assurance { position: absolute; right: 18px; bottom: 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 9px 13px; background: rgba(9,37,30,.62); color: #fff; font-size: .61rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(12px); }
.product-info { padding-top: 8px; }
.product-info h1 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,4.9vw,5.2rem); font-weight: 400; letter-spacing: -.05em; line-height: .94; text-wrap: balance; }
.product-lead { max-width: 610px; margin: 24px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.78; }
.price-note { margin: 27px 0 0; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; background: rgba(255,255,255,.75); color: #4e5851; font-size: .85rem; }
.product-actions { display: grid; grid-template-columns: 1.16fr .84fr; gap: 10px; margin: 18px 0 0; }
.product-actions .btn { width: 100%; }
.product-service-points { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 24px; }
.product-service-points span { display: inline-flex; align-items: center; gap: 7px; color: #536059; font-size: .7rem; font-weight: 720; }
.product-service-points span::before { color: var(--wine); content: "✓"; font-weight: 900; }
.product-facts { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-fact { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px; }
.product-fact h2 { margin: 0 0 7px; color: var(--wine); font-size: .63rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-fact p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.62; }
.notice { margin: 24px 0 0; border-left: 3px solid var(--wine); border-radius: 0 12px 12px 0; padding: 16px 18px; background: #eeeae3; color: #59625d; font-size: .78rem; }

.legal-page { max-width: 920px; }
.legal-page h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(2.7rem,5vw,5rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.legal-page h2 { margin: 40px 0 12px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page .notice { margin-bottom: 34px; }

.site-footer { padding: 76px 0 28px; background: #071a15; color: #fff; }
.site-footer .brand-emblem { border-color: rgba(255,255,255,.34); background: transparent; color: #fff; box-shadow: inset 0 0 0 4px #071a15; }
.site-footer .brand-emblem::before { border-color: rgba(212,188,148,.5); }
.site-footer .brand-emblem::after { box-shadow: 0 0 0 3px #071a15; }
.site-footer .brand-name small { color: rgba(255,255,255,.48); }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 54px; padding-bottom: 56px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.64); line-height: 1.75; }
.footer-title { margin: 0 0 18px; color: rgba(255,255,255,.43); font-size: .65rem; font-weight: 820; letter-spacing: .17em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .84rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; color: rgba(255,255,255,.42); font-size: .7rem; }
.footer-bottom a { color: rgba(255,255,255,.68); }

.language-entry { min-height: 100svh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 70% 20%,#255e4e,var(--forest-deep) 48%); color: #fff; text-align: center; }
.language-entry-inner { max-width: 760px; }
.language-entry .brand { justify-content: center; margin-bottom: 44px; }
.language-entry .brand-emblem { border-color: rgba(255,255,255,.4); background: transparent; color: #fff; box-shadow: inset 0 0 0 4px transparent; }
.language-entry .brand-name small { color: rgba(255,255,255,.58); }
.language-entry h1 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,7vw,6rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.language-entry p { color: rgba(255,255,255,.65); }
.language-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 30px; }
.not-found { min-height: 100svh; display: grid; place-items: center; padding: 70px 20px; text-align: center; }
.not-found strong { display: block; color: var(--wine); font-family: var(--serif); font-size: clamp(7rem,19vw,15rem); font-weight: 400; line-height: .7; opacity: .18; }
.not-found h1 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(2.2rem,5vw,4.2rem); font-weight: 400; }

.mobile-cta { position: fixed; z-index: 45; right: 0; bottom: 0; left: 0; display: none; grid-template-columns: .82fr 1.18fr; gap: 8px; padding: 9px max(10px,env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left)); border-top: 1px solid rgba(16,23,19,.1); background: rgba(255,255,255,.94); box-shadow: 0 -12px 34px rgba(8,26,19,.09); backdrop-filter: blur(18px); }
.mobile-cta .btn { min-height: 50px; padding-inline: 11px; font-size: .76rem; letter-spacing: .04em; }
.mobile-cta .btn span:last-child { min-width: 0; overflow-wrap: anywhere; }
.mobile-cta .btn-icon { width: 18px; height: 18px; flex-basis: 18px; }

.reveal { opacity: 0; filter: blur(5px); transform: translateY(28px); transition: opacity .75s ease var(--reveal-delay,0ms), filter .75s ease var(--reveal-delay,0ms), transform .8s var(--ease) var(--reveal-delay,0ms); }
.reveal.is-visible { opacity: 1; filter: blur(0); transform: none; }

@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes mediaIn { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 44px),var(--max)); }
  .desktop-nav { gap: 22px; }
  .header-call { display: none; }
  .header-whatsapp { width: 44px; padding: 0; }
  .header-whatsapp-label { display: none; }
  .hero-inner { padding-left: 34px; padding-right: 42px; }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-content .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .mobile-nav { width: min(100%,520px); margin-left: auto; box-shadow: -28px 0 70px rgba(4,17,13,.24); }
  .menu-toggle { display: block; }
}

@media (max-width: 930px) {
  :root { --header-h: 72px; }
  .header-call { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-inner { grid-column: 1; grid-row: 1; max-width: none; min-height: auto; margin: 0; padding: 72px max(24px,calc((100vw - 740px)/2)) 60px; }
  .hero-media { grid-column: 1; grid-row: 2; min-height: min(840px,100vw); }
  .hero-note { display: none; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .category-card { aspect-ratio: 1.12 / 1; }
  .why-grid, .split-section, .product-detail { grid-template-columns: 1fr; }
  .split-section { width: min(calc(100% - 44px),var(--max)); }
  .split-media { min-height: min(820px,92vw); }
  .product-main-image { position: relative; top: auto; max-width: 760px; margin-inline: auto; }
  .page-hero { padding-bottom: min(72vw,620px); }
  .page-hero::after { background: linear-gradient(180deg,var(--forest-deep) 0%,var(--forest-deep) 48%,rgba(9,37,30,.12) 78%); }
  .page-hero-media { inset: 44% 0 0; }
  .page-hero-inner { min-height: 470px; align-items: start; padding-top: 64px; }
  .page-hero-inner > div { width: 100%; }
  .page-hero .delivery-grid { max-width: 720px; }
  .category-layout { grid-template-columns: 1fr; }
  .category-aside { position: static; display: flex; overflow-x: auto; gap: 7px; border: 0; border-radius: 0; padding: 0 0 6px; background: transparent; box-shadow: none; scrollbar-width: thin; }
  .category-aside a { flex: 0 0 auto; border: 1px solid var(--line); background: rgba(255,255,255,.65); }
  .category-aside a::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review { min-height: 0; }
  .contact-band-inner { grid-template-columns: 1fr; }
  .contact-band-actions { display: flex; flex-wrap: wrap; min-width: 0; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 24px),var(--max)); }
  .section { padding: 70px 0; }
  .section-tight { padding: 58px 0; }
  .announcement { min-height: 31px; padding-block: 5px; font-size: .75rem; letter-spacing: .02em; line-height: 1.35; }
  .announcement .container { min-height: 31px; justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .brand { gap: 9px; }
  .brand-emblem { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-name b { font-size: .83rem; }
  .brand-name small { margin-top: 5px; font-size: .44rem; }
  .header-inner { gap: 8px; }
  .header-whatsapp { display: none; }
  .lang-select { min-height: 42px; padding-inline: 10px; }
  .display { font-size: clamp(3rem,15vw,4.55rem); }
  .section-title { font-size: clamp(2.4rem,11vw,3.6rem); }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading .section-copy { margin-top: 17px; }
  .hero-inner { padding: 54px 20px 48px; }
  .hero-copy { margin-top: 21px; font-size: 1rem; line-height: 1.72; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-actions .btn { min-height: 51px; padding-inline: 12px; font-size: .78rem; }
  .hero-actions .btn::after { width: 22px; height: 22px; flex-basis: 22px; }
  .hero-trust { display: grid; gap: 8px; margin-top: 30px; padding-top: 18px; }
  .hero-media { min-height: 124vw; max-height: 690px; }
  .category-strip { padding-top: 14px; }
  .category-grid { gap: 10px; }
  .category-card { aspect-ratio: .9 / 1; border-radius: 17px; }
  .category-card-content { right: 13px; bottom: 14px; left: 13px; }
  .category-card h3 { font-size: 1.13rem; }
  .category-card::after { display: none; }
  .product-grid, .category-content .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .product-card { border-radius: 17px; }
  .product-tag { top: 8px; left: 8px; padding: 5px 7px; font-size: .68rem; letter-spacing: .07em; }
  .product-body { min-height: 202px; padding: 15px 12px 12px; }
  .product-category-label { font-size: .68rem; letter-spacing: .09em; }
  .product-body h3 { min-height: 2.55em; font-size: 1rem; }
  .product-body p { margin: 6px 0 13px; font-size: .75rem; }
  .product-card-actions { grid-template-columns: 1fr; gap: 6px; }
  .card-detail, .card-whatsapp { min-height: 42px; padding: 8px 9px; font-size: .72rem; }
  .why-grid { gap: 42px; }
  .reason { grid-template-columns: 39px 1fr; gap: 12px; }
  .reason h3 { font-size: 1.3rem; }
  .split-section { width: calc(100% - 24px); margin-bottom: 70px; border-radius: 22px; }
  .split-media { min-height: 112vw; }
  .split-copy { padding: 44px 22px; }
  .contact-band-actions { display: grid; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand p { max-width: 100%; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: grid; text-align: center; }
  .page-hero { min-height: 0; padding-bottom: 94vw; }
  .page-hero-inner { min-height: 430px; padding: 50px 0 42px; }
  .page-hero-media { inset: 47% 0 0; }
  .page-hero .breadcrumbs { margin-bottom: 30px; }
  .page-hero .delivery-grid { grid-template-columns: 1fr; }
  .category-info { grid-template-columns: 1fr; margin-top: 48px; }
  .product-detail { gap: 38px; }
  .product-main-image { border-radius: 20px; }
  .product-info h1 { font-size: clamp(2.7rem,13vw,4rem); }
  .product-actions { grid-template-columns: 1fr; }
  .product-facts { grid-template-columns: 1fr; }
  .product-service-points { display: grid; gap: 7px; }
  .mobile-cta { display: grid; }
}

@media (max-width: 360px) {
  .brand-name small { display: none; }
  .product-grid, .category-content .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-body { min-height: 178px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.is-visible { opacity: 1; filter: none; transform: none; }
  .hero-media img { transform: none !important; }
}
