/* ==========================================================
   Extracto Francés — styles
   Mobile-first. Paleta: marfil, tinta, oro (del logo).
   ========================================================== */
:root {
  --ivory: #fbf8f3;
  --ivory-2: #f4eee4;
  --ink: #121110;
  --ink-2: #1c1a17;
  --muted: #6f675b;
  --line: #e4dccd;
  --gold: #b8914a;
  --gold-2: #d9b874;
  --gold-3: #f3dfae;
  --gold-deep: #8e6a2c;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Parisienne", cursive;
  --gutter: 20px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
em { font-style: italic; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; }

/* ---------- Splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: var(--ivory);
  animation: splashOut .7s var(--ease) 2.2s forwards; /* red de seguridad CSS */
}
.splash img { width: 140px; height: 140px; animation: splashLogo 1.6s var(--ease) both; }
.splash.is-done { opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility 0s .6s; }
@keyframes splashLogo { from { opacity: 0; transform: scale(.86) rotate(-8deg); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes splashOut { to { opacity: 0; visibility: hidden; } }

/* ---------- Promo bar ---------- */
.promo {
  background: var(--ink); color: var(--gold-3);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  height: 32px; overflow: hidden; display: flex; align-items: center;
}
.promo__track { display: flex; gap: 22px; white-space: nowrap; animation: slide 28s linear infinite; padding-left: 22px; }
.promo__track i { font-style: normal; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  display: grid; grid-template-columns: 44px 1fr 44px; align-items: center;
  padding: 0 calc(var(--gutter) - 10px);
  background: rgba(251, 248, 243, .86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.icon-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; transition: background .2s; }
.icon-btn:active { background: rgba(0,0,0,.05); }
.brand { justify-self: center; display: flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; }
.brand span { font-family: var(--serif); font-size: 16px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.nav-desktop { display: none; }

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; background: rgba(18,17,16,.4); }
.drawer__panel {
  position: absolute; inset: 0; background: var(--ivory);
  display: flex; flex-direction: column; padding: 8px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  animation: drawerIn .45s var(--ease) both;
}
.drawer.is-closing .drawer__panel { animation: drawerOut .3s var(--ease) both; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-12px); } }
@keyframes drawerOut { to { opacity: 0; transform: translateY(-12px); } }
.drawer__top { display: flex; justify-content: space-between; align-items: center; height: 52px; margin-right: -10px; }
.drawer__label { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.drawer__nav { display: flex; flex-direction: column; margin-top: 18px; }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-size: 32px; line-height: 1.1;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(10px); animation: itemIn .5s var(--ease) forwards;
}
.drawer__nav a span { font-family: var(--sans); font-size: 11px; letter-spacing: .15em; color: var(--gold); }
.drawer__nav a:nth-child(1) { animation-delay: .06s; } .drawer__nav a:nth-child(2) { animation-delay: .1s; }
.drawer__nav a:nth-child(3) { animation-delay: .14s; } .drawer__nav a:nth-child(4) { animation-delay: .18s; }
.drawer__nav a:nth-child(5) { animation-delay: .22s; } .drawer__nav a:nth-child(6) { animation-delay: .26s; }
@keyframes itemIn { to { opacity: 1; transform: none; } }
.drawer__foot { margin-top: auto; display: grid; gap: 16px; }
.drawer__foot p { font-size: 13px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 26px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 0;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s, transform .15s;
}
.btn:active { transform: scale(.98); }
.btn--block { width: 100%; }
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--ghost { border-color: rgba(243,223,174,.5); color: var(--gold-3); }
.btn--gold { background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-2)); color: #fff; background-size: 180% 100%; background-position: 0 0; }
.btn--gold:hover { background-position: 100% 0; }
.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
@media (hover: hover) {
  .btn--light:hover { background: var(--gold-3); }
  .btn--ghost:hover { background: rgba(243,223,174,.1); }
  .btn--dark:hover { background: var(--gold-deep); }
  .btn--outline:hover { background: var(--ink); color: var(--ivory); }
}

.kicker { font-size: 10.5px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); }
.kicker--dark { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - 32px - var(--header-h));
  background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px var(--gutter) 64px;
  isolation: isolate;
}
.hero__glow {
  position: absolute; inset: -20% -40% auto; height: 90%; z-index: -2;
  background:
    radial-gradient(closest-side at 50% 45%, rgba(199,155,75,.38), transparent 70%),
    radial-gradient(closest-side at 30% 70%, rgba(142,106,44,.25), transparent 70%);
  animation: breathe 7s ease-in-out infinite alternate;
}
@keyframes breathe { to { transform: scale(1.08) translateY(3%); opacity: .8; } }
.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

.hero__art { position: relative; margin: 0 auto auto; width: min(40vw, 190px); max-height: 30svh; aspect-ratio: 220 / 320; padding-top: 4px; }
.hero__art .bottle-line { height: 100%; width: auto; margin: 0 auto; }
.bottle-line { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 18px 40px rgba(199,155,75,.25)); }
.bottle-line .draw { stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 2.6s var(--ease) 1.2s forwards; }
.bottle-line .juice { opacity: 0; transform-origin: 50% 100%; animation: fill 1.8s var(--ease) 2.6s forwards; }
.bottle-line__ef { font-family: var(--serif); font-size: 18px; letter-spacing: .2em; fill: var(--gold-3); opacity: 0; animation: fadeIn 1s ease 3.2s forwards; }
.bottle-line__sub { font-family: var(--sans); font-size: 5.5px; letter-spacing: .45em; fill: var(--gold-2); opacity: 0; animation: fadeIn 1s ease 3.4s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fill { from { opacity: 0; transform: scaleY(.4); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
.hero__art { animation: float 6s ease-in-out infinite alternate; }
@keyframes float { to { transform: translateY(-8px); } }

.mist { position: absolute; top: 2%; left: 50%; width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243,223,174,.45), transparent 70%); filter: blur(8px); opacity: 0;
  animation: mist 5.5s ease-out infinite; }
.mist--2 { animation-delay: 1.8s; } .mist--3 { animation-delay: 3.6s; }
@keyframes mist {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.4); }
  20% { opacity: .9; }
  100% { opacity: 0; transform: translate(10%, -90px) scale(2.4); }
}

.hero__copy { text-align: center; margin-top: 18px; }
.hero__title { font-family: var(--serif); font-size: clamp(44px, 13vw, 92px); line-height: .98; letter-spacing: -.01em; margin-top: 14px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > * , .hero__title .line { animation: rise 1.2s var(--ease) both; }
.hero__title .line:nth-child(1) { animation-delay: 1.3s; }
.hero__title .line:nth-child(2) { animation-delay: 1.45s; }
.hero__title em { color: var(--gold-3); }
@keyframes rise { from { opacity: 0; transform: translateY(40%); } }
.hero__script { font-family: var(--script); font-size: 34px; color: var(--gold); margin-top: -4px; line-height: 1.2; animation: rise 1.2s var(--ease) 1.65s both; }
.hero__lead { font-size: 14.5px; font-weight: 300; color: rgba(251,248,243,.78); max-width: 34ch; margin: 14px auto 0; animation: rise 1.2s var(--ease) 1.8s both; }
.hero__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; animation: rise 1.2s var(--ease) 1.95s both; }
.hero__ctas .btn { padding: 0 12px; }
.hero__scroll { position: absolute; left: 50%; bottom: 16px; width: 1px; height: 34px; background: rgba(243,223,174,.25); transform: translateX(-50%); overflow: hidden; }
.hero__scroll span { position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--gold-3); animation: scrollcue 2s var(--ease) infinite; }
@keyframes scrollcue { to { top: 100%; } }

/* ---------- Paths ---------- */
.paths { display: grid; }
.path {
  position: relative; display: block; padding: 42px var(--gutter) 40px;
  background: var(--ivory); border-bottom: 1px solid var(--line);
}
.path--dark { background: var(--ink-2); color: var(--ivory); border-bottom: 0; }
.path__num { position: absolute; top: 26px; right: var(--gutter); font-family: var(--serif); font-size: 60px; line-height: 1; color: var(--gold); opacity: .22; }
.path__icon { display: block; width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.path__title { font-family: var(--serif); font-size: 32px; line-height: 1.1; }
.path p { margin-top: 10px; font-size: 14px; color: var(--muted); max-width: 36ch; }
.path--dark p { color: rgba(251,248,243,.65); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.link-arrow::after { content: "→"; letter-spacing: 0; transition: transform .3s var(--ease); }
.path:hover .link-arrow::after { transform: translateX(5px); }

/* ---------- Sections ---------- */
.section { padding: 72px 0 64px; }
.section__head { padding: 0 var(--gutter); text-align: center; margin-bottom: 34px; }
.section__title { font-family: var(--serif); font-size: clamp(36px, 10vw, 60px); line-height: 1.02; margin-top: 12px; }
.section__title em { color: var(--gold); }
.section__head--light .section__title em { color: var(--gold-3); }
.section__lead { margin: 14px auto 0; max-width: 38ch; font-size: 14px; font-weight: 300; color: rgba(251,248,243,.7); }
.section__lead--dark { color: var(--muted); font-weight: 400; }

/* ---------- Rail (favoritos) ---------- */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 68%;
  gap: 12px; overflow-x: auto; padding: 0 var(--gutter) 6px;
  scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail .card { scroll-snap-align: start; }
.rail__bar { margin: 22px var(--gutter) 0; height: 1px; background: var(--line); position: relative; }
.rail__bar span { position: absolute; left: 0; top: -0.5px; height: 2px; width: 20%; background: var(--ink); transition: transform .2s linear; transform-origin: left; }

/* ---------- Card ---------- */
.card { display: flex; flex-direction: column; background: transparent; text-align: left; }
.card__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--ivory-2);
  display: grid; place-items: center;
}
.card__media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.9), transparent 62%); }
.card__media svg, .card__media img { position: relative; width: 56%; height: auto; transition: transform .7s var(--ease); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card:hover .card__media svg { transform: translateY(-4px) scale(1.03); }
.card__badge { position: absolute; top: 10px; left: 10px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; background: var(--ivory); padding: 5px 8px; }
.card__body { padding: 12px 2px 0; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.card__house { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); min-height: 1.4em; }
.card__name { font-family: var(--serif); font-size: 21px; line-height: 1.12; font-weight: 500; }
.card__price { font-size: 13px; margin-top: 2px; }
.card__cta { margin-top: 10px; align-self: flex-start; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.card__cta::after { content: " →"; }

/* ---------- Lines ---------- */
.lines { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.line-card { background: var(--ivory); padding: 36px var(--gutter); position: relative; }
.line-card--gold { background: linear-gradient(135deg, #f7eedb, #efe0bd); }
.line-card__tag { font-size: 11px; letter-spacing: .2em; color: var(--gold); }
.line-card h3 { font-family: var(--serif); font-size: 34px; line-height: 1.1; margin-top: 6px; }
.line-card p { font-size: 14px; color: var(--muted); margin-top: 8px; max-width: 36ch; }

/* ---------- Brands ---------- */
.brands { background: var(--ink); color: var(--ivory); padding: 72px 0 56px; overflow: hidden; }
.marquee { overflow: hidden; border-top: 1px solid rgba(243,223,174,.14); padding: 14px 0; }
.marquee:last-of-type { border-bottom: 1px solid rgba(243,223,174,.14); }
.marquee + .marquee { border-top: 1px solid rgba(243,223,174,.14); }
.marquee__track { display: flex; align-items: center; gap: 52px; width: max-content; animation: slide 36s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 42s; }
.brand-logo {
  display: inline-block; flex: none; width: 118px; height: 42px;
  background-color: var(--gold-3);
  -webkit-mask: var(--logo) center / contain no-repeat;
  mask: var(--logo) center / contain no-repeat;
  opacity: .78; transition: opacity .3s, background-color .3s;
}
.brand-logo:hover { opacity: 1; background-color: var(--gold-2); }
.marquee__track .brand-logo:nth-child(even) { background-color: rgba(251,248,243,.82); width: 108px; height: 36px; }
.marquee__track .brand-logo:nth-child(even):hover { background-color: var(--ivory); }
.brand-grid { list-style: none; margin: 36px var(--gutter) 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(243,223,174,.14); border-left: 1px solid rgba(243,223,174,.14); }
.brand-grid li {
  display: grid; place-items: center; text-align: center; min-height: 76px; padding: 10px;
  border-right: 1px solid rgba(243,223,174,.14); border-bottom: 1px solid rgba(243,223,174,.14);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(251,248,243,.8);
  transition: background .3s, color .3s;
}
.brand-grid li:hover { background: rgba(243,223,174,.06); color: var(--gold-3); }
.brands__note { margin: 22px var(--gutter) 0; font-size: 11px; color: rgba(251,248,243,.4); text-align: center; }

/* ---------- Catalog (teaser en la landing → ver catalogo.css para la página completa) ---------- */
.catalog-cta { margin: 0 var(--gutter); padding: 36px 24px; background: var(--ivory-2); border: 1px solid var(--line); text-align: center; }
.catalog-cta__lines { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.catalog-cta__lines li { display: flex; align-items: center; gap: 6px; }
.catalog-cta__lines i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.catalog-cta__split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.catalog-cta__note { margin-top: 16px; font-size: 11.5px; color: var(--muted); }
.search { display: flex; align-items: center; gap: 10px; margin-top: 10px; height: 42px; padding: 0 14px; background: #fff; border: 1px solid var(--line); color: var(--muted); }
.search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; color: var(--ink); }
.search input::placeholder { color: #a39a8c; font-size: 14px; }
.catalog__count { margin-top: 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 12px; padding: 0 var(--gutter); }
.grid .card { opacity: 0; transform: translateY(14px); animation: cardIn .6s var(--ease) forwards; }
@keyframes cardIn { to { opacity: 1; transform: none; } }
.grid .card__name { font-size: 19px; }
.catalog__empty { padding: 20px var(--gutter); text-align: center; color: var(--muted); }
.catalog__empty a { display: block; margin-top: 10px; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.noscript { grid-column: 1 / -1; text-align: center; color: var(--muted); }

/* ---------- Shipping ---------- */
.ship { background: var(--ink-2); color: var(--ivory); padding: 72px var(--gutter) 64px; position: relative; overflow: hidden; }
.ship::before { content: ""; position: absolute; right: -30%; top: -10%; width: 90%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(243,223,174,.12); box-shadow: 0 0 0 40px rgba(243,223,174,.03), 0 0 0 80px rgba(243,223,174,.02); }
.ship .section__head { padding: 0; }
.steps { list-style: none; margin: 0; padding: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 21px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(var(--gold), rgba(184,145,74,.1)); }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 16px 0; position: relative; }
.step__n { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold); background: var(--ink-2); font-family: var(--serif); font-size: 22px; color: var(--gold-3); }
.step h3 { font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.step p { font-size: 14px; color: rgba(251,248,243,.65); margin-top: 6px; }
.ship__cta { margin-top: 28px; }

/* ---------- Visit ---------- */
.visit__card { margin: 0 var(--gutter); background: #fff; border: 1px solid var(--line); }
.visit__map { position: relative; aspect-ratio: 4 / 3; background: var(--ivory-2); overflow: hidden; }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.85) contrast(1.05) sepia(.15); pointer-events: none; }
/* capa encima del mapa: evita que Google intente abrirse dentro del recuadro ("rechazó la conexión") */
.visit__map-link { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 14px; background: linear-gradient(transparent 60%, rgba(18,17,16,.28)); }
.visit__map-link span { background: var(--ivory); color: var(--ink); font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; padding: 10px 16px; box-shadow: 0 6px 20px rgba(18,17,16,.18); transition: transform .3s var(--ease), background .3s; }
.visit__map-link:hover span { transform: translateY(-2px); background: var(--gold-3); }
.visit__info { padding: 26px 22px 24px; }
.visit__info dl { margin: 0; display: grid; gap: 18px; }
.visit__info dt { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.visit__info dd { margin: 4px 0 0; font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.visit__info dd a { border-bottom: 1px solid var(--line); }
.visit__ctas { display: grid; gap: 10px; margin-top: 26px; }

/* ---------- Abierto / cerrado ---------- */
.dd-note { font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.open-status { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #b3aa9c; flex: none; }
.open-status.is-open { color: #1f7a45; }
.open-status.is-open::before { background: #1f9d55; box-shadow: 0 0 0 0 rgba(31,157,85,.5); animation: pulse 2s ease-out infinite; }
.open-status--path { margin-top: 14px; }
@keyframes pulse { to { box-shadow: 0 0 0 8px rgba(31,157,85,0); } }

/* ---------- Social ---------- */
.social { text-align: center; padding: 8px var(--gutter) 64px; }
.social__handle { font-family: var(--serif); font-size: 28px; font-style: italic; margin-top: 8px; }
.social__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.social__row a { display: grid; justify-items: center; gap: 8px; padding: 18px 6px; border: 1px solid var(--line); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; transition: background .3s, color .3s, border-color .3s; }
.social__row a:hover { background: var(--ink); color: var(--gold-3); border-color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(251,248,243,.6); text-align: center; padding: 48px var(--gutter) calc(96px + env(safe-area-inset-bottom)); font-size: 12.5px; display: grid; justify-items: center; gap: 6px; }
.footer img { width: 96px; height: 96px; margin-bottom: 10px; }
.footer__tag { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--gold-3); margin-bottom: 8px; }
.footer__legal { margin-top: 14px; font-size: 11px; letter-spacing: .1em; color: rgba(251,248,243,.35); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 50; display: flex; align-items: center; gap: 10px; }
.wa-float__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #1f9d55; box-shadow: 0 10px 30px rgba(18,17,16,.28); position: relative; }
.wa-float__btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid #1f9d55; animation: ping 2.6s var(--ease) infinite; }
@keyframes ping { from { transform: scale(1); opacity: .7; } to { transform: scale(1.6); opacity: 0; } }
.wa-float__bubble {
  background: var(--ivory); color: var(--ink); border: 1px solid var(--line);
  font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.2;
  padding: 10px 14px; max-width: 200px; box-shadow: 0 10px 30px rgba(18,17,16,.14);
  opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.wa-float__bubble.is-on { opacity: 1; transform: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Tablet / Desktop ---------- */
@media (min-width: 720px) {
  :root { --gutter: 40px; }
  .paths { grid-template-columns: 1fr 1fr; }
  .path { border-bottom: 0; padding: 64px var(--gutter); }
  .lines { grid-template-columns: repeat(3, 1fr); }
  .rail { grid-auto-columns: 32%; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 36px 18px; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .visit__card { display: grid; grid-template-columns: 1.3fr 1fr; }
  .visit__map { aspect-ratio: auto; min-height: 380px; }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps::before { display: none; }
  .step { grid-template-columns: 1fr; }
  .ship__cta { max-width: 420px; margin-left: auto; margin-right: auto; }
  .search { margin-top: 0; }
  .catalog__count { margin-top: 0; }
  .catalog-cta { max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1024px) {
  :root { --gutter: 64px; --header-h: 72px; }
  .header { grid-template-columns: auto 1fr 44px; }
  .brand { justify-self: start; margin-left: 12px; grid-column: 1; grid-row: 1; }
  .nav-desktop { display: flex; justify-self: end; gap: 32px; margin-right: 18px; grid-column: 2; grid-row: 1; }
  .header__wa { grid-column: 3; grid-row: 1; }
  .nav-desktop a { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; position: relative; }
  .nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header [data-menu-open] { display: none; }
  .hero { flex-direction: row-reverse; align-items: center; justify-content: space-between; padding: 40px var(--gutter) 80px; }
  .hero__art { width: 300px; margin: 0 6vw 0 0; }
  .hero__copy { text-align: left; max-width: 620px; }
  .hero__lead { margin-left: 0; }
  .hero__ctas { display: flex; }
  .grid { grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; }
  .rail { grid-auto-columns: 23%; }
  .section { padding: 110px 0 96px; }
}
