/* ============================================================
   0. VARIABLES Y RESET
   Paleta "Bruma": tonos de espejo antiguo — vino profundo,
   blush polvo, marfil cálido y dorado envejecido.
   ============================================================ */
:root{
  --ink:        #241B1D;   /* texto principal */
  --wine:       #7A2E3A;   /* color de marca / acento primario */
  --wine-dark:  #5A2029;
  --blush:      #E4C9C2;   /* rosa polvo */
  --cream:      #F6F1EC;   /* fondo cálido */
  --cream-2:    #EFE6DD;
  --gold:       #C6A15B;   /* dorado envejecido, detalles y CTA */
  --gold-light: #E2C98A;
  --white:      #FFFDFB;

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --arch: 220px 220px 0 0;   /* radio de "arco de espejo", el motivo firma del sitio */
  --transition: 0.4s cubic-bezier(.25,.8,.25,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:500; line-height:1.15; color:var(--ink); }

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:700;
  font-size:0.75rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--wine);
  margin-bottom:14px;
}

.section-title{
  font-size:clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom:18px;
}

.section-lead{
  max-width:620px;
  color:#5c4c4a;
  font-size:1.05rem;
}

.section-pad{ padding:100px 0; }

/* motivo firma: marco en arco, como un espejo de salón antiguo */
.arch-frame{
  border-radius:var(--arch);
  overflow:hidden;
  border:1px solid var(--gold);
  outline:6px solid var(--cream);
  outline-offset:-14px;
  position:relative;
}
.arch-frame img{ width:100%; height:100%; object-fit:cover; display:block; }

/* botones */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 32px;
  border-radius:100px;
  font-weight:700;
  font-size:0.92rem;
  letter-spacing:0.03em;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn-primary{
  background:var(--wine);
  color:var(--white);
  box-shadow:0 8px 20px -8px rgba(122,46,58,.6);
}
.btn-primary:hover{ background:var(--wine-dark); transform:translateY(-2px); }
.btn-gold{
  background:var(--gold);
  color:var(--ink);
}
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-outline{
  border:1.5px solid var(--white);
  color:var(--white);
}
.btn-outline:hover{ background:var(--white); color:var(--ink); }
.btn-outline-dark{
  border:1.5px solid var(--wine);
  color:var(--wine);
}
.btn-outline-dark:hover{ background:var(--wine); color:var(--white); }

/* animaciones de aparición al hacer scroll */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.12s; }
.reveal-delay-2{ transition-delay:.24s; }
.reveal-delay-3{ transition-delay:.36s; }

/* ============================================================
   1. HEADER
   ============================================================ */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:22px 0;
  background:transparent;
  transition:background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled{
  background:rgba(246,241,236,0.94);
  backdrop-filter:blur(8px);
  padding:14px 0;
  box-shadow:0 4px 24px -12px rgba(36,27,29,.25);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:600;
  letter-spacing:0.02em;
  color:var(--white);
  transition:color var(--transition);
}
.site-header.is-scrolled .logo{ color:var(--wine); }
.logo span{ color:var(--gold); }

.main-nav{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-size:0.9rem;
  font-weight:600;
  color:var(--white);
  position:relative;
  padding-bottom:4px;
  transition:color var(--transition);
}
.site-header.is-scrolled .main-nav a{ color:var(--ink); }
.main-nav a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background:var(--gold);
  transition:width var(--transition);
}
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  width:26px; height:20px;
  position:relative;
  z-index:1200;
}
.nav-toggle span{
  position:absolute; left:0; width:100%; height:2px;
  background:var(--white);
  transition:all var(--transition);
}
.site-header.is-scrolled .nav-toggle span{ background:var(--ink); }
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:9px; }
.nav-toggle span:nth-child(3){ top:18px; }
.nav-open .nav-toggle span:nth-child(1){ transform:translateY(9px) rotate(45deg); background:var(--white); }
.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); background:var(--white); }

