/* =============================================================
   Vinoteca El Tronador · Tandil
   Paleta bordeaux/vino + dorado + crema · Playfair Display + Inter
   ============================================================= */

:root {
  --vino: #6B1F2E;
  --vino-oscuro: #4A1320;
  --vino-profundo: #2A0B11;
  --dorado: #C9A24B;
  --dorado-claro: #E8C77A;
  --dorado-texto: #7A5C2E;
  --crema: #F7F1E6;
  --crema-profundo: #EFE4D0;
  --crema-tostado: #E8DCC4;
  --grafito: #2A1A1E;
  --blanco: #FFFFFF;

  --sombra-suave: 0 10px 40px rgba(107, 31, 46, 0.10);
  --sombra-card: 0 14px 44px rgba(42, 11, 17, 0.10);
  --radio: 14px;
  --radio-sm: 10px;
  --maxw: 1200px;

  --ff-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --gradiente-vino: linear-gradient(135deg, #6B1F2E 0%, #4A1320 100%);
  --gradiente-cta: linear-gradient(135deg, #4A1320 0%, #2A0B11 100%);
  --gradiente-crema: linear-gradient(160deg, #F7F1E6 0%, #EFE4D0 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grafito);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--vino); text-decoration: none; }
a:hover { color: var(--vino-oscuro); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 0;
  top: -200px;
  background: var(--vino);
  color: #fff;
  padding: .8rem 1.4rem;
  z-index: 2000;
  font-weight: 500;
  border-radius: 0 0 10px 0;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Visually hidden ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--vino);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p { color: var(--grafito); }
h1 em { font-style: italic; color: var(--dorado-texto); font-weight: 600; }
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dorado-texto);
  font-weight: 600;
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--vino-oscuro); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-alt { background: var(--gradiente-crema); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.section-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }
.divider { width: 64px; height: 2px; background: var(--dorado); border: 0; margin: 1.2rem auto; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(247, 241, 230, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(107, 31, 46, 0.14); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 50px; width: auto; }
.nav-main { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; gap: 0.4rem; align-items: center; }
.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-weight: 500;
  color: var(--grafito);
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.nav-list a:hover { background: rgba(107, 31, 46, 0.08); color: var(--vino); text-decoration: none; }
.nav-list a[aria-current="page"] { color: var(--vino); font-weight: 600; }
.nav-cta { margin-left: 0.8rem; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: .9rem 1.7rem; border-radius: 8px; font-weight: 600; font-size: 1rem; border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--gradiente-vino); color: #fff; box-shadow: 0 10px 30px rgba(107, 31, 46, 0.18); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(107, 31, 46, 0.28); }
.btn-gold { background: linear-gradient(135deg, #C9A24B, #9E7B2E); color: var(--vino-profundo); box-shadow: 0 10px 30px rgba(201, 162, 75, 0.22); }
.btn-gold:hover { color: var(--vino-profundo); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201, 162, 75, 0.32); }
.btn-outline { background: transparent; color: var(--vino); border-color: var(--vino); }
.btn-outline:hover { background: var(--vino); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.8); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, 86vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(42, 11, 17, 0.86) 0%, rgba(74, 19, 32, 0.62) 48%, rgba(42, 11, 17, 0.30) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 720px; padding-block: clamp(2.5rem, 6vw, 4rem); }
.hero-content .eyebrow { color: var(--dorado-claro); }
.hero-content h1 { color: #fff; }
.hero-content h1 em { color: var(--dorado-claro); }
.hero-tagline { font-family: var(--ff-head); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--dorado-claro); margin-top: 0.4rem; }
.hero-content > p { color: rgba(247, 241, 230, 0.92); font-size: clamp(1rem, 1.4vw, 1.1rem); margin-top: 0.8rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; color: rgba(247, 241, 230, 0.92); font-size: 0.95rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dorado-claro); display: inline-block; }
.hero-disclaimer { position: absolute; bottom: 1rem; right: 1.2rem; z-index: 2; color: rgba(247, 241, 230, 0.7); font-size: 0.8rem; margin: 0; }

/* ---------- Pilares ---------- */
.pilares-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.pilar { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 1.8rem 1.6rem; box-shadow: var(--sombra-card); }
.pilar-icon { width: 56px; height: 56px; margin-bottom: 1rem; display: grid; place-items: center; background: var(--crema-profundo); border-radius: 50%; }
.pilar-icon svg { width: 36px; height: 36px; }
.pilar h3 { margin-bottom: 0.5rem; }
.pilar p { color: var(--grafito); font-size: 0.97rem; }

/* ---------- Categorías ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cat-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 2rem 1.7rem; box-shadow: var(--sombra-card); transition: transform .3s ease, box-shadow .3s ease; position: relative; overflow: hidden; }
.cat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradiente-vino); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(42, 11, 17, 0.14); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-evento { background: var(--gradiente-vino); color: #fff; border: 0; }
.cat-card-evento h3 { color: #fff; }
.cat-card-evento p { color: rgba(247, 241, 230, 0.92); }
.cat-card-evento .cat-icon { background: rgba(255, 255, 255, 0.12); }
.cat-card-evento .cat-icon svg path:first-child,
.cat-card-evento .cat-icon svg path { stroke: var(--dorado-claro); }
.cat-card-evento .cat-link { color: var(--dorado-claro); }
.cat-icon { width: 64px; height: 64px; margin-bottom: 1.2rem; display: grid; place-items: center; background: var(--crema-profundo); border-radius: 14px; }
.cat-icon svg { width: 40px; height: 40px; }
.cat-card h3 { margin-bottom: 0.6rem; }
.cat-card p { color: var(--grafito); margin-bottom: 1rem; font-size: 0.97rem; }
.cat-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--vino); font-weight: 600; font-size: 0.95rem; }
.cat-link:hover { color: var(--dorado-texto); }

/* ---------- Consignación ---------- */
.consignacion { background: var(--vino-profundo); color: #fff; position: relative; overflow: hidden; }
.consignacion::after { content: ""; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(201, 162, 75, 0.18), transparent 70%); pointer-events: none; }
.consig-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.consig-img { border-radius: var(--radio); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.consig-img img { width: 100%; height: 100%; object-fit: cover; }
.consig-text .eyebrow { color: var(--dorado-claro); }
.consig-text h2 { color: #fff; }
.consig-text .lead { color: rgba(247, 241, 230, 0.94); margin-top: 1rem; }
.consig-text .lead strong { color: var(--dorado-claro); font-weight: 700; }
.consig-list { list-style: none; margin: 1.6rem 0; padding: 0; display: grid; gap: 0.7rem; }
.consig-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: rgba(247, 241, 230, 0.94); font-size: 1rem; }
.consig-list li span { color: var(--dorado-claro); font-weight: 700; flex-shrink: 0; }
.consig-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.4rem; }
.consig-note { color: rgba(247, 241, 230, 0.7); font-size: 0.9rem; margin-top: 1rem; }

/* ---------- Historia ---------- */
.hist-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hist-text p { font-size: 1.05rem; margin-bottom: 1rem; }
.hist-text .btn { margin-top: 0.6rem; }
.hist-stats { display: grid; grid-template-columns: 1fr; gap: 1.4rem; background: var(--gradiente-vino); border-radius: var(--radio); padding: 2rem; color: #fff; box-shadow: var(--sombra-card); }
.stat { text-align: center; padding-block: 0.4rem; border-bottom: 1px solid rgba(232, 199, 122, 0.25); }
.stat:last-child { border-bottom: 0; }
.stat-num { display: block; font-family: var(--ff-head); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700; color: var(--dorado-claro); line-height: 1; }
.stat-label { display: block; margin-top: 0.4rem; color: rgba(247, 241, 230, 0.9); font-size: 0.95rem; letter-spacing: 0.04em; }

/* ---------- Maridajes ---------- */
.maridaje-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.maridaje-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 1.8rem 1.5rem; box-shadow: var(--sombra-card); transition: transform .3s ease; }
.maridaje-card:hover { transform: translateY(-3px); }
.maridaje-emoji { width: 52px; height: 52px; margin-bottom: 1rem; display: grid; place-items: center; background: var(--crema-profundo); border-radius: 12px; }
.maridaje-emoji svg { width: 34px; height: 34px; }
.maridaje-card h3 { margin-bottom: 0.4rem; font-size: 1.25rem; }
.maridaje-card p { font-size: 0.97rem; }
.maridaje-card strong { color: var(--vino); }

/* ---------- Testimonios ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 1.8rem 1.6rem; box-shadow: var(--sombra-card); position: relative; }
.testi-card::before { content: "\201C"; position: absolute; top: -8px; left: 1rem; font-family: var(--ff-head); font-size: 4rem; line-height: 1; color: var(--dorado); opacity: 0.35; }
.testi-card blockquote { margin: 0; font-family: var(--ff-head); font-style: italic; font-size: 1.1rem; color: var(--vino-oscuro); line-height: 1.5; padding-top: 0.6rem; }
.testi-card figcaption { margin-top: 1rem; display: flex; flex-direction: column; }
.testi-name { font-weight: 600; color: var(--vino); }
.testi-meta { color: var(--dorado-texto); font-size: 0.875rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-item { background: #fff; border: 1px solid rgba(107, 31, 46, 0.10); border-radius: var(--radio-sm); overflow: hidden; box-shadow: 0 4px 18px rgba(42, 11, 17, 0.04); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; font-size: 1.05rem; color: var(--vino); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--dorado-texto); transition: transform .25s ease; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--grafito); }
.faq-a p { font-size: 0.98rem; }

/* ---------- Ubicaciones ---------- */
.ubi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.ubi-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra-card); }
.ubi-info { padding: 1.6rem 1.6rem 1rem; }
.ubi-info h3 { margin-bottom: 0.5rem; }
.ubi-addr { color: var(--grafito); margin-bottom: 0.5rem; }
.ubi-hours { color: var(--dorado-texto); font-weight: 600; font-size: 0.95rem; margin-top: 0.3rem; }
.mapa-wrap { width: 100%; height: 280px; }
.mapa-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--gradiente-cta); color: #fff; border-radius: clamp(18px, 3vw, 28px); padding: clamp(2.4rem, 5vw, 3.6rem); text-align: center; box-shadow: 0 22px 60px rgba(42, 11, 17, 0.30); position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(201, 162, 75, 0.20), transparent 70%); pointer-events: none; }
.cta-final h2 { color: #fff; position: relative; z-index: 1; }
.cta-final > p { color: rgba(247, 241, 230, 0.92); margin-top: 0.8rem; max-width: 580px; margin-inline: auto; position: relative; z-index: 1; }
.cta-final .hero-actions { justify-content: center; position: relative; z-index: 1; }
.cta-disclaimer { color: rgba(247, 241, 230, 0.7); font-size: 0.85rem; margin-top: 1.4rem; position: relative; z-index: 1; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 1500; display: inline-flex; align-items: center; gap: 0.6rem; background: #128C7E; color: #fff; padding: 0.7rem 1rem; border-radius: 999px; box-shadow: 0 12px 32px rgba(18, 140, 126, 0.4); transition: transform .25s ease, background .25s ease; }
.whatsapp-float:hover { background: #0E7268; color: #fff; transform: translateY(-3px); text-decoration: none; }
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wf-label { font-weight: 600; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--vino-profundo); color: rgba(247, 241, 230, 0.88); padding-top: clamp(2.6rem, 6vw, 4rem); }
.footer-grid { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 0.9rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(247, 241, 230, 0.78); font-size: 0.93rem; }
.footer-social { margin-top: 1rem; display: flex; gap: 0.6rem; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); border-radius: 50%; color: #fff; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--dorado); color: var(--vino-profundo); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-title { color: var(--dorado-claro); font-size: 1.05rem; margin-bottom: 1rem; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col li { font-size: 0.93rem; color: rgba(247, 241, 230, 0.78); }
.footer-col a { color: rgba(247, 241, 230, 0.92); }
.footer-col a:hover { color: var(--dorado-claro); }
.footer-bottom { border-top: 1px solid rgba(232, 199, 122, 0.18); padding: 1.2rem clamp(1.1rem, 4vw, 2.2rem); max-width: var(--maxw); margin-inline: auto; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(247, 241, 230, 0.62); }
.footer-legal { color: rgba(232, 199, 122, 0.7); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav ---------- */
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(42, 11, 17, 0.55); z-index: 998; opacity: 0; transition: opacity .3s ease; }
.nav-backdrop.is-open { display: block; opacity: 1; }

/* ---------- Page header (subpages) ---------- */
.page-hero { background: var(--gradiente-vino); color: #fff; padding-block: clamp(2.6rem, 6vw, 4rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(201, 162, 75, 0.18), transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--dorado-claro); }
.page-hero h1 { color: #fff; max-width: 720px; }
.page-hero p { color: rgba(247, 241, 230, 0.92); margin-top: 0.8rem; max-width: 620px; font-size: 1.05rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 3.4rem); align-items: start; }
.contact-form { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--sombra-card); }
.contact-form h2 { margin-bottom: 0.4rem; }
.contact-form > p { color: var(--grafito); margin-bottom: 1.4rem; font-size: 0.98rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; color: var(--vino); margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 0.8rem 0.95rem; border: 1.5px solid rgba(107, 31, 46, 0.20); border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--grafito); background: var(--crema); transition: border .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--vino); box-shadow: 0 0 0 3px rgba(107, 31, 46, 0.12); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: #B33A3A; box-shadow: 0 0 0 3px rgba(179, 58, 58, 0.12); }
.error-msg { display: block; margin-top: 0.35rem; color: #B33A3A; font-size: 0.875rem; min-height: 1em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-disclaimer { font-size: 0.85rem; color: var(--dorado-texto); margin-top: 1rem; }
.form-success { background: rgba(201, 162, 75, 0.15); border: 1px solid var(--dorado); border-radius: var(--radio-sm); padding: 1rem 1.2rem; margin-top: 1.2rem; color: var(--vino-oscuro); font-weight: 600; display: none; }
.form-success.is-visible { display: block; }
.contact-side { display: grid; gap: 1.2rem; }
.contact-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 1.5rem 1.6rem; box-shadow: var(--sombra-card); }
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { color: var(--grafito); font-size: 0.97rem; margin: 0.2rem 0; }
.contact-card a { color: var(--vino); font-weight: 500; }
.contact-card .ci-icon { width: 40px; height: 40px; display: grid; place-items: center; background: var(--crema-profundo); border-radius: 10px; margin-bottom: 0.6rem; }
.contact-card .ci-icon svg { width: 22px; height: 22px; color: var(--vino); }

/* ---------- Equipo / Nosotros ---------- */
.hist-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.hist-card { background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 2rem 1.8rem; box-shadow: var(--sombra-card); }
.hist-card .year { font-family: var(--ff-head); font-size: 2rem; color: var(--dorado-texto); font-weight: 700; }
.hist-card h3 { margin: 0.3rem 0 0.6rem; }
.timeline { display: grid; gap: 1.4rem; max-width: 820px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 1.4rem; align-items: start; background: #fff; border: 1px solid rgba(107, 31, 46, 0.08); border-radius: var(--radio); padding: 1.4rem 1.6rem; box-shadow: var(--sombra-card); }
.tl-year { font-family: var(--ff-head); font-size: 1.6rem; color: var(--vino); font-weight: 700; }
.tl-item h3 { margin-bottom: 0.3rem; }
.tl-item p { font-size: 0.97rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .maridaje-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(107, 31, 46, 0.2);
    border-radius: 10px;
    padding: 0;
    align-items: center;
    position: relative;
    z-index: 1001;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vino);
    border-radius: 2px;
    transition: transform .3s ease, opacity .25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { display: none; }
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    background: var(--crema);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.6rem 2rem;
    box-shadow: -20px 0 60px rgba(42, 11, 17, 0.25);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-main.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.2rem; width: 100%; }
  .nav-list a { padding: 0.9rem 1rem; font-size: 1.05rem; }
  .nav-cta-mobile { display: block; margin-top: 1.4rem; }
  .nav-cta-mobile .btn { width: 100%; }

  .consig-inner { grid-template-columns: 1fr; }
  .hist-grid { grid-template-columns: 1fr; }
  .ubi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hist-card-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .pilares-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .maridaje-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 0.6rem; }
  .whatsapp-float { padding: 0.7rem; }
  .wf-label { display: none; }
  .hero-disclaimer { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .whatsapp-float, .nav-toggle, .nav-cta, .hero-actions { display: none; }
  body { background: #fff; }
}
