:root {
--hueso:  #F2E6D8;
--arena:  #CDC1B3;
--olivo:  #736A51;
--tierra: #594D36;
--noche:  #262626;
--cream:        var(--hueso);
--cream-dark:   var(--arena);
--ink:          var(--noche);
--ink-mid:      var(--tierra);
--ink-light:    var(--tierra);
--ink-hover:    var(--tierra);
--text-body:    var(--tierra);
--gold:         var(--arena);
--success:      var(--olivo);
--danger:       var(--tierra);
--border:       rgba(38,38,38,.08);
--cream-40:     rgba(242,230,216,.4);
--cream-60:     rgba(242,230,216,.6);
--font-title:   'Roboto', system-ui, sans-serif;
--font-body:    'DM Sans', system-ui, sans-serif;
--font-special: 'Space Grotesk', system-ui, sans-serif;
--gutter: clamp(24px, 8%, 120px);
--section-pad: clamp(72px, 9vw, 120px);
--ease: cubic-bezier(.4,0,.2,1);
--ease-luxe: cubic-bezier(.22,1,.36,1);
--shadow-soft: 0 28px 56px -28px rgba(89,77,54,.38);
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 400 700;
font-display: swap;
src: url('/assets/fonts/dm-sans-v17-latin.woff2') format('woff2');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('/assets/fonts/roboto-v51-latin-700.woff2') format('woff2');
}
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url('/assets/fonts/roboto-v51-latin-700italic.woff2') format('woff2');
}
@font-face {
font-family: 'Space Grotesk';
font-style: normal;
font-weight: 400 500;
font-display: swap;
src: url('/assets/fonts/space-grotesk-v22-latin.woff2') format('woff2');
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
html { scroll-behavior: smooth; }
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body {
animation: pageIn .5s ease-out;
background: var(--cream);
color: var(--ink);
overflow-x: hidden;
font-family: var(--font-body);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
::selection {
background: var(--gold);
color: var(--ink);
}
.skip-link {
position: absolute; top: -100px; left: 0;
background: var(--ink); color: var(--cream);
padding: 10px 20px; font-size: 11px; letter-spacing: 3px;
z-index: 10000; transition: top .2s;
text-decoration: none;
}
.skip-link:focus { top: 0; }
.navigation-bar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 200;
height: 72px;
background: var(--cream);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
transition: box-shadow .4s, background .4s;
}
.navigation-bar.scrolled {
box-shadow: 0 2px 32px rgba(38,38,38,.06);
background: rgba(242,230,216,.96);
backdrop-filter: blur(12px) saturate(1.4);
-webkit-backdrop-filter: blur(12px) saturate(1.4);
}
.logo-center {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.logo-center img {
height: 52px; width: auto; display: block;
transition: opacity .2s;
}
.logo-center img:hover { opacity: .7; }
.navigation-links { display: flex; gap: 36px; align-items: center; }
.navigation-item { position: relative; }
.navigation-item > a {
text-decoration: none;
color: var(--ink);
font-family: var(--font-special);
font-size: 11px;
letter-spacing: .18em;
font-weight: 400;
padding-bottom: 4px;
position: relative;
transition: opacity .2s;
}
.navigation-item > a::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0; height: 1px;
background: var(--ink);
transition: width .35s var(--ease);
}
.navigation-item > a:hover::after,
.navigation-item > a.active::after { width: 100%; }
.navigation-right { display: flex; align-items: center; gap: 20px; }
.user-button {
display: flex; align-items: center;
color: var(--ink); text-decoration: none;
overflow: hidden; opacity: .65;
transition: opacity .2s;
}
.user-button:hover { opacity: 1; }
.user-button:hover .label-full { max-width: 160px; opacity: 1; margin-left: 6px; }
.language-switch { display: flex; align-items: center; }
.language-item { position: relative; display: flex; align-items: center; }
.language-item a {
text-decoration: none; color: var(--ink);
font-family: var(--font-special);
font-size: 11px; letter-spacing: .12em; font-weight: 400;
padding: 2px 4px; opacity: .4; transition: opacity .2s;
display: flex; align-items: center; overflow: hidden;
}
.language-item a.active { opacity: 1; font-weight: 500; }
.language-item a:hover { opacity: 1; }
.label-code { display: inline-block; white-space: nowrap; }
.label-full {
display: inline-block; white-space: nowrap;
max-width: 0; overflow: hidden; opacity: 0;
transition: max-width .4s ease, opacity .3s ease, margin .4s ease;
margin-left: 0; font-size: 11px; letter-spacing: .12em;
}
.language-item:hover .label-full { max-width: 120px; opacity: 1; margin-left: 0; }
.language-separator { color: rgba(38,38,38,.25); font-size: 11px; pointer-events: none; margin: 0 4px; }
.menu-button {
display: none; background: none; border: none; cursor: pointer;
flex-direction: column; gap: 5px; padding: 8px 4px;
z-index: 300;
}
.menu-button span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all .35s var(--ease); }
.menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
display: flex; position: fixed; inset: 0;
background: var(--cream); z-index: 199;
flex-direction: column; align-items: center; justify-content: center;
gap: 40px; opacity: 0; visibility: hidden; pointer-events: none;
transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a {
text-decoration: none; color: var(--ink);
font-family: var(--font-title);
font-size: clamp(36px, 8vw, 56px);
font-weight: 700; letter-spacing: 6px;
transition: opacity .2s;
}
.mobile-menu a:hover { opacity: .35; }
.hero {
min-height: 100svh;
display: grid;
place-items: center;
text-align: center;
padding: 72px var(--gutter) 0;
max-width: 1600px;
margin: 0 auto;
}
.hero .hero-divider { margin-left: auto; margin-right: auto; }
.hero-text h1 {
line-height: 1; margin: 0;
opacity: 0; transform: translateY(30px);
animation: fadeUp .9s var(--ease) forwards .2s;
display: flex; justify-content: center; align-items: flex-start;
}
.hero-logo {
height: auto;
width: clamp(180px, 22vw, 320px);
display: block;
}
.hero-divider {
width: 1px; height: 56px; background: var(--gold); margin: 28px 0;
opacity: 0; animation: fadeUp .9s var(--ease) forwards .4s;
}
.hero-tagline {
font-family: var(--font-title);
font-size: clamp(15px, 1.7vw, 24px);
font-weight: 700; font-style: italic; letter-spacing: 3px; line-height: 1.7;
color: var(--ink-mid); opacity: 0;
animation: fadeUp .9s var(--ease) forwards .55s;
margin-bottom: 8px;
}
.discover {
display: inline-flex; align-items: center; gap: 12px;
margin-top: 40px; text-decoration: none; color: var(--ink);
border-bottom: 1px solid rgba(38,38,38,.3);
padding-bottom: 6px; font-size: 10px; letter-spacing: 5px;
opacity: 0; animation: fadeUp .9s var(--ease) forwards .8s;
transition: opacity .3s, border-color .3s;
}
.discover:hover { opacity: .5; }
.metadata {
margin-top: 60px; font-family: var(--font-special); font-size: 10px;
letter-spacing: 4px; color: var(--ink-light);
opacity: 0; animation: fadeUp .9s var(--ease) forwards 1s;
}
.historia {
display: grid; grid-template-columns: 1fr 1fr;
border-top: 1px solid var(--border);
}
.historia-image {
overflow: hidden; background: var(--ink); min-height: 560px;
}
.historia-image img {
width: 100%; height: 100%; object-fit: cover;
opacity: .78; filter: grayscale(15%);
transition: transform .9s var(--ease), opacity .5s;
display: block;
}
.historia-image:hover img { transform: scale(1.04); opacity: .9; }
.historia-text {
padding: 90px 10%;
display: flex; flex-direction: column; justify-content: center;
background: var(--cream-dark);
}
.historia-text h2 {
margin-top: 20px; font-family: var(--font-title);
font-size: clamp(36px, 4vw, 58px); font-weight: 700; line-height: 1.1;
}
.historia-text p {
margin-top: 28px; font-size: 12px; line-height: 2.7; color: var(--text-body);
max-width: 440px;
}
.historia-text .link-underline { margin-top: 44px; }
.page-header {
padding: 140px var(--gutter) 60px;
border-bottom: 1px solid var(--border);
max-width: 1600px; margin: 0 auto;
}
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 {
font-family: var(--font-title);
font-size: clamp(52px, 8vw, 100px);
font-weight: 700; letter-spacing: 8px; line-height: 1;
}
.eyebrow {
display: block; font-family: var(--font-special);
font-size: 10px; letter-spacing: 4px;
color: var(--ink-mid); font-weight: 500;
}
.manifiesto {
background: var(--cream-dark);
padding: var(--section-pad) var(--gutter);
text-align: center;
border-top: 1px solid var(--border);
}
.manifiesto-frase {
font-family: var(--font-title);
font-size: clamp(15px, 1.7vw, 24px);
font-weight: 700; font-style: italic; letter-spacing: 2px; line-height: 1.45;
color: var(--ink); max-width: 860px; margin: 0 auto;
}
.manifiesto-firma {
display: block; margin-top: 36px;
font-family: var(--font-special); font-size: 10px;
letter-spacing: 5px; color: var(--ink-mid);
}
.stats {
display: grid; grid-template-columns: repeat(3, 1fr);
text-align: center; padding: 80px 0;
border-top: 1px solid rgba(38,38,38,.09);
border-bottom: 1px solid rgba(38,38,38,.09);
}
.stats > div { padding: 20px; position: relative; }
.stats > div:not(:last-child)::after {
content: ''; position: absolute; right: 0; top: 20%;
height: 60%; width: 1px; background: rgba(38,38,38,.09);
}
.stats h3 {
font-family: var(--font-title);
font-size: clamp(36px, 5vw, 56px); font-weight: 700; letter-spacing: 4px;
}
.stats p { margin-top: 10px; font-size: 10px; letter-spacing: 4px; color: var(--ink-mid); }
.productos-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1px; background: var(--border);
border-top: 1px solid var(--border);
}
.producto-card {
background: var(--cream); display: flex; flex-direction: column;
transition: background .5s var(--ease-luxe), box-shadow .5s var(--ease-luxe);
}
.producto-card:hover { background: var(--cream-dark); box-shadow: var(--shadow-soft); }
.producto-image-wrap {
display: block; text-decoration: none; position: relative;
overflow: hidden; aspect-ratio: 3/4; background: var(--ink);
}
.producto-image {
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-title);
font-size: clamp(18px, 2vw, 28px); font-weight: 700; letter-spacing: 8px;
color: rgba(242,230,216,.5);
transition: transform .6s var(--ease);
}
.producto-image-wrap:hover .producto-image { transform: scale(1.04); }
.producto-image-wrap img {
width: 100%; height: 100%; object-fit: cover;
display: block;
transition: transform .6s var(--ease);
}
.producto-image-wrap:hover img { transform: scale(1.04); }
.producto-hover-overlay {
position: absolute; inset: 0;
background: rgba(38,38,38,.35);
display: flex; align-items: center; justify-content: center;
font-size: 10px; letter-spacing: 5px; color: var(--cream);
opacity: 0; transition: opacity .3s;
}
.producto-image-wrap:hover .producto-hover-overlay { opacity: 1; }
.producto-info {
padding: 28px 32px 36px;
display: flex; flex-direction: column; flex: 1;
}
.producto-meta {
display: flex; justify-content: space-between;
align-items: center; margin-bottom: 10px;
}
.producto-vol { font-size: 10px; letter-spacing: 2px; color: var(--ink-light); }
.producto-nombre {
font-family: var(--font-title);
font-size: clamp(24px, 2.5vw, 36px); font-weight: 700; letter-spacing: 5px;
margin-bottom: 12px; line-height: 1.1;
}
.producto-desc {
font-size: 11px; line-height: 2.5; color: var(--text-body); flex: 1; margin-bottom: 24px;
}
.producto-bottom {
display: flex; justify-content: space-between; align-items: center;
margin-top: auto;
padding-top: 20px; border-top: 1px solid var(--border); gap: 12px;
}
.ver-link {
font-size: 9px; letter-spacing: 3px; color: var(--ink-light);
text-decoration: none; transition: color .2s;
}
.ver-link:hover, .ver-link:focus-visible { color: var(--ink); }
.producto-precio {
font-family: var(--font-title);
font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; letter-spacing: 2px;
}
.coming-soon-badge {
display: inline-flex; align-items: center; gap: 6px;
font-size: 9px; letter-spacing: 3px; color: var(--ink-light);
border: 1px solid rgba(38,38,38,.12); padding: 6px 14px;
}
.coming-soon-badge::before {
content: ''; width: 4px; height: 4px; border-radius: 50%;
background: var(--gold); display: inline-block;
}
.producto-card.is-coming .producto-image-wrap::after {
content: 'PRÓXIMAMENTE';
}
html[lang="en"] .producto-card.is-coming .producto-image-wrap::after,
html[lang="en"] .coleccion-item.is-coming .coleccion-image::after { content: 'COMING SOON'; }
.producto-card.is-coming .producto-image-wrap::after {
position: absolute; inset: 0;
background: rgba(38,38,38,.55);
display: flex; align-items: center; justify-content: center;
font-size: 10px; letter-spacing: 6px; color: rgba(242,230,216,.7);
font-family: var(--font-special);
}
.button-carrito {
background: none; border: 1px solid rgba(38,38,38,.2);
color: var(--ink); font-family: var(--font-special);
font-size: 9px; letter-spacing: 3px; padding: 10px 16px;
cursor: pointer; white-space: nowrap;
transition: background .4s var(--ease-luxe), color .3s, border-color .3s, transform .2s;
}
.button-carrito:active { transform: scale(.97); }
.button-carrito:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.button-carrito:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.button-carrito-large { padding: 14px 24px; font-size: 10px; letter-spacing: 4px; }
.waitlist-wrap {
display: flex; flex-direction: column; gap: 16px; margin-top: 4px;
}
.waitlist-label {
font-size: 10px; letter-spacing: 3px; color: var(--ink-light);
}
.waitlist-row {
display: flex; gap: 0;
}
.waitlist-input {
background: transparent; border: none;
border-bottom: 1px solid rgba(38,38,38,.2);
padding: 10px 0; font-family: var(--font-body);
font-size: 11px; color: var(--ink); outline: none; flex: 1;
transition: border-color .2s;
}
.waitlist-input:focus { border-bottom-color: var(--ink); }
.waitlist-input::placeholder { color: var(--ink-light); font-size: 10px; letter-spacing: 1px; }
.waitlist-button {
background: none; border: none; border-bottom: 1px solid rgba(38,38,38,.2);
padding: 10px 0 10px 16px; font-family: var(--font-special);
font-size: 9px; letter-spacing: 3px; color: var(--ink);
cursor: pointer; white-space: nowrap;
transition: letter-spacing .3s, color .2s;
}
.waitlist-button:hover { color: var(--ink-mid); letter-spacing: 4px; }
.waitlist-message {
font-size: 10px; letter-spacing: 1px; min-height: 16px;
}
.waitlist-message.success { color: var(--ink-mid); }
.waitlist-message.error { color: var(--danger); }
.tequila-hero {
min-height: 100svh;
display: grid; grid-template-columns: 1fr 1fr;
border-bottom: 1px solid var(--border); padding-top: 72px;
}
.tequila-hero-image {
overflow: hidden; background: var(--ink); min-height: 600px;
display: flex; align-items: center; justify-content: center;
}
.tequila-hero-placeholder {
width: 100%; height: 100%; min-height: 600px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-title);
font-size: clamp(20px, 3vw, 36px); font-weight: 700; letter-spacing: 12px;
color: rgba(242,230,216,.25);
}
.tequila-hero-image img {
width: 100%; height: 100%; object-fit: cover; display: block;
transition: transform .9s var(--ease);
}
.tequila-hero-image:hover img { transform: scale(1.03); }
.tequila-hero-text {
padding: 80px 8%;
display: flex; flex-direction: column; justify-content: center;
}
.link-back {
display: inline-block; margin-bottom: 40px;
font-size: 10px; letter-spacing: 4px; color: var(--ink-light);
text-decoration: none; transition: color .2s, transform .3s;
}
.link-back:hover { color: var(--ink); transform: translateX(-4px); }
.tequila-hero-text h1 {
font-family: var(--font-title);
font-size: clamp(52px, 7vw, 96px); font-weight: 700; letter-spacing: 10px; line-height: 1;
margin: 12px 0 20px;
}
.tequila-tagline {
font-size: 11px; line-height: 2.7; color: var(--text-body);
max-width: 380px; margin-bottom: 40px;
}
.tequila-precio-wrap { display: flex; flex-direction: column; gap: 20px; }
.tequila-precio {
font-family: var(--font-title);
font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: 3px;
}
.tequila-section {
padding: var(--section-pad) var(--gutter);
border-bottom: 1px solid var(--border); text-align: center;
}
.tequila-section-inner { max-width: 800px; margin: 0 auto; }
.tequila-section h2 {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: 6px;
margin: 16px 0 48px; line-height: 1.1;
}
.tequila-section-dark { background: var(--ink); border-bottom: none; }
.tequila-section-dark h2 { color: var(--cream); }
.notas-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1px; background: var(--border); margin-top: 48px; text-align: left;
}
.nota-item { background: var(--cream); padding: 36px 32px; }
.tequila-section-dark .nota-item { background: var(--tierra); }
.nota-label {
display: block; font-size: 9px; letter-spacing: 4px;
color: var(--ink-light); margin-bottom: 14px;
}
.nota-item p { font-size: 11px; line-height: 2.6; color: var(--text-body); }
.tequila-section-dark .nota-item p { color: rgba(242,230,216,.45); }
.tequila-desc-section {
padding: var(--section-pad) var(--gutter);
background: var(--cream-dark); border-bottom: 1px solid var(--border);
}
.tequila-desc-inner { max-width: 680px; margin: 0 auto; }
.tequila-desc-inner h2 {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: 6px;
margin: 16px 0 32px; line-height: 1.1;
}
.tequila-desc-inner p { font-size: 12px; line-height: 2.7; color: var(--text-body); }
.ficha-tecnica { padding: var(--section-pad) var(--gutter); border-bottom: 1px solid var(--border); }
.ficha-inner { max-width: 900px; margin: 0 auto; }
.ficha-inner h2 {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: 6px;
margin: 16px 0 48px; text-align: center;
}
.ficha-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1px; background: var(--border);
}
.ficha-item {
background: var(--cream); padding: 28px 24px;
display: flex; flex-direction: column; gap: 8px;
}
.ficha-label { font-size: 9px; letter-spacing: 3px; color: var(--ink-mid); }
.ficha-val { font-size: 12px; letter-spacing: 2px; color: var(--ink); line-height: 1.5; }
.tequila-call-to-action {
padding: var(--section-pad) var(--gutter);
text-align: center; border-bottom: 1px solid var(--border);
}
.tequila-call-to-action h2 {
font-family: var(--font-title);
font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: 6px; margin-bottom: 16px;
}
.tequila-call-to-action p { font-size: 10px; letter-spacing: 4px; color: var(--ink-light); }
.product-navigation {
display: flex; justify-content: space-between; align-items: center;
padding: 32px var(--gutter); border-bottom: 1px solid var(--border);
}
.product-navigation-link {
text-decoration: none; color: var(--ink);
font-size: 10px; letter-spacing: 4px;
transition: opacity .2s, transform .3s;
display: inline-block;
}
.product-navigation-link:hover { opacity: .5; }
.product-navigation-link.product-navigation-previous:hover { transform: translateX(-4px); }
.product-navigation-link.product-navigation-next:hover { transform: translateX(4px); }
.product-navigation-all {
text-decoration: none; color: var(--ink-light);
font-size: 10px; letter-spacing: 3px; transition: color .2s;
}
.product-navigation-all:hover { color: var(--ink); }
.product-navigation-empty { display: inline-block; width: 120px; }
.link-underline {
display: inline-block; color: var(--ink); text-decoration: none;
font-size: 10px; letter-spacing: 4px; padding-bottom: 4px;
background-image: linear-gradient(currentColor, currentColor);
background-size: 100% 1px; background-position: left bottom;
background-repeat: no-repeat;
transition: background-size .45s var(--ease-luxe), opacity .3s;
}
.link-underline:hover { background-size: 28% 1px; opacity: .8; }
.coleccion { padding: var(--section-pad) var(--gutter); border-top: 1px solid var(--border); }
.coleccion-header { text-align: center; margin-bottom: 64px; }
.coleccion-header h2 {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: 6px;
margin-top: 16px; line-height: 1.1;
}
.coleccion-grid {
display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.coleccion-item {
text-decoration: none; color: var(--ink);
display: flex; flex-direction: column;
transition: opacity .25s; position: relative;
}
.coleccion-item:hover { opacity: .72; }
.coleccion-image {
aspect-ratio: 2/3;
display: flex; align-items: center; justify-content: center;
transition: transform .7s var(--ease-luxe), box-shadow .7s var(--ease-luxe);
overflow: hidden;
}
.coleccion-item:hover .coleccion-image { transform: scale(1.03) translateY(-4px); box-shadow: var(--shadow-soft); }
.coleccion-info {
display: flex; justify-content: center;
align-items: baseline; padding: 14px 0 0;
text-align: center;
}
.coleccion-nombre { font-size: 11px; letter-spacing: 4px; }
.coleccion-item.is-coming .coleccion-image::after {
content: 'PRÓXIMAMENTE';
position: absolute; inset: 0;
background: rgba(38,38,38,.52);
display: flex; align-items: center; justify-content: center;
font-size: 9px; letter-spacing: 5px; color: rgba(242,230,216,.6);
font-family: var(--font-special);
}
.coleccion-call-to-action { text-align: center; margin-top: 64px; }
.proceso-intro {
padding: var(--section-pad) var(--gutter); background: var(--cream-dark);
text-align: center; border-bottom: 1px solid var(--border);
}
.proceso-intro-inner { max-width: 680px; margin: 0 auto; }
.proceso-intro h2 {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: 6px;
margin: 16px 0 28px; line-height: 1.1;
}
.proceso-intro p { font-size: 12px; line-height: 2.7; color: var(--text-body); }
.timeline { border-top: 1px solid var(--border); }
.timeline-step {
display: grid; grid-template-columns: 1fr 1fr;
align-items: stretch; min-height: 480px; border-bottom: 1px solid var(--border);
}
.timeline-step-inv {
background: var(--cream-dark);
}
.timeline-step-inv .timeline-image-wrap { order: 3; }
.timeline-step-inv .timeline-text { order: 2; }
.timeline-image-wrap { overflow: hidden; }
.timeline-image {
width: 100%; height: 100%; min-height: 360px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-title);
font-size: clamp(14px, 1.5vw, 20px); font-weight: 700; letter-spacing: 6px;
color: rgba(242,230,216,.5); transition: transform .7s var(--ease);
}
.timeline-step:hover .timeline-image { transform: scale(1.04); }
.timeline-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline-text { padding: 60px 8%; display: flex; flex-direction: column; justify-content: center; }
.timeline-text h2 {
font-family: var(--font-title);
font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: 6px;
margin: 16px 0 24px; line-height: 1.15;
}
.timeline-text p { font-size: 12px; line-height: 2.5; color: var(--text-body); max-width: 480px; }
.timeline-dato {
display: flex; flex-direction: column; margin-top: 36px; padding-top: 28px;
border-top: 1px solid var(--border); gap: 6px;
}
.timeline-dato-num {
font-family: var(--font-title);
font-size: clamp(36px, 4vw, 52px); font-weight: 700; letter-spacing: 4px;
}
.timeline-dato-label { font-size: 10px; letter-spacing: 4px; color: var(--ink-mid); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.contacto-info {
padding: 80px var(--gutter); display: flex; flex-direction: column; justify-content: center;
border-right: 1px solid var(--border);
}
.contacto-info .eyebrow { margin-bottom: 18px; }
.contacto-info h2 {
font-family: var(--font-title);
font-size: clamp(36px, 4vw, 58px); font-weight: 700; line-height: 1.1; margin-bottom: 32px;
}
.contacto-info p { font-size: 11px; line-height: 2.8; color: var(--text-body); }
.contacto-info a { color: var(--ink); text-decoration: none; transition: opacity .2s; }
.contacto-info a:hover { opacity: .5; }
.contacto-form {
padding: var(--section-pad) var(--gutter); background: var(--cream-dark);
display: flex; flex-direction: column; justify-content: center;
}
.contacto-form h2 {
font-family: var(--font-title);
font-size: clamp(32px, 3vw, 48px); font-weight: 700; margin-bottom: 36px;
}
.form-grid { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 3px; color: var(--ink-mid); }
.form-group input,
.form-group textarea,
.form-group select {
background: transparent; border: none;
border-bottom: 1px solid rgba(38,38,38,.2);
padding: 10px 0; font-family: var(--font-body);
font-size: 12px; color: var(--ink); outline: none; resize: none;
caret-color: var(--ink);
transition: border-color .2s;
appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--ink); box-shadow: 0 1px 0 0 var(--ink); }
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid { border-bottom-color: var(--danger); }
.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid { border-bottom-color: var(--success); }
.field-error { font-size: 10px; letter-spacing: 1px; color: var(--danger); margin-top: -4px; min-height: 14px; }
.button-send {
align-self: flex-start; background: var(--ink); color: var(--cream);
border: none; padding: 15px 34px; font-family: var(--font-special);
font-size: 10px; letter-spacing: 4px; cursor: pointer;
transition: background .2s, opacity .2s;
}
.button-send:hover { background: var(--ink-hover); }
.button-send:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.button-send.loading { opacity: .5; pointer-events: none; }
.authentication-message {
font-size: 10px; letter-spacing: 1px; padding: 10px 14px; display: none;
}
.authentication-message.success { background: rgba(115,107,82,.12); color: var(--ink-mid); display: block; }
.authentication-message.error   { background: rgba(89,77,54,.12); color: var(--danger); display: block; }
.button-solid {
background: var(--ink); color: var(--cream); border: none; padding: 16px;
font-family: var(--font-special); font-size: 10px; letter-spacing: 4px;
cursor: pointer; width: 100%;
transition: background .4s var(--ease-luxe), transform .2s;
}
.button-solid:hover { background: var(--ink-hover); }
.button-solid:active { transform: scale(.98); }
.button-solid:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
footer {
background: var(--ink); color: var(--cream);
padding: 56px var(--gutter) 28px;
}
.footer-row {
display: flex; justify-content: center; align-items: center;
gap: clamp(40px, 7vw, 110px); flex-wrap: wrap;
max-width: 1600px; margin: 0 auto;
}
.footer-social, .footer-legal {
display: flex; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.footer-social a, .footer-legal a {
font-size: 10px; letter-spacing: 3px;
text-decoration: none; transition: color .2s;
}
.footer-social a { color: rgba(242,230,216,.6); }
.footer-legal a  { color: rgba(242,230,216,.5); }
.footer-social a:hover, .footer-social a:focus-visible,
.footer-legal a:hover,  .footer-legal a:focus-visible { color: var(--cream); }
.footer-logo { display: block; transition: opacity .25s; }
.footer-logo:hover { opacity: .6; }
.footer-logo img {
height: 52px; width: auto; display: block;
filter: invert(1); opacity: .94;
}
.footer-legal-line {
margin: 44px auto 0; max-width: 1600px;
border-top: 1px solid rgba(242,230,216,.06); padding-top: 18px;
text-align: center; font-size: 9px; letter-spacing: 2px;
color: rgba(242,230,216,.55); line-height: 2;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal {
opacity: 0; transform: translateY(26px);
transition: opacity 1.1s var(--ease-luxe), transform 1.1s var(--ease-luxe);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 1.1s var(--ease-luxe), transform 1.1s var(--ease-luxe); }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 1.1s var(--ease-luxe), transform 1.1s var(--ease-luxe); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .24s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .36s; }
.reveal-stagger > *:nth-child(5) { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
body { animation: none; }
.reveal, .reveal-left, .reveal-right { transition: none; opacity: 1; transform: none; }
.hero-text h1, .hero-divider, .hero-tagline, .metadata, .discover,
#ageQuestion > * { animation: none; opacity: 1; transform: none; }
}
.age-gate {
position: fixed; inset: 0; background: var(--ink); z-index: 9999;
display: flex; flex-direction: column; align-items: center; justify-content: center;
opacity: 1; transition: opacity .6s var(--ease);
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-verified .age-gate { display: none; }
.age-gate-logo { height: clamp(80px, 14vw, 140px); width: auto; filter: invert(1); margin-bottom: 40px; opacity: .95; display: block; }
.age-gate-divider { width: 40px; height: 1px; background: rgba(242,230,216,.2); margin: 0 auto 40px; }
#ageQuestion { display: flex; flex-direction: column; align-items: center; text-align: center; }
#ageQuestion > * { opacity: 0; animation: fadeUp .9s var(--ease-luxe) forwards; }
#ageQuestion > .age-gate-logo    { animation-delay: .15s; }
#ageQuestion > .age-gate-divider { animation-delay: .35s; }
#ageQuestion > h2                { animation-delay: .5s; }
#ageQuestion > p                 { animation-delay: .65s; }
#ageQuestion > .age-gate-buttons    { animation-delay: .8s; }
.age-gate h2 {
font-family: var(--font-title);
font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--cream);
letter-spacing: 6px; text-align: center; margin-bottom: 14px;
}
.age-gate p { font-size: 10px; letter-spacing: 3px; color: rgba(242,230,216,.35); text-align: center; margin-bottom: 44px; line-height: 2; }
.age-gate-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.age-button-yes {
background: var(--cream); color: var(--ink); border: none;
padding: 16px 0; width: 260px; font-family: var(--font-special);
font-size: 10px; letter-spacing: 4px; cursor: pointer; transition: background .2s;
}
.age-button-yes:hover { background: var(--cream-dark); }
.age-button-no {
background: transparent; color: rgba(242,230,216,.35);
border: 1px solid rgba(242,230,216,.12); padding: 16px 0; width: 260px;
font-family: var(--font-special); font-size: 10px; letter-spacing: 4px;
cursor: pointer; transition: border-color .2s, color .2s;
}
.age-button-no:hover { border-color: rgba(242,230,216,.4); color: rgba(242,230,216,.7); }
.age-gate-legal { position: absolute; bottom: 32px; font-size: 9px; letter-spacing: 2px; color: rgba(242,230,216,.12); text-align: center; padding: 0 20px; max-width: 500px; }
.age-denied { display: none; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.age-denied h3 { font-family: var(--font-title); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--cream); letter-spacing: 5px; }
.age-denied p { font-size: 10px; letter-spacing: 2px; color: rgba(242,230,216,.3); line-height: 2; }
.cart-button {
display: flex; align-items: center; background: none; border: none; cursor: pointer;
color: var(--ink); position: relative;
opacity: .65; transition: opacity .2s;
}
.cart-button:hover { opacity: 1; }
.cart-button:hover .label-full { max-width: 100px; opacity: 1; margin-left: 6px; }
.cart-count {
display: none;
position: absolute; top: -6px; right: -8px;
background: var(--ink); color: var(--cream);
font-size: 8px; min-width: 16px; height: 16px;
padding: 0 3px;
border-radius: 8px; align-items: center; justify-content: center;
letter-spacing: 0; font-weight: 500; line-height: 1;
box-sizing: border-box;
}
.cart-overlay {
position: fixed; inset: 0; background: rgba(38,38,38,.3);
z-index: 400; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
position: fixed; top: 0; right: 0;
width: min(400px, 95vw); height: 100dvh;
background: var(--cream); z-index: 500;
transform: translateX(100%); transition: transform .4s var(--ease);
display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
display: flex; justify-content: space-between; align-items: center;
padding: 28px 32px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 11px; letter-spacing: 5px; font-weight: 400; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 14px; color: var(--ink-light); transition: color .2s; }
.cart-close:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-empty { font-size: 11px; letter-spacing: 2px; color: var(--ink-light); text-align: center; margin-top: 40px; }
.cart-item {
display: flex; justify-content: space-between; align-items: center;
padding: 18px 0; border-bottom: 1px solid rgba(38,38,38,.06); gap: 12px;
}
.cart-item-name { font-size: 11px; letter-spacing: 2px; margin-bottom: 4px; }
.cart-item-price { font-size: 10px; color: var(--ink-light); letter-spacing: 1px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-item-controls button {
background: none; border: 1px solid rgba(38,38,38,.15);
width: 24px; height: 24px; cursor: pointer; font-size: 14px;
display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.cart-item-controls button:hover { background: var(--ink); color: var(--cream); }
.cart-item-controls span { font-size: 12px; min-width: 20px; text-align: center; }
.cart-count.has-items { display: flex; }
.cart-item-remove { border-color: transparent !important; color: var(--ink-light); font-size: 12px !important; }
.cart-footer { padding: 24px 32px; border-top: 1px solid var(--border); }
.button-pay { width: 100%; margin-top: 20px; }
.cart-total { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 3px; margin-bottom: 4px; }
#umbelaToast {
position: fixed; bottom: 32px; left: 50%;
transform: translateX(-50%) translateY(20px);
background: var(--ink); color: var(--cream);
font-size: 10px; letter-spacing: 3px; padding: 14px 28px;
opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
z-index: 9000; white-space: nowrap;
}
#umbelaToast.toast-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
#umbelaPayModal {
display: none; position: fixed; inset: 0;
z-index: 8000; align-items: center; justify-content: center;
}
#umbelaPayModal.pay-modal-open { display: flex; }
.pay-modal-overlay { position: absolute; inset: 0; background: rgba(38,38,38,.45); }
.pay-modal-box {
position: relative; background: var(--cream);
max-width: 480px; width: 90%; padding: 56px 48px;
text-align: center; z-index: 1;
}
.pay-modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; font-size: 14px; color: var(--ink-light); transition: color .2s; }
.pay-modal-close:hover { color: var(--ink); }
.pay-modal-eyebrow { font-size: 10px; letter-spacing: 5px; color: var(--ink-light); margin-bottom: 16px; }
.pay-modal-title { font-family: var(--font-title); font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: 6px; margin-bottom: 24px; }
.pay-modal-desc { font-size: 11px; line-height: 2.4; color: var(--text-body); margin-bottom: 36px; }
.pay-modal-btn { display: inline-block; background: var(--ink); color: var(--cream); text-decoration: none; padding: 16px 40px; font-size: 10px; letter-spacing: 4px; transition: background .2s; }
.pay-modal-btn:hover { background: var(--ink-hover); }
.placeholder-image { position: relative; }
.placeholder-image.has-photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.placeholder-image.has-photo > span { display: none; }
.placeholder-blanco   { background: linear-gradient(160deg, #F2E6D8, #CDC1B3); }
.placeholder-rosa     { background: linear-gradient(160deg, #CDC1B3, #736A51); }
.placeholder-reposado { background: linear-gradient(160deg, #736A51, #594D36); }
.placeholder-anejo    { background: linear-gradient(160deg, #594D36, #262626); }
.placeholder-extra    { background: linear-gradient(160deg, #262626, #594D36); }
.placeholder-historia { background: linear-gradient(160deg, #736A51, #262626); }
.historia-image .placeholder-historia {
width: 100%; height: 100%; min-height: 560px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-title); font-size: clamp(16px, 2vw, 24px);
font-weight: 700; letter-spacing: 10px; color: rgba(242,230,216,.4);
}
.legal-body { max-width: 760px; margin: 0 auto; padding: 140px var(--gutter) 100px; }
.legal-body h1 { font-family: var(--font-title); font-size: clamp(36px,5vw,64px); font-weight:700; letter-spacing:6px; margin-bottom:12px; }
.legal-body .fecha { font-size:10px; letter-spacing:3px; color:var(--ink-light); margin-bottom:60px; display:block; }
.legal-body h2 { font-family: var(--font-title); font-size:clamp(20px,2vw,28px); font-weight:700; letter-spacing:4px; margin:48px 0 16px; }
.legal-body p { font-size:13px; line-height:2.5; color:var(--text-body); margin-bottom:16px; }
.legal-body ul { padding-left:20px; }
.legal-body li { font-size:13px; line-height:2.5; color:var(--text-body); margin-bottom:8px; }
.legal-body a { color:var(--ink); }
.eyebrow-dark { color: var(--cream-40); }
.section-body {
line-height: 2.7; font-size: 12px; color: var(--text-body);
max-width: 680px; margin: 0 auto;
}
.section-body-dark {
color: var(--cream-60); line-height: 2.7; font-size: 12px;
max-width: 680px; margin: 0 auto;
}
.link-underline-dark {
display: inline-block; margin-top: 40px;
color: var(--cream-60); border-bottom-color: rgba(242,230,216,.3);
}
.eyebrow-center { text-align: center; display: block; }
.button-call-to-action-large {
display: inline-block; padding: 18px 48px;
font-size: 10px; letter-spacing: 5px;
margin-top: 32px; width: auto; border: none; cursor: pointer;
text-decoration: none;
}
.waitlist-call-to-action-row {
display: flex; gap: 0; justify-content: center;
margin-top: 40px; max-width: 480px;
margin-left: auto; margin-right: auto;
}
.waitlist-call-to-action-input {
flex: 1; background: transparent; border: none;
border-bottom: 1px solid rgba(38,38,38,.3);
padding: 12px 0; font-family: var(--font-body);
font-size: 11px; letter-spacing: 1px; outline: none; color: var(--ink);
transition: border-color .2s;
}
.waitlist-call-to-action-input:focus { border-bottom-color: var(--ink); }
.waitlist-call-to-action-button {
background: var(--ink); color: var(--cream); border: none;
padding: 12px 24px; font-family: var(--font-special);
font-size: 9px; letter-spacing: 4px; cursor: pointer;
transition: background .2s; white-space: nowrap;
}
.waitlist-call-to-action-button:hover { background: var(--ink-hover); }
.waitlist-call-to-action-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.waitlist-call-to-action-message {
margin-top: 12px; font-size: 10px; letter-spacing: 1px;
color: var(--ink-light); min-height: 16px;
}
.waitlist-call-to-action-message.success { color: var(--ink-mid); }
.waitlist-call-to-action-message.error   { color: var(--danger); }
.required-marker { color: var(--danger); }
.form-message { margin-bottom: 20px; }
.legal-note { margin-top: 60px; padding-top: 32px; border-top: 1px solid var(--border); }
.legal-body h3.legal-subheading { font-family: var(--font-special); font-weight: 500; font-size: 11px; letter-spacing: 3px; margin: 32px 0 16px; }
.addr-label { font-size: 10px; letter-spacing: 2px; color: var(--ink-mid); font-weight: 400; }
address { font-style: normal; }
.contacto-info address p + p { margin-top: 24px; }
.tequila-desc-inner p + p { margin-top: 24px; }
.age-gate-logo--dim { opacity: .25; }
@media (max-width: 1024px) {
.productos-grid { grid-template-columns: repeat(2, 1fr); }
.coleccion-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
.navigation-bar { padding: 0 20px; }
.user-button { display: none; }
.navigation-right { gap: 14px; }
.menu-button { display: flex; order: -1; }
.navigation-links { display: none; }
.hero { padding-top: 100px; min-height: auto; }
.historia { grid-template-columns: 1fr; }
.historia-image { min-height: 300px; order: 1; }
.historia-text { order: 2; padding: 60px 6%; }
.tequila-hero { grid-template-columns: 1fr; min-height: auto; }
.tequila-hero-image { min-height: 300px; }
.tequila-hero-text { padding: 60px 6%; }
.notas-grid { grid-template-columns: 1fr; }
.ficha-grid { grid-template-columns: 1fr 1fr; }
.productos-grid { grid-template-columns: 1fr; }
.coleccion-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.coleccion { padding: 60px 6%; }
.timeline-step, .timeline-step-inv { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
.timeline-image-wrap { order: 1 !important; }
.timeline-text { order: 2 !important; padding: 40px 6%; }
.timeline-image { min-height: 240px; }
.contacto-grid { grid-template-columns: 1fr; }
.contacto-info { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 6%; }
.contacto-form { padding: 60px 6%; }
.form-row { grid-template-columns: 1fr; }
.footer-row { flex-direction: column; gap: 30px; }
.footer-logo { order: -1; }
.footer-logo img { height: 46px; }
.stats { grid-template-columns: 1fr; }
.stats > div::after { display: none; }
.product-navigation { padding: 32px 6%; }
.product-navigation-empty { width: 60px; }
.product-navigation-link { font-size: 10px; letter-spacing: 2px; }
.proceso-intro, .tequila-section,
.tequila-desc-section, .ficha-tecnica, .tequila-call-to-action { padding: 60px 6%; }
}
@media (max-width: 480px) {
.coleccion-grid { grid-template-columns: repeat(2, 1fr); }
.ficha-grid { grid-template-columns: 1fr; }
.pay-modal-box { padding: 40px 28px; }
.age-gate { padding: 0 28px; }
.age-gate h2 { letter-spacing: 3px; margin-bottom: 18px; }
.age-gate p { letter-spacing: 2px; margin-bottom: 40px; }
.age-button-yes, .age-button-no { width: min(300px, 100%); }
.age-gate-legal { bottom: 24px; letter-spacing: 1.5px; line-height: 2; padding: 0 28px; }
}
.cookie-banner {
position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
background: var(--ink); color: var(--cream);
padding: 20px var(--gutter);
display: flex; align-items: center; justify-content: space-between;
gap: 24px; flex-wrap: wrap;
transform: translateY(100%);
transition: transform .45s cubic-bezier(.16,1,.3,1);
border-top: 1px solid rgba(242,230,216,.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text p {
font-size: 10px; letter-spacing: 1.5px; line-height: 2.2;
color: rgba(242,230,216,.65); margin: 0; max-width: 640px;
}
.cookie-banner-text a {
color: rgba(242,230,216,.9); text-decoration: underline;
text-underline-offset: 3px;
}
.cookie-banner-buttons { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-button-accept {
background: var(--cream); color: var(--ink);
border: none; cursor: pointer;
font-family: var(--font-special); font-size: 9px; letter-spacing: 3px; font-weight: 400;
padding: 12px 24px; transition: opacity .2s;
}
.cookie-button-accept:hover { opacity: .8; }
.cookie-button-reject {
background: none; color: rgba(242,230,216,.5);
border: 1px solid rgba(242,230,216,.2); cursor: pointer;
font-family: var(--font-special); font-size: 9px; letter-spacing: 3px; font-weight: 400;
padding: 12px 24px; transition: all .2s;
}
.cookie-button-reject:hover { border-color: rgba(242,230,216,.5); color: rgba(242,230,216,.8); }
@media (max-width: 600px) {
.cookie-banner { flex-direction: column; align-items: flex-start; }
.cookie-button-accept, .cookie-button-reject { width: 100%; text-align: center; }
}
.navigation-item > a:focus-visible,
.language-item a:focus-visible,
.mobile-menu a:focus-visible,
.link-underline:focus-visible,
.link-back:focus-visible,
.discover:focus-visible,
.ver-link:focus-visible,
.product-navigation a:focus-visible,
.coleccion-item:focus-visible,
.producto-image-wrap:focus-visible {
outline: 2px solid var(--ink); outline-offset: 3px;
}
footer a:focus-visible, .footer-logo:focus-visible {
outline: 2px solid var(--cream); outline-offset: 3px;
}
.age-gate button:focus-visible {
outline: 2px solid var(--cream); outline-offset: 3px;
}
.portal-soon {
min-height: 100svh; display: flex; flex-direction: column;
align-items: center; justify-content: center; text-align: center;
padding: 140px var(--gutter) 100px;
}
.portal-soon-logo { width: clamp(56px, 8vw, 84px); height: auto; margin-bottom: 44px; }
.portal-soon h1 {
font-family: var(--font-title); font-size: clamp(40px, 6vw, 76px);
font-weight: 700; letter-spacing: 8px; line-height: 1.1; margin: 16px 0 28px;
}
.portal-soon-divider { width: 1px; height: 56px; background: var(--gold); margin: 8px 0 36px; }
.portal-soon p {
font-size: 11px; line-height: 2.7; color: var(--text-body);
max-width: 440px; margin-bottom: 44px;
}
.portal-soon-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }
.not-found-wrap {
min-height: 100svh; display: flex; flex-direction: column;
align-items: center; justify-content: center; text-align: center;
padding: 40px var(--gutter);
}
.not-found-logo { width: clamp(140px, 18vw, 220px); height: auto; margin-bottom: 48px; }
.not-found-code {
font-family: var(--font-title); font-size: clamp(64px, 12vw, 140px);
font-weight: 700; letter-spacing: 14px; line-height: 1; color: var(--ink);
}
.not-found-divider { width: 1px; height: 56px; background: var(--gold); margin: 36px 0; }
.not-found-text { font-size: 11px; letter-spacing: 3px; color: var(--ink-mid); line-height: 2.4; margin-bottom: 48px; }
.not-found-text-en { font-size: 9px; letter-spacing: 2px; color: var(--ink-light); margin-top: -36px; margin-bottom: 48px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
@media (min-width: 1921px) {
.productos-grid, .historia, .timeline-step, .contacto-grid, .notas-grid, .coleccion-grid {
max-width: 1920px; margin-left: auto; margin-right: auto;
}
}