/* ============================================================
   BAREA Studio — Estilos principales
   Minimalista · Negro/Blanco · Acento rosa coral
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --ink-soft: #555;
  --gray: #8a8a8a;
  --line: #ececec;
  --cream: #faf7f4;
  --white: #ffffff;

  --coral: #ff6b9d;
  --coral-soft: #ffb4c2;
  --coral-pale: #ffe6ec;
  --butter: #fff2c9;

  --grad-glow: radial-gradient(circle at 50% 42%, #ff6b9d 0%, #ffb4c2 35%, #fff2c9 65%, transparent 80%);
  --grad-hero: radial-gradient(ellipse at 50% 40%, #ffd9e2 0%, #fff2c9 40%, #ffffff 75%);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { opacity: .75; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: .5px; color: var(--black); }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.5rem; }
.eyebrow { font-size: .75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--coral); font-weight: 500; font-family: var(--font-body); }
.script { font-family: var(--font-script); font-size: 1.8rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border-radius: 999px; font-size: .9rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,157,0.35); opacity: 1; }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); opacity: 1; }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--black); transform: translateY(-2px); opacity: 1; }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--coral); }
.btn-sm { padding: 10px 20px; font-size: .75rem; }
.btn-block { width: 100%; }

/* ---------- Navegación ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, border-color .25s ease;
}
.nav.scrolled { padding: 14px 0; border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 4px; font-weight: 500; }
.nav-brand span { color: var(--coral); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--coral); transform: scaleX(0); transition: transform .25s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; font-size: 1.5rem; color: var(--black); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn:not(.btn-coral) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 24px; border-bottom: 1px solid var(--line); gap: 20px;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; padding-top: 90px; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--grad-hero);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,107,157,0.45) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-text .eyebrow { margin-bottom: 20px; display: inline-block; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text h1 em { font-style: italic; color: var(--coral); }
.hero-text p { color: var(--ink-soft); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo-wrap { position: relative; width: 100%; max-width: 520px; }
.hero-logo-wrap::before {
  content: ''; position: absolute; inset: -10% -10% -10% -10%;
  background: var(--grad-glow); filter: blur(40px); opacity: .8; z-index: 0;
}
.hero-logo-wrap img { position: relative; z-index: 1; }

.hero-meta { position: absolute; bottom: 40px; left: 0; right: 0; z-index: 2; }
.hero-meta-inner { display: flex; justify-content: space-between; gap: 24px; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; padding-bottom: 40px; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-meta { display: none; }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

/* ---------- Services ---------- */
#servicios { background: var(--cream); }

.services-cat-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.services-cat-tab {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-size: .8rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; color: var(--ink-soft);
  transition: all .25s ease;
}
.services-cat-tab:hover { border-color: var(--coral); color: var(--coral); }
.services-cat-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--line); transition: all .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--coral-soft);
}
.service-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 12px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0; flex: 1; }
.service-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--coral); font-weight: 500; white-space: nowrap; }
.service-card .duration { font-size: .8rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 20px; }
.service-card .btn { align-self: flex-start; }

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.gallery-filter {
  padding: 8px 20px; border-radius: 999px; background: transparent;
  font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); transition: all .25s ease;
}
.gallery-filter:hover { color: var(--coral); }
.gallery-filter.active { color: var(--black); font-weight: 600; }
.gallery-filter.active::after {
  content: ''; display: block; height: 2px; width: 30px; background: var(--coral);
  margin: 6px auto 0;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; background: var(--cream); cursor: zoom-in;
}
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease; z-index: 1;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end;
  padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 50%);
  color: var(--white); opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }

.gallery-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--coral-pale), var(--butter));
  color: var(--coral); font-family: var(--font-display); font-size: 1.1rem;
  z-index: 0; padding: 20px; text-align: center;
}

.gallery-empty {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  background: linear-gradient(135deg, var(--coral-pale), var(--butter));
  border-radius: var(--radius-lg); color: var(--ink-soft);
}
.gallery-empty-icon { font-size: 3rem; margin-bottom: 10px; }
.gallery-empty h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; color: var(--black); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.95);
  display: none; align-items: center; justify-content: center; z-index: 300;
  padding: 40px; opacity: 0; transition: opacity .3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-figure {
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lightbox-figure img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-figure figcaption {
  color: var(--white); font-family: var(--font-display); font-size: 1.2rem; text-align: center;
}
.lightbox-close, .lightbox-nav {
  position: absolute; top: 30px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s ease; cursor: pointer;
}
.lightbox-close:hover { background: var(--coral); }
.lightbox-nav {
  top: 50%; transform: translateY(-50%); right: auto;
  font-size: 2rem;
}
.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }
.lightbox-nav:hover { background: var(--coral); }
@media (max-width: 700px) {
  .lightbox-nav { width: 36px; height: 36px; font-size: 1.5rem; }
  .lightbox-nav.prev { left: 12px; }
  .lightbox-nav.next { right: 12px; }
  .lightbox-close { top: 14px; right: 14px; }
}

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

/* ---------- About ---------- */
#sobre-mi { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #ffd9e2, #fff2c9); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-visual::after {
  content: ''; position: absolute; inset: 15%; border-radius: var(--radius-lg);
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%); opacity: .4;
}
.about-visual .initial {
  font-family: var(--font-display); font-size: 14rem; color: var(--black);
  position: relative; z-index: 1; font-weight: 500;
}
.about-text .eyebrow { margin-bottom: 16px; display: inline-block; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.05rem; }
.about-text .signature { font-family: var(--font-script); font-size: 2rem; color: var(--coral); margin-top: 20px; }
.about-stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.about-stat { }
.about-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--black); line-height: 1; }
.about-stat-label { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

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

/* ---------- Testimonios ---------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial {
  padding: 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); position: relative;
}
.testimonial-stars { color: var(--coral); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin-bottom: 24px; }
.testimonial-text::before { content: '"'; font-size: 3rem; color: var(--coral); line-height: 0; vertical-align: -20px; margin-right: 4px; }
.testimonial-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 16px; font-size: .85rem; }
.testimonial-meta strong { color: var(--black); }
.testimonial-meta span { color: var(--gray); }

/* ---------- Contact ---------- */
#contacto { background: var(--black); color: var(--white); }
#contacto h2, #contacto h3 { color: var(--white); }
#contacto .section-head .eyebrow { color: var(--coral-soft); }
#contacto .section-head p { color: rgba(255,255,255,0.7); }

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px;
  max-width: 900px; margin: 0 auto;
}
.contact-card {
  text-align: center; padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  transition: all .3s ease;
}
.contact-card:hover {
  border-color: var(--coral); background: rgba(255,107,157,0.05);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,107,157,0.12); color: var(--coral);
  font-size: 1.5rem;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.contact-card p { color: rgba(255,255,255,0.7); font-size: .95rem; margin-bottom: 12px; }
.contact-card a { color: var(--coral-soft); font-weight: 500; }

/* ---------- Footer ---------- */
footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: .85rem;
}
footer a { color: var(--coral-soft); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .25s ease;
  font-size: 1.6rem;
}
.wa-float:hover { transform: scale(1.1); opacity: 1; }
.wa-float::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; opacity: .4;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,10,10,0.65);
  backdrop-filter: blur(4px); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
  animation: modalIn .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--ink); font-size: 1.2rem; z-index: 2;
}
.modal-close:hover { background: var(--coral); color: var(--white); }
.modal-body { padding: 40px; }
.modal-header { text-align: center; margin-bottom: 32px; }
.modal-header h2 { font-size: 2rem; margin-bottom: 8px; }
.modal-header p { color: var(--ink-soft); }

/* Booking flow */
.booking-steps {
  display: flex; justify-content: space-between; margin-bottom: 30px; position: relative;
}
.booking-steps::before {
  content: ''; position: absolute; top: 12px; left: 12px; right: 12px;
  height: 2px; background: var(--line); z-index: 0;
}
.booking-step {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1;
}
.booking-step-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .8rem; color: var(--gray); transition: all .25s ease;
}
.booking-step.active .booking-step-num { background: var(--black); border-color: var(--black); color: var(--white); }
.booking-step.done .booking-step-num { background: var(--coral); border-color: var(--coral); color: var(--white); }
.booking-step-label { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.booking-step.active .booking-step-label { color: var(--black); }

.booking-panel { display: none; }
.booking-panel.active { display: block; }

.svc-option {
  padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 10px; cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: all .2s ease; background: #fff;
}
.svc-option:hover { border-color: var(--coral); background: var(--coral-pale); }
.svc-option.selected { border-color: var(--coral); background: var(--coral-pale); box-shadow: 0 0 0 2px var(--coral) inset; }
.svc-option .svc-check { width: 18px; height: 18px; accent-color: var(--coral); flex-shrink: 0; cursor: pointer; }
.svc-option-info { flex: 1; }
.svc-option-info strong { display: block; margin-bottom: 4px; color: var(--black); }
.svc-option-info small { color: var(--gray); letter-spacing: 1px; text-transform: uppercase; font-size: .7rem; }
.svc-option-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--coral); white-space: nowrap; }

.svc-cat-group { margin-bottom: 20px; }
.svc-cat-group > h4 { font-family: var(--font-body); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }

/* Booking extras (decoraciones) */
.booking-help { color: var(--gray); font-size: .9rem; margin-bottom: 18px; }
.booking-extras-wrap { margin-top: 28px; padding: 20px; background: linear-gradient(135deg, rgba(255,107,157,.05), rgba(255,107,157,.02)); border: 1px dashed var(--coral); border-radius: var(--radius-sm); }
.booking-extras-head { margin-bottom: 16px; }
.booking-extras-head h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--black); margin-bottom: 4px; font-weight: 500; }
.booking-extras-head p { color: var(--gray); font-size: .85rem; margin: 0; }
.svc-cat-extra > h4 { color: var(--coral); }

/* Totals bar */
.booking-totals-bar {
  position: sticky; bottom: 0; margin-top: 22px; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--black); color: #fff; border-radius: var(--radius-sm);
  font-family: var(--font-body); transition: opacity .2s; z-index: 2;
}
.booking-totals-bar.empty { background: var(--cream); color: var(--gray); border: 1px dashed var(--line); }
.booking-totals-empty { font-size: .9rem; font-style: italic; }
.booking-totals-meta { font-size: .95rem; letter-spacing: .5px; }
.booking-totals-meta strong { color: var(--coral); font-weight: 600; }
.booking-totals-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--coral); }
.booking-summary-extra { color: var(--coral); }
.booking-summary-total { border-top: 2px solid var(--coral); padding-top: 10px; margin-top: 6px; font-size: 1.1rem; }

/* Calendar */
.calendar {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px;
}
.calendar-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.calendar-head strong { font-family: var(--font-display); font-size: 1.2rem; }
.calendar-nav-btn {
  width: 32px; height: 32px; border-radius: 50%; background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
}
.calendar-nav-btn:hover { background: var(--coral); color: var(--white); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-dow { text-align: center; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); padding: 6px 0; }
.calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: .9rem; cursor: pointer; transition: all .15s ease;
  background: transparent; color: var(--ink);
}
.calendar-day:hover:not(.disabled) { background: var(--coral-pale); color: var(--coral); }
.calendar-day.disabled { color: #ccc; cursor: not-allowed; }
.calendar-day.selected { background: var(--black); color: var(--white); }
.calendar-day.today { font-weight: 700; outline: 1px solid var(--coral); }
.calendar-day.other-month { opacity: .25; }

.time-slots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px;
}
.time-slot {
  padding: 10px; text-align: center; border: 1px solid var(--line);
  border-radius: 8px; font-size: .9rem; cursor: pointer; transition: all .2s ease;
  background: var(--white);
}
.time-slot:hover:not(.disabled) { border-color: var(--coral); color: var(--coral); }
.time-slot.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.time-slot.disabled { color: #ccc; cursor: not-allowed; text-decoration: line-through; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; color: var(--ink-soft); font-weight: 500; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit;
  transition: border-color .2s ease; background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--coral); }
textarea.form-control { resize: vertical; min-height: 80px; }

.booking-summary {
  background: var(--cream); border-radius: var(--radius-sm); padding: 20px;
  margin-bottom: 20px; font-size: .95rem;
}
.booking-summary-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.booking-summary-row:last-child { border-bottom: 0; font-weight: 600; font-size: 1.1rem; }

.booking-actions {
  display: flex; justify-content: space-between; gap: 12px; margin-top: 24px;
}

.booking-success {
  text-align: center; padding: 20px 0;
}
.booking-success-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--coral-pale);
  color: var(--coral); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 20px;
}
.booking-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.booking-success p { color: var(--ink-soft); margin-bottom: 24px; }

/* Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--white); padding: 14px 24px;
  border-radius: 999px; font-size: .9rem; z-index: 300; opacity: 0;
  transition: opacity .3s ease, bottom .3s ease; pointer-events: none;
}
.toast.show { opacity: 1; bottom: 50px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .modal-body { padding: 28px 20px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-actions { flex-direction: column-reverse; }
  .booking-actions .btn { width: 100%; }
}