@media (max-width:900px){
  .main-nav{
    position:fixed; inset:0 0 0 30%;
    background:var(--wine);
    flex-direction:column;
    justify-content:center;
    gap:32px;
    transform:translateX(100%);
    transition:transform .45s ease;
  }
  .main-nav a{ color:var(--white); font-size:1.1rem; }
  .nav-open .main-nav{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .header-actions .btn-primary{ display:none; }
  .nav-open .header-actions .btn-primary{ display:inline-flex; }
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(180deg, rgba(36,27,29,.55) 0%, rgba(36,27,29,.35) 45%, rgba(36,27,29,.75) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-inner{ max-width:640px; padding-top:80px; }
.hero-inner .eyebrow{ color:var(--gold-light); }
.hero-inner h1{
  font-size:clamp(2.6rem, 6vw, 4.4rem);
  color:var(--white);
  margin-bottom:20px;
}
.hero-inner p{
  font-size:1.15rem;
  color:rgba(255,253,251,.88);
  max-width:480px;
  margin-bottom:36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-scroll-cue{
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,253,251,.75);
}
.hero-scroll-cue .line{
  width:1px; height:40px;
  background:rgba(255,253,251,.5);
  overflow:hidden;
}
.hero-scroll-cue .line::after{
  content:''; display:block; width:100%; height:50%;
  background:var(--gold);
  animation:scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ transform:translateY(-100%); }
  100%{ transform:translateY(200%); }
}

/* ============================================================
   3. BIENVENIDA / FILOSOFÍA
   ============================================================ */
.welcome{ background:var(--cream); text-align:center; }
.welcome .section-lead{ margin:0 auto 60px; }
.welcome-header{ display:flex; flex-direction:column; align-items:center; }

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
  margin-top:20px;
}
.benefit-card{
  background:var(--white);
  border-radius:18px;
  padding:38px 24px;
  border:1px solid var(--cream-2);
  transition:transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px -20px rgba(36,27,29,.25); }
.benefit-icon{
  width:52px; height:52px;
  margin:0 auto 18px;
  color:var(--wine);
}
.benefit-card h3{ font-size:1.05rem; margin-bottom:8px; }
.benefit-card p{ font-size:0.9rem; color:#6b5c59; }

@media (max-width:900px){
  .benefits-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .benefits-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   4. SOBRE NOSOTROS
   ============================================================ */
.about{ background:var(--white); }
.about .container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.about-collage{
  position:relative;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:18px;
}
.about-collage .arch-frame:first-child{ height:420px; }
.about-collage .arch-frame:last-child{ height:200px; align-self:end; }
.about-text p{ color:#5c4c4a; margin-bottom:18px; }
.about-text .btn{ margin-top:10px; }

@media (max-width:900px){
  .about .container{ grid-template-columns:1fr; gap:40px; }
  .about-collage{ order:-1; }
}

/* ============================================================
   5. HORARIO
   ============================================================ */
.hours{
  background:var(--wine);
  color:var(--white);
  position:relative;
}
.hours .container{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}
.hours-intro .eyebrow{ color:var(--gold-light); }
.hours-intro h2{ color:var(--white); }
.hours-intro p{ color:rgba(255,253,251,.8); }
.hours-table{ width:100%; border-collapse:collapse; }
.hours-table tr{ border-bottom:1px solid rgba(255,253,251,.18); }
.hours-table tr:last-child{ border-bottom:none; }
.hours-table td{ padding:16px 6px; font-size:1rem; }
.hours-table td:first-child{ font-weight:700; letter-spacing:0.02em; }
.hours-table td:last-child{ text-align:right; color:var(--gold-light); font-weight:600; }
.hours-table tr.closed td:last-child{ color:rgba(255,253,251,.55); }

@media (max-width:800px){
  .hours .container{ grid-template-columns:1fr; gap:30px; }
}

/* ============================================================
   6. SERVICIOS DESTACADOS
   ============================================================ */
.services{ background:var(--cream); }
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  margin-top:50px;
}
.service-card{
  background:var(--white);
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--cream-2);
  transition:transform var(--transition), box-shadow var(--transition);
}
.service-card:hover{ transform:translateY(-8px); box-shadow:0 24px 44px -22px rgba(36,27,29,.3); }
.service-card .img-wrap{ height:230px; overflow:hidden; }
.service-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.service-card:hover img{ transform:scale(1.06); }
.service-card-body{ padding:26px 24px 30px; }
.service-card-body h3{ font-size:1.2rem; margin-bottom:10px; }
.service-card-body p{ font-size:0.92rem; color:#6b5c59; margin-bottom:16px; }
.service-card-body a{ font-weight:700; font-size:0.85rem; color:var(--wine); }
.service-card-body a::after{ content:' →'; }

@media (max-width:900px){
  .services-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   7. MENÚ DE PRECIOS
   ============================================================ */
.pricing{ background:var(--white); }
.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px 60px;
  margin-top:50px;
}
.price-category h3{
  font-size:1.3rem;
  color:var(--wine);
  border-bottom:2px solid var(--gold);
  padding-bottom:14px;
  margin-bottom:18px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:13px 0;
  border-bottom:1px dashed var(--cream-2);
}
.price-row .name{ font-weight:600; }
.price-row .desc{ display:block; font-size:0.82rem; color:#8a7a76; font-weight:400; margin-top:2px; }
.price-row .amount{ font-weight:700; color:var(--ink); white-space:nowrap; }
.pricing-cta{ text-align:center; margin-top:60px; }

@media (max-width:800px){
  .pricing-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   8. GALERÍA
   ============================================================ */
.gallery{ background:var(--cream); }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:170px;
  gap:16px;
  margin-top:50px;
}
.gallery-item{
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item::after{
  content:'+';
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; color:var(--white);
  background:rgba(122,46,58,0);
  transition:background var(--transition), opacity var(--transition);
  opacity:0;
}
.gallery-item:hover::after{ background:rgba(122,46,58,.45); opacity:1; }
.gallery-item.tall{ grid-row:span 2; }
.gallery-item.wide{ grid-column:span 2; }
.gallery-cta{ text-align:center; margin-top:44px; }

@media (max-width:900px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .gallery-item.wide{ grid-column:span 2; }
}

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(36,27,29,.94);
  display:flex; align-items:center; justify-content:center;
  padding:40px;
  opacity:0; visibility:hidden;
  transition:opacity .3s ease;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:100%; max-height:82vh; border-radius:12px; }
.lightbox-close{
  position:absolute; top:26px; right:30px;
  color:var(--white); font-size:2rem; line-height:1;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  color:var(--white); font-size:2.2rem; padding:10px 16px;
}
.lightbox-prev{ left:12px; }
.lightbox-next{ right:12px; }

/* ============================================================
   9. FRANJA DE MARCAS
   ============================================================ */
.brands{ background:var(--white); padding:60px 0; border-top:1px solid var(--cream-2); border-bottom:1px solid var(--cream-2); }
.brands p.eyebrow{ text-align:center; display:block; margin-bottom:34px; }
.brands-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:30px;
}
.brand-placeholder{
  flex:1;
  min-width:120px;
  text-align:center;
  font-family:var(--font-display);
  font-size:1.3rem;
  color:#b9aca7;
  letter-spacing:0.05em;
}

/* ============================================================
   10. PROPUESTA DE VALOR
   ============================================================ */
.value-prop{ background:var(--blush); }
.value-prop .container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.value-list{ margin-top:26px; }
.value-list li{
  display:flex;
  gap:18px;
  padding:22px 0;
  border-top:1px solid rgba(122,46,58,.18);
}
.value-list li:last-child{ border-bottom:1px solid rgba(122,46,58,.18); }
.value-num{
  font-family:var(--font-display);
  font-size:1.4rem;
  color:var(--wine);
  min-width:36px;
}
.value-list h3{ font-size:1.1rem; margin-bottom:6px; }
.value-list p{ font-size:0.92rem; color:#6b4a4f; }
.value-image .arch-frame{ height:520px; }

@media (max-width:900px){
  .value-prop .container{ grid-template-columns:1fr; gap:40px; }
  .value-image{ order:-1; }
  .value-image .arch-frame{ height:340px; }
}

/* ============================================================
   11. TESTIMONIOS
   ============================================================ */
.testimonials{ background:var(--ink); color:var(--white); }
.testimonials .eyebrow{ color:var(--gold-light); }
.testimonials .section-title{ color:var(--white); }
.testimonials .section-lead{ color:rgba(255,253,251,.7); }
.testimonial-track{
  display:flex;
  gap:26px;
  margin-top:50px;
  overflow-x:auto;
  padding-bottom:16px;
  scroll-snap-type:x mandatory;
}
.testimonial-track::-webkit-scrollbar{ height:6px; }
.testimonial-track::-webkit-scrollbar-thumb{ background:var(--wine); border-radius:6px; }
.testimonial-card{
  scroll-snap-align:start;
  flex:0 0 min(340px, 82vw);
  background:#332528;
  border-radius:18px;
  padding:32px 28px;
  border:1px solid rgba(198,161,91,.25);
}
.testimonial-stars{ color:var(--gold); font-size:0.95rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card p.quote{ font-size:0.98rem; color:rgba(255,253,251,.9); margin-bottom:22px; }
.testimonial-person{ display:flex; align-items:center; gap:14px; }
.testimonial-person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.testimonial-person .name{ font-weight:700; font-size:0.92rem; }
.testimonial-person .time{ font-size:0.78rem; color:rgba(255,253,251,.55); }

/* ============================================================
   12. BANNER DE PROMOCIÓN
   ============================================================ */
.promo{
  background:
    linear-gradient(120deg, rgba(122,46,58,.92), rgba(90,32,41,.94)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover;
  color:var(--white);
  text-align:center;
  padding:90px 0;
}
.promo .eyebrow{ color:var(--gold-light); }
.promo h2{ color:var(--white); font-size:clamp(1.8rem,4vw,2.6rem); max-width:700px; margin:0 auto 16px; }
.promo p{ color:rgba(255,253,251,.85); max-width:520px; margin:0 auto 34px; }

/* ============================================================
   13. BLOG
   ============================================================ */
.blog{ background:var(--cream); }
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}
.blog-card{ background:var(--white); border-radius:18px; overflow:hidden; border:1px solid var(--cream-2); }
.blog-card .img-wrap{ height:190px; overflow:hidden; }
.blog-card img{ width:100%; height:100%; object-fit:cover; }
.blog-card-body{ padding:24px; }
.blog-meta{ display:flex; gap:12px; font-size:0.76rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--wine); font-weight:700; margin-bottom:10px; }
.blog-meta .date{ color:#9a8985; font-weight:600; }
.blog-card h3{ font-size:1.1rem; margin-bottom:10px; }
.blog-card p{ font-size:0.9rem; color:#6b5c59; }

@media (max-width:900px){ .blog-grid{ grid-template-columns:1fr; } }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer{ background:var(--ink); color:rgba(255,253,251,.75); padding:90px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.3fr;
  gap:50px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(255,253,251,.12);
}
.footer-col h4{ color:var(--white); font-size:1rem; margin-bottom:20px; letter-spacing:0.02em; }
.footer-logo{ font-family:var(--font-display); font-size:1.5rem; color:var(--white); margin-bottom:14px; display:block; }
.footer-logo span{ color:var(--gold); }
.footer-col p{ font-size:0.9rem; margin-bottom:10px; line-height:1.7; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col ul a{ font-size:0.9rem; transition:color var(--transition); }
.footer-col ul a:hover{ color:var(--gold-light); }
.social-row{ display:flex; gap:14px; margin-top:18px; }
.social-row a{
  width:38px; height:38px;
  border:1px solid rgba(255,253,251,.25);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background var(--transition), border-color var(--transition);
}
.social-row a:hover{ background:var(--wine); border-color:var(--wine); }
.map-embed{ border-radius:14px; overflow:hidden; margin-top:18px; filter:grayscale(0.3) contrast(1.1); }
.map-embed iframe{ width:100%; height:180px; border:0; display:block; }

.insta-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:16px; }
.insta-grid img{ border-radius:6px; aspect-ratio:1; object-fit:cover; }

.newsletter-form{ margin-top:18px; display:flex; gap:0; border-radius:100px; overflow:hidden; border:1px solid rgba(255,253,251,.25); }
.newsletter-form input{
  flex:1; background:transparent; border:none; padding:13px 18px;
  color:var(--white); font-family:inherit; font-size:0.88rem;
}
.newsletter-form input::placeholder{ color:rgba(255,253,251,.5); }
.newsletter-form button{ background:var(--gold); color:var(--ink); padding:0 22px; font-weight:700; font-size:0.85rem; }
.newsletter-note{ font-size:0.78rem; margin-top:10px; color:rgba(255,253,251,.5); }
.form-success{ font-size:0.85rem; color:var(--gold-light); margin-top:10px; display:none; }
.form-success.show{ display:block; }

.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:14px;
  padding:26px 0;
  font-size:0.8rem;
  color:rgba(255,253,251,.5);
}
.footer-bottom a{ color:rgba(255,253,251,.7); }

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================================ */
.whatsapp-float{
  position:fixed;
  bottom:26px; right:26px;
  z-index:1500;
  width:60px; height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -8px rgba(0,0,0,.4);
  transition:transform var(--transition);
  animation:pulseWa 2.4s ease-in-out infinite;
}
.whatsapp-float:hover{ transform:scale(1.08); }
@keyframes pulseWa{
  0%,100%{ box-shadow:0 10px 26px -8px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50%{ box-shadow:0 10px 26px -8px rgba(0,0,0,.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* modal simple de reserva (formulario) */
.booking-modal{
  position:fixed; inset:0; z-index:2100;
  background:rgba(36,27,29,.6);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; visibility:hidden;
  transition:opacity .3s ease;
}
.booking-modal.is-open{ opacity:1; visibility:visible; }
.booking-card{
  background:var(--white);
  border-radius:20px;
  max-width:440px; width:100%;
  padding:40px 34px;
  position:relative;
  transform:translateY(20px);
  transition:transform .3s ease;
}
.booking-modal.is-open .booking-card{ transform:translateY(0); }
.booking-card h3{ margin-bottom:8px; }
.booking-card p{ font-size:0.9rem; color:#6b5c59; margin-bottom:24px; }
.booking-card .close-modal{ position:absolute; top:18px; right:20px; font-size:1.5rem; color:#8a7a76; }
.booking-form{ display:flex; flex-direction:column; gap:14px; }
.booking-form input, .booking-form select, .booking-form textarea{
  padding:13px 16px; border-radius:10px; border:1px solid #e2d6d1;
  font-family:inherit; font-size:0.9rem; background:var(--cream);
}
.booking-form textarea{ resize:vertical; min-height:80px; }
.booking-form button{ margin-top:6px; }

/* utilidades */
.lazy-fade{ opacity:0; transition:opacity .5s ease; }
.lazy-fade.loaded{ opacity:1; }