@font-face { font-family:'Adventures'; src:url('/assets/fonts/Adventures.otf') format('opentype'); font-display:swap; }
@font-face { font-family:'Gotham Rounded'; src:url('/assets/fonts/GothamRounded-Book.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Gotham Rounded'; src:url('/assets/fonts/GothamRounded-Medium.otf') format('opentype'); font-weight:500; font-display:swap; }

:root{
  --cream:#FAF3E3;
  --wine:#541829;
  --slate:#718FA9;
  --tan:#DECCC0;
  --text:#4a2b32;
  --muted1:#6e4750;
  --muted2:#7a565d;
  --muted3:#7f5c62;
}

*{ box-sizing:border-box; }
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
html,body{ margin:0; padding:0; background:var(--cream); }
body{ font-family:'Gotham Rounded',sans-serif; font-weight:400; color:var(--text); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
::selection{ background:var(--wine); color:var(--cream); }
img{ display:block; max-width:100%; }
a{ text-decoration:none; }
a:not(.btn){ display:inline-block; transition:transform 150ms cubic-bezier(0.16,1,0.3,1); }
a:not(.btn):hover{ transform:translateY(-1px); }

.container{ max-width:1180px; margin:0 auto; }
.container-narrow{ max-width:820px; margin:0 auto; }
.center{ text-align:center; }
.center .container-narrow{ margin-left:auto; margin-right:auto; }

/* Typography */
.kicker{ font-family:'Gotham Rounded'; font-weight:500; font-size:12px; letter-spacing:.2em; text-transform:uppercase; display:inline-block; }
.kicker-slate{ color:var(--slate); }
.kicker-tan{ color:var(--tan); letter-spacing:.34em; font-size:12px; }
.h2{ font-family:'Gotham Rounded'; font-weight:500; font-size:clamp(28px,3.6vw,44px); letter-spacing:-.01em; margin:16px 0 0; }
.h2.wine{ color:var(--wine); }
.h2.cream{ color:var(--cream); }
.h2-compact{ font-size:clamp(28px,3.6vw,40px); }
.h3{ font-family:'Gotham Rounded'; font-weight:500; font-size:clamp(20px,2.6vw,24px); margin:20px 0 10px; letter-spacing:-.01em; }
.h3.wine{ color:var(--wine); }
.h3.cream{ color:var(--cream); }
.body-text{ font-size:16px; line-height:1.75; color:var(--text); margin:20px 0 24px; }
.body-text-sm{ font-size:15px; line-height:1.75; margin:14px 0 0; }
.muted1{ color:var(--muted1); }
.cream-85{ color:rgba(250,243,227,.85); }
.script-line{ font-family:'Adventures'; font-size:clamp(38px,5.4vw,58px); color:var(--wine); display:block; }
.link-underline{ font-family:'Gotham Rounded'; font-weight:500; font-size:14px; color:var(--wine); text-decoration:underline; }

/* Buttons */
.btn{ font-family:'Gotham Rounded'; font-weight:500; font-size:15px; padding:15px 30px; border-radius:100px; display:inline-block; border:none; cursor:pointer; transition:transform 150ms cubic-bezier(0.16,1,0.3,1), box-shadow 150ms cubic-bezier(0.16,1,0.3,1); }
.btn:hover{ transform:translateY(-2px); box-shadow:0 8px 18px rgba(84,24,41,.18); }
.btn:active{ transform:translateY(0); box-shadow:none; }
.btn-wine{ color:var(--cream); background:var(--wine); }
.btn-cream{ color:var(--wine); background:var(--cream); }
.btn-outline-cream{ color:var(--cream); background:transparent; border:1px solid rgba(250,243,227,.6); }
.btn-block{ width:100%; text-align:center; font-size:15px; padding:14px 28px; }

/* Nav */
.nav-stripe{ position:sticky; top:0; z-index:91; height:6px; overflow:hidden; background:repeating-linear-gradient(135deg,var(--slate),var(--slate) 12px,var(--cream) 12px,var(--cream) 24px); background-size:34px 34px; animation:stripe-drift 24s linear infinite; }
.nav{ position:sticky; top:6px; z-index:90; display:flex; align-items:center; justify-content:space-between; padding:16px 40px; background:rgba(250,243,227,.88); backdrop-filter:blur(10px); border-bottom:1px solid rgba(84,24,41,.10); }
.wordmark{ font-family:'Adventures'; font-size:28px; color:var(--wine); line-height:1; }
.nav-links{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.nav-links a{ font-family:'Gotham Rounded'; font-weight:500; font-size:13px; letter-spacing:.06em; color:var(--text); }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-actions .btn{ font-size:13px; letter-spacing:.02em; padding:11px 22px; }
.nav-toggle{ display:none; width:44px; height:44px; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:0; border-radius:100px; border:1px solid rgba(84,24,41,.25); background:#fff; cursor:pointer; flex-shrink:0; transition:transform 150ms cubic-bezier(0.16,1,0.3,1); }
.nav-toggle:hover{ transform:scale(1.05); }
.nav-toggle:active{ transform:scale(.94); }

@keyframes stripe-drift{ to{ background-position:34px 0; } }
.nav-toggle span{ display:block; width:18px; height:2px; border-radius:2px; background:var(--wine); transition:transform 200ms cubic-bezier(0.16,1,0.3,1), opacity 150ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* Hero */
.hero{ position:relative; min-height:92vh; display:flex; align-items:center; }
.hero-photo{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(84,24,41,.72) 0%, rgba(84,24,41,.28) 55%, rgba(84,24,41,.05) 100%); pointer-events:none; }
.hero-content{ position:relative; z-index:1; max-width:1180px; margin:0 auto; padding:40px; width:100%; }
.hero-copy{ max-width:600px; }
.hero-title{ font-family:'Gotham Rounded'; font-weight:500; font-size:clamp(40px,6vw,72px); line-height:1.02; margin:22px 0 0; color:var(--cream); letter-spacing:-.01em; }
.hero-sub{ font-size:18px; line-height:1.7; color:rgba(250,243,227,.85); margin:22px 0 0; max-width:480px; }
.hero-ctas{ display:flex; align-items:center; gap:22px; margin-top:36px; flex-wrap:wrap; }
.hero-cta-primary{ font-size:16px; padding:19px 40px; box-shadow:0 10px 28px rgba(84,24,41,.32); }
.hero .hero-ctas .btn-outline-cream{ padding:0; border:none; font-weight:500; border-bottom:1px solid rgba(250,243,227,.5); border-radius:0; }
.hero .hero-ctas .btn-outline-cream:hover{ transform:translateY(-1px); box-shadow:none; }

/* Sections */
.section{ padding:100px 32px; background:var(--cream); transition:opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.section.reveal-pending{ opacity:0; transform:translateY(28px); }
.section.is-revealed{ opacity:1; transform:translateY(0); }
.section-top-0{ padding-top:0; }
.section-wine{ background:var(--wine); color:var(--cream); }
.section-tan{ background:var(--tan); }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.grid-2-gap{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }

.rounded-img{ width:100%; border-radius:14px; object-fit:cover; }
.ratio-4-5{ aspect-ratio:4/5; }
.ratio-4-3{ aspect-ratio:4/3; }

/* Filosofía */
.pillars{ margin-top:44px; }
.pillar-card{ padding:28px 26px; background:rgba(250,243,227,.07); border:1px solid rgba(250,243,227,.16); border-radius:12px; transition:transform 250ms cubic-bezier(0.16,1,0.3,1), background-color 250ms ease; }
.pillar-card:hover{ transform:translateY(-4px); background:rgba(250,243,227,.12); }
.pillar-title{ font-family:'Gotham Rounded'; font-weight:500; font-size:18px; color:var(--cream); }
.pillar-desc{ font-size:14px; line-height:1.7; color:rgba(250,243,227,.72); margin:10px 0 0; }

/* Row header */
.row-header{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:44px; flex-wrap:wrap; }

/* Cards */
.card{ background:#fff; border:1px solid rgba(84,24,41,.10); border-radius:14px; overflow:hidden; transition:transform 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms cubic-bezier(0.16,1,0.3,1); }
.card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(84,24,41,.12); }
.card-photo{ position:relative; overflow:hidden; }
.card-photo img{ width:100%; height:100%; object-fit:cover; transition:transform 700ms cubic-bezier(0.16,1,0.3,1); }
.card:hover .card-photo img{ transform:scale(1.06); }
.badge{ position:absolute; top:14px; left:14px; background:var(--wine); color:var(--cream); font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; padding:6px 12px; border-radius:100px; }
.card-body{ padding:22px; }
.card-title{ font-family:'Gotham Rounded'; font-weight:500; font-size:18px; color:var(--wine); }
.card-desc{ font-size:14px; line-height:1.6; color:var(--muted2); margin:8px 0 0; }

/* Category banners */
.cat-banner{ position:relative; border-radius:14px; overflow:hidden; min-height:380px; }
.cat-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 700ms cubic-bezier(0.16,1,0.3,1); }
.cat-banner:hover img{ transform:scale(1.06); }
.cat-overlay{ position:absolute; inset:0; pointer-events:none; }
.cat-overlay-wine{ background:linear-gradient(0deg, rgba(84,24,41,.75), transparent 60%); }
.cat-overlay-slate{ background:linear-gradient(0deg, rgba(113,143,169,.75), transparent 60%); }
.cat-text{ position:absolute; left:28px; bottom:26px; }
.cat-title{ font-family:'Gotham Rounded'; font-weight:500; font-size:26px; color:var(--cream); }
.cat-sub{ font-size:14px; line-height:1.6; color:rgba(250,243,227,.88); margin:6px 0 0; max-width:320px; }

/* Eventos */
.eventos-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-bottom:60px; }
.ev-card{ padding:38px 32px; border-radius:16px; display:flex; flex-direction:column; }
.ev-card-wine{ background:var(--wine); color:var(--cream); position:relative; }
.ev-card-white{ background:#fff; border:1px solid rgba(84,24,41,.10); }
.ev-card-tan{ background:var(--tan); }
.ev-pill{ align-self:flex-start; font-family:'Gotham Rounded'; font-weight:500; font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--wine); background:var(--cream); padding:6px 12px; border-radius:100px; margin-bottom:18px; }
.ev-body{ font-size:14.5px; line-height:1.7; color:var(--text); margin:0 0 24px; flex:1; }
.ev-card-wine .ev-body{ color:rgba(250,243,227,.85); }
.ev-link{ font-family:'Gotham Rounded'; font-weight:500; font-size:14px; }
.ev-link.cream{ color:var(--cream); border-bottom:1px solid rgba(250,243,227,.5); }
.ev-link.wine{ color:var(--wine); border-bottom:1px solid var(--wine); }
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.chip{ font-family:'Gotham Rounded'; font-weight:500; font-size:12.5px; color:var(--wine); background:var(--cream); border:1px solid rgba(84,24,41,.15); padding:7px 13px; border-radius:100px; cursor:pointer; transition:transform 120ms cubic-bezier(0.16,1,0.3,1), background-color 150ms, color 150ms, border-color 150ms; }
.chip:active{ transform:scale(.95); }
.chip.selected{ border-color:var(--wine); background:var(--wine); color:var(--cream); }
.ev-price{ font-family:'Gotham Rounded'; font-weight:500; font-size:15px; color:var(--wine); margin:0 0 14px; min-height:1.3em; opacity:0; transform:translateY(-4px); transition:opacity 180ms ease, transform 180ms cubic-bezier(0.16,1,0.3,1); }
.ev-price:not(:empty){ opacity:1; transform:translateY(0); }
.ev-note{ font-size:12.5px; line-height:1.6; color:var(--muted3); margin:0 0 20px; flex:1; }

.arrow-buttons{ display:flex; align-items:center; gap:8px; }
.arrow-btn{ width:36px; height:36px; border-radius:100px; border:1px solid rgba(84,24,41,.25); background:#fff; color:var(--wine); cursor:pointer; font-size:16px; line-height:1; transition:transform 150ms cubic-bezier(0.16,1,0.3,1), border-color 150ms; }
.arrow-btn:hover{ transform:scale(1.08); border-color:var(--wine); }
.arrow-btn:active{ transform:scale(.94); }

.carousel-track{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; -ms-overflow-style:none; scrollbar-width:none; }
.carousel-track::-webkit-scrollbar{ display:none; }

.ev-photo{ position:relative; flex:0 0 auto; width:clamp(230px,72vw,300px); scroll-snap-align:start; border-radius:14px; overflow:hidden; aspect-ratio:4/5; }
.ev-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 700ms cubic-bezier(0.16,1,0.3,1); }
.ev-photo:hover img{ transform:scale(1.06); }
.ev-photo-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(84,24,41,.65), transparent 55%); pointer-events:none; }
.ev-caption{ position:absolute; left:16px; bottom:14px; right:16px; font-family:'Gotham Rounded'; font-weight:500; font-size:14px; color:var(--cream); margin:0; }

/* Opiniones */
.review-card{ padding:28px; background:var(--cream); border-radius:14px; display:flex; flex-direction:column; gap:16px; transition:transform 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms cubic-bezier(0.16,1,0.3,1); }
.review-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(84,24,41,.10); }
.stars{ color:var(--slate); font-size:15px; letter-spacing:2px; }
.review-quote{ font-family:'Gotham Rounded'; font-weight:500; font-size:16px; line-height:1.6; color:var(--wine); margin:0; flex:1; }
.review-author{ display:flex; align-items:center; gap:12px; }
.avatar{ width:38px; height:38px; border-radius:100px; background:var(--wine); color:var(--cream); font-family:'Gotham Rounded'; font-weight:500; font-size:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.author-name{ font-family:'Gotham Rounded'; font-weight:500; font-size:14px; color:var(--wine); }
.author-role{ font-size:12px; color:var(--muted2); }

/* Galería / Instagram */
.ig-track{ gap:12px; padding-bottom:6px; }
.ig-photo{ position:relative; flex:0 0 auto; width:200px; aspect-ratio:1; scroll-snap-align:start; border-radius:12px; overflow:hidden; display:block; }
.ig-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 700ms cubic-bezier(0.16,1,0.3,1); }
.ig-photo:hover img{ transform:scale(1.06); }
.ig-overlay{ position:absolute; left:0; right:0; bottom:0; padding:8px 10px; background:linear-gradient(0deg, rgba(0,0,0,.55), transparent); display:flex; align-items:center; gap:6px; pointer-events:none; }
.ig-overlay span:first-child{ color:#fff; font-size:12px; }
.ig-overlay span:last-child{ color:#fff; font-size:11px; font-weight:500; }

/* Ubicación */
.info-list{ display:flex; flex-direction:column; gap:14px; font-size:15px; line-height:1.6; color:rgba(250,243,227,.85); margin-top:24px; }
.info-list b{ color:var(--cream); font-weight:500; }
.info-link{ color:rgba(250,243,227,.85); border-bottom:1px solid rgba(250,243,227,.4); }
.map-embed{ width:100%; aspect-ratio:4/3; border:0; border-radius:14px; }

/* FAQ */
.faq-list{ display:flex; flex-direction:column; gap:1px; background:rgba(84,24,41,.12); border:1px solid rgba(84,24,41,.12); border-radius:12px; overflow:hidden; }
.faq-item{ background:#fff; padding:22px 24px; cursor:pointer; transition:background-color 150ms ease; }
.faq-item:hover{ background:rgba(84,24,41,.03); }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:'Gotham Rounded'; font-weight:500; font-size:16px; color:var(--wine); }
.faq-icon{ font-size:20px; color:var(--slate); display:inline-block; transition:transform 250ms cubic-bezier(0.16,1,0.3,1); }
.faq-item.is-open .faq-icon{ transform:rotate(45deg); }
.faq-a-wrap{ display:grid; grid-template-rows:0fr; transition:grid-template-rows 320ms cubic-bezier(0.16,1,0.3,1); }
.faq-item.is-open .faq-a-wrap{ grid-template-rows:1fr; }
.faq-a{ font-size:14px; line-height:1.7; color:var(--muted2); max-width:68ch; margin:0; padding-top:14px; overflow:hidden; min-height:0; opacity:0; transition:opacity 220ms ease; }
.faq-item.is-open .faq-a{ opacity:1; }

/* Contacto */
.info-link-wine{ font-family:'Gotham Rounded'; font-weight:500; font-size:16px; color:var(--wine); border-bottom:1px solid var(--wine); }
.contact-card{ padding:36px; background:#fff; border:1px solid rgba(84,24,41,.10); border-radius:16px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field label{ font-family:'Gotham Rounded'; font-weight:500; font-size:13px; color:var(--wine); }
.field input, .field textarea{ font-family:'Gotham Rounded'; font-size:15px; padding:12px 14px; border:1px solid rgba(84,24,41,.2); border-radius:8px; background:var(--cream); color:var(--text); transition:border-color 150ms ease; }
.field textarea{ resize:vertical; }
.field input.has-error, .field textarea.has-error{ border-color:#b3273f; }
.field-error{ font-size:12.5px; color:#b3273f; min-height:1em; opacity:0; transition:opacity 180ms ease; }
.field-error:not(:empty){ opacity:1; }
.form-status{ margin:14px 0 0; font-size:13.5px; line-height:1.5; text-align:center; opacity:0; transition:opacity 180ms ease; }
.form-status:not(:empty){ opacity:1; }
.form-status.success{ color:#3d7a4a; }
.form-status.error{ color:#b3273f; }

/* Footer */
.footer-stripe{ height:8px; overflow:hidden; background:repeating-linear-gradient(135deg,var(--wine),var(--wine) 12px,var(--tan) 12px,var(--tan) 24px); background-size:34px 34px; animation:stripe-drift 24s linear infinite; }
.footer{ padding:70px 32px 40px; background:var(--cream); border-top:1px solid rgba(84,24,41,.12); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.footer-tagline{ font-size:13px; line-height:1.7; color:var(--muted2); margin:14px 0 0; max-width:280px; }
.footer-heading{ font-family:'Gotham Rounded'; font-weight:500; font-size:13px; color:var(--wine); margin-bottom:12px; }
.footer-links{ display:flex; flex-direction:column; gap:8px; font-size:14px; }
.footer-links a{ color:var(--muted2); }
.footer-copy{ margin-top:40px; padding-top:20px; border-top:1px solid rgba(84,24,41,.10); font-size:12px; color:var(--muted3); }

/* Responsive */
@media (max-width: 880px){
  .nav{ padding:14px 20px; }
  .section{ padding:64px 20px; }
  .section-top-0{ padding-top:0; }
  .nav-toggle{ display:flex; }
  .nav-links{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(250,243,227,.98);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(84,24,41,.12);
    box-shadow:0 12px 24px rgba(84,24,41,.14);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity 220ms cubic-bezier(0.16,1,0.3,1), transform 220ms cubic-bezier(0.16,1,0.3,1), visibility 220ms;
  }
  .nav-links.is-open{ opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
  .nav-links a{ padding:16px 20px; font-size:15px; border-top:1px solid rgba(84,24,41,.08); }
  .hero-content{ padding:24px; }
  .two-col, .grid-2-gap{ grid-template-columns:1fr; gap:32px; }
  .grid-3{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
}
