:root {
  --page-bg: #faf6f0;
  --page-bg-alt: #f5efe6;
  --page-bg-deep: #fbf6ef;
  --surface-card: #ffffff;
  --surface-raised: #fbf7f2;
  --surface-strong: #101010;
  --surface-inverse: #1c1714;
  --accent: #f28c38;
  --accent-hover: #e07820;
  --accent-secondary: #2abba7;
  --accent-secondary-hover: #229e8d;
  --text-primary: #1a1a1a;
  --text-secondary: #5f5f5f;
  --text-light: #8e8e8e;
  --text-on-accent: #fffaf4;
  --stars: #ffb800;
  --success: #157347;
  --warning: #b96d10;
  --danger: #c0392b;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(255, 255, 255, 0.34);
  --border-soft: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);
  --overlay-backdrop: rgba(15, 15, 20, 0.72);
  --overlay-surface: rgba(255, 255, 255, 0.9);
  --overlay-border: rgba(255, 255, 255, 0.4);
  --overlay-close-bg: rgba(0, 0, 0, 0.06);
  --overlay-close-bg-hover: rgba(0, 0, 0, 0.12);
  --focus-ring: rgba(242, 140, 56, 0.12);
  --input-placeholder: #8e8e8e;
  --footer-logo-color: #fffaf4;
  --footer-logo-shell-bg: rgba(255, 255, 255, 0.96);
  --footer-logo-shell-border: rgba(0, 0, 0, 0.05);
  --map-filter: none;
  --bg-primary: var(--page-bg);
  --bg-white: var(--surface-card);
  --surface-soft: var(--page-bg-alt);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --nav-scroll-offset: 96px;
  --transition: 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  --display-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-scroll-offset);
  font-size: 16px;
  color-scheme: light dark;
  overflow-x: hidden;
  /* iOS overscroll past the bottom reveals the html background.
     Match the footer dark surface so the rubber-band bounce is seamless. */
  background-color: #101010;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

#sobre-mi,
#servicios,
#resenas,
#faq,
#agenda,
#contacto {
  scroll-margin-top: var(--nav-scroll-offset);
}

body {
  font-family: var(--body-font);
  background-color: var(--page-bg);
  background:
    radial-gradient(circle at top left, rgba(242, 140, 56, 0.1), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(42, 187, 167, 0.09), transparent 22%),
    linear-gradient(180deg, #fdfaf5 0%, var(--bg-primary) 40%, var(--page-bg-deep) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.menu-open {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Ambient wash ──────────────────────────────────────────────
   Two tonal washes that float behind all content.
   PERF: radial-gradient paints once on the raster layer; motion is
   compositor-only (translate3d).  No filter / no blur / no repaint.
   ────────────────────────────────────────────────────────────── */
.page-aura {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  animation: drift 28s ease-in-out infinite;
}

.page-aura-1 {
  top: -18vh;
  right: -12vw;
  width: min(64rem, 110vw);
  height: min(48rem, 80vh);
  background:
    radial-gradient(
      ellipse 78% 56% at 68% 38%,
      rgba(242, 140, 56, 0.10) 0%,
      rgba(242, 140, 56, 0.04) 40%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 50% 70% at 44% 60%,
      rgba(255, 196, 140, 0.05) 0%,
      transparent 65%
    );
  --aura-shift-x: 18px;
  --aura-shift-y: -12px;
}

.page-aura-2 {
  left: -14vw;
  bottom: 6vh;
  width: min(56rem, 100vw);
  height: min(40rem, 70vh);
  background:
    radial-gradient(
      ellipse 70% 55% at 34% 58%,
      rgba(42, 187, 167, 0.085) 0%,
      rgba(42, 187, 167, 0.03) 42%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 48% 65% at 56% 36%,
      rgba(158, 232, 220, 0.04) 0%,
      transparent 62%
    );
  --aura-shift-x: -16px;
  --aura-shift-y: 14px;
  animation-duration: 34s;
  animation-delay: -16s;
}

img {
  display: block;
  max-width: 100%;
}

.site-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon,
.btn-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: none;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.summary-icon-check {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
  color: var(--success);
}

.btn-icon-lock,
.payment-secure-icon,
.payment-method-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: none;
}

.booking-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.booking-summary-body {
  padding-left: 30px;
}

.booking-summary-mode {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
}

.booking-summary-slot {
  display: block;
  font-size: 0.9rem;
}

.lottie-icon {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

a {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--input-placeholder);
}

.nav-logo:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.section-link:focus-visible,
.booking-mode-button:focus-visible,
.booking-slot:focus-visible,
.booking-submit:focus-visible,
.booking-date-input:focus-visible,
.booking-field input:focus-visible,
.faq-question:focus-visible,
.contact-item-value a:focus-visible,
.footer-links a:focus-visible,
.payment-overlay-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Only transition safe visual props — never backdrop-filter, which triggers
     compositor layer recreation and causes logo to jump/clip on iOS scroll. */
  transition:
    background-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-bottom-color 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background-color, box-shadow;
}

.navbar.scrolled {
  /* PERF: replaced scroll-time backdrop blur with a denser glass fill to avoid
     repeated blur recomposition while keeping the same visual hierarchy. */
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.brand-logo-picture {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo-picture .brand-logo-image {
  flex: 0 0 auto;
}

.brand-logo-image--nav {
  height: clamp(56px, 6vw, 72px);
  width: auto;
  position: relative;
  z-index: 2;
}

.nav-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 102;
}

/* Nav Logo Energy Particles */
/* Nav Logo Energy Particles Container */
.logo-particles-container {
  position: absolute;
  inset: -15px;
  pointer-events: none;
  z-index: 1;
}

.energy-particle {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 4px 1px rgba(242, 140, 56, 0.6);
  opacity: 0;
  animation: energySwarm 4s infinite linear;
}

/* Staggered positions and timings for 20 particles (Dust effect) */
.energy-particle:nth-child(1)  { top: 20%; left: 80%; animation-delay: 0s; width: 2px; height: 2px; }
.energy-particle:nth-child(2)  { top: 60%; left: -5%; animation-delay: -0.8s; width: 1px; height: 1px; }
.energy-particle:nth-child(3)  { top: 10%; left: 10%; animation-delay: -1.6s; width: 1.2px; height: 1.2px; }
.energy-particle:nth-child(4)  { top: 85%; left: 40%; animation-delay: -2.4s; width: 1.5px; height: 1.5px; }
.energy-particle:nth-child(5)  { top: 40%; left: 95%; animation-delay: -3.2s; width: 2px; height: 2px; background: #ffb800; }
.energy-particle:nth-child(6)  { top: 15%; left: 50%; animation-delay: -0.4s; width: 1px; height: 1px; }
.energy-particle:nth-child(7)  { top: 75%; left: 90%; animation-delay: -1.2s; width: 1.2px; height: 1.2px; }
.energy-particle:nth-child(8)  { top: 5%;  left: 70%; animation-delay: -2.0s; width: 1.5px; height: 1.5px; }
.energy-particle:nth-child(9)  { top: 90%; left: 10%; animation-delay: -2.8s; width: 2px; height: 2px; background: #fff; }
.energy-particle:nth-child(10) { top: 50%; left: -10%; animation-delay: -3.6s; width: 1px; height: 1px; }
.energy-particle:nth-child(11) { top: 30%; left: 20%; animation-delay: -0.2s; width: 1.5px; height: 1.5px; }
.energy-particle:nth-child(12) { top: 70%; left: 15%; animation-delay: -1.0s; width: 1px; height: 1px; }
.energy-particle:nth-child(13) { top: 25%; left: 60%; animation-delay: -1.8s; width: 1.2px; height: 1.2px; }
.energy-particle:nth-child(14) { top: 80%; left: 70%; animation-delay: -2.6s; width: 1.5px; height: 1.5px; }
.energy-particle:nth-child(15) { top: 35%; left: 85%; animation-delay: -3.4s; width: 2px; height: 2px; background: #fff; }
.energy-particle:nth-child(16) { top: 45%; left: 45%; animation-delay: -0.6s; width: 1px; height: 1px; }
.energy-particle:nth-child(17) { top: 55%; left: 75%; animation-delay: -1.4s; width: 1.2px; height: 1.2px; }
.energy-particle:nth-child(18) { top: 65%; left: 30%; animation-delay: -2.2s; width: 1.5px; height: 1.5px; }
.energy-particle:nth-child(19) { top: 15%; left: 90%; animation-delay: -3.0s; width: 2px; height: 2px; background: #ffb800; }
.energy-particle:nth-child(20) { top: 95%; left: 60%; animation-delay: -3.8s; width: 1px; height: 1px; }

.is-offscreen * { animation-play-state: paused !important; }

@keyframes energySwarm {
  0% { transform: translate(0, 0) scale(0.4) rotate(0deg); opacity: 0; }
  20% { opacity: 0.6; }
  50% { transform: translate(12px, -15px) scale(1) rotate(180deg); opacity: 0.9; }
  80% { opacity: 0.4; }
  100% { transform: translate(-8px, -30px) scale(0.3) rotate(360deg); opacity: 0; }
}


.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn-primary,
.btn-secondary,
.section-link,
.booking-mode-button,
.booking-slot,
.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform-origin: center;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta,
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.92rem;
}

.btn-primary {
  padding: 14px 24px;
  font-size: 0.98rem;
  box-shadow: 0 10px 24px rgba(242, 140, 56, 0.2);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(242, 140, 56, 0.26);
}

.nav-cta::before,
.btn-primary::before,
.btn-secondary::before,
.section-link::before,
.booking-mode-button::before,
.booking-slot::before,
.booking-submit::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 75%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-cta:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.section-link:hover::before,
.booking-mode-button:hover::before,
.booking-slot:hover::before,
.booking-submit:hover::before {
  transform: translateX(220%);
}

.nav-cta:active,
.btn-primary:active,
.btn-secondary:active,
.section-link:active,
.booking-mode-button:active,
.booking-slot:active,
.booking-submit:active {
  transform: translateY(1px) scale(0.965);
}

.nav-cta:active::before,
.btn-primary:active::before,
.btn-secondary:active::before,
.section-link:active::before,
.booking-mode-button:active::before,
.booking-slot:active::before,
.booking-submit:active::before {
  opacity: 0.7;
}

.ripple-effect {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 0;
  animation: rippleBurst 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn-secondary .ripple-effect,
.section-link .ripple-effect,
.booking-mode-button .ripple-effect,
.booking-slot .ripple-effect {
  background: rgba(242, 140, 56, 0.18);
}

.nav-cta > *,
.btn-primary > *,
.btn-secondary > *,
.section-link > *,
.booking-mode-button > *,
.booking-slot > *,
.booking-submit > * {
  position: relative;
  z-index: 1;
}

.btn-secondary,
.section-link {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
}

.btn-secondary {
  padding: 14px 24px;
}

.btn-secondary:hover,
.section-link:hover {
  border-color: rgba(0, 0, 0, 0.16);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 4px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.is-menu-open {
  background: rgba(250, 246, 240, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-sm);
  /* No backdrop-filter: it makes navbar the containing block for
     position:fixed children (nav-links), breaking its full-height layout. */
}

/* When menu is open, also suppress the scrolled backdrop-filter */
.navbar.scrolled.is-menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 96px 20px 56px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -220px;
  right: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(242, 140, 56, 0.1) 0%, transparent 72%);
}

.hero::after {
  left: -100px;
  top: clamp(300px, 50vh, 550px); /* was bottom:-120px; anchored to vh so position is stable during hero-height settling (CLS fix) */
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(42, 187, 167, 0.12) 0%, transparent 72%);
}

.hero-container,
.section,
.reviews-header,
.footer-content,
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(340px, 100%), 480px);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  /* PERF: no backdrop blur here; a slightly stronger translucent fill preserves
     the premium glass feel without sampling the pixels underneath each frame. */
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease forwards;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.hero-badge .stars,
.review-stars {
  color: var(--stars);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-family: var(--display-font);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-tagline {
  max-width: 620px;
  font-size: 1.04rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 6px;
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-float-card {
  position: absolute;
  min-width: 162px;
  padding: 16px 18px;
  border-radius: 18px;
  /* PERF: swapped backdrop blur for an opaque-enough tint so the floating cards
     still read as glass but no longer trigger expensive background sampling. */
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card.card-1 {
  left: 12px;
  bottom: 16px;
}

.float-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.float-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2px;
}

.accent {
  color: var(--accent);
}

.section {
  padding: 92px 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 14px;
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-desc {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.about-grid,
.contact-grid,
.booking-layout {
  display: grid;
  gap: 40px;
}

.about-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(min(280px, 100%), 0.8fr);
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-card,
.service-card,
.calendar-card,
.contact-item,
.booking-panel,
.booking-form {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.about-card {
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

/* --- React Bits Border Glow Vanilla Implementation --- */
.border-glow {
  position: relative;
  /* Isolated stack context so pseudo borders sit correctly */
  z-index: 1;
}

/* Ensure children sit above the glow pseudo-element */
.border-glow > * {
  position: relative;
  z-index: 2;
}

.border-glow::after {
  content: "";
  position: absolute;
  inset: -1px; /* Slightly overlap existing border */
  border-radius: inherit;
  padding: 1.6px; /* Width of the glowing border */
  /* Multi-color gradient matching user requested aesthetic */
  background: radial-gradient(
    var(--glow-radius, 140px) circle at var(--x, 50%) var(--y, 50%),
    #c084fc 0%,
    #f472b6 30%,
    #38bdf8 60%,
    rgba(242, 140, 56, 1) 90%,
    transparent 100%
  );
  /* The mask isolates the gradient to JUST the border stroke */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: var(--glow-opacity, 0);
  transition: opacity 0.4s ease;
  z-index: 1;
}

.border-glow:hover::after {
  --glow-opacity: 1;
}
/* ----------------------------------------------------- */


.about-card-icon,
.service-icon,
.calendar-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.12), rgba(42, 187, 167, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.about-card-icon .ui-icon,
.service-icon .ui-icon,
.calendar-icon .ui-icon {
  width: 26px;
  height: 26px;
}

.about-card-title {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-card-value {
  margin-top: 6px;
  font-weight: 700;
}

.services-bg,
.contact-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 236, 0.96));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.calendar-card::before,
.contact-item::before,
.booking-panel::before,
.booking-form::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 116, 47, 0), rgba(216, 116, 47, 0.62), rgba(25, 141, 131, 0));
}

.service-card:hover,
.calendar-card:hover,
.contact-item:hover,
.review-link:hover,
.booking-panel:hover,
.booking-form:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.specialty-chip {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 0.94rem;
  transition: var(--transition);
  box-shadow: 0 8px 18px rgba(58, 31, 15, 0.04);
}

.specialty-chip:hover {
  border-color: rgba(242, 140, 56, 0.36);
  color: var(--accent);
  background: rgba(242, 140, 56, 0.06);
}

.conditions-title {
  margin-top: 38px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 10px;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.condition-item::before {
  content: '✓';
  color: var(--accent-secondary);
  font-weight: 700;
}

.reviews-bg {
  overflow: hidden;
  position: relative;
}

.reviews-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 116, 47, 0.08), transparent 24%),
    radial-gradient(circle at 85% 85%, rgba(25, 141, 131, 0.08), transparent 26%);
  pointer-events: none;
}

.reviews-header {
  padding: 96px 40px 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.reviews-desc {
  max-width: 620px;
}

.section-link {
  padding: 12px 18px;
  white-space: nowrap;
}

.reviews-track-wrapper {
  overflow: hidden;
  padding: 12px 0 100px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 56s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  min-width: 340px;
  max-width: 380px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(247, 239, 229, 0.98));
  border: 1px solid rgba(62, 35, 18, 0.06);
  box-shadow: 0 18px 30px rgba(53, 29, 13, 0.08);
}

.review-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.review-link:hover {
  transform: translateY(-3px);
}

.review-stars {
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.review-text {
  min-height: 0;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  font-weight: 700;
}

.review-name {
  font-weight: 700;
}

.review-date {
  font-size: 0.82rem;
  color: var(--text-light);
}

.avena-badge {
  margin-top: 14px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #e76f51;
  background: rgba(231, 111, 81, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
}

.avena-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-cta {
  display: inline-flex;
  margin-top: 12px;
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.calendar-card {
  padding: 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.calendar-card-dark {
  background: var(--surface-strong);
  color: rgba(255, 255, 255, 0.94);
}

.calendar-card-dark p,
.calendar-card-dark h3 {
  color: inherit;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.12), rgba(42, 187, 167, 0.08));
  font-size: 1.45rem;
  animation: iconLoop 6.6s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-icon-svg {
  color: var(--accent);
}

.calendar-card-dark .calendar-icon {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.loop-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.loop-icon rect,
.loop-icon path,
.loop-icon circle {
  vector-effect: non-scaling-stroke;
}

.loop-icon-calendar rect,
.loop-icon-calendar path,
.loop-icon-pin path,
.loop-icon-camera rect,
.loop-icon-camera path,
.loop-icon-camera circle,
.loop-icon-heart path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loop-icon-pin circle,
.loop-icon-camera circle {
  fill: rgba(242, 140, 56, 0.14);
}

.loop-icon-heart path {
  fill: rgba(242, 140, 56, 0.12);
}

.loop-icon-calendar {
  animation: iconFloat 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
}

.booking-title-icon .loop-icon-calendar {
  width: 34px;
  height: 34px;
}

.loop-icon-pin {
  animation: iconFloat 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center bottom;
}

.loop-icon-camera {
  animation: iconBreath 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
}

.loop-icon-heart {
  animation: iconHeartbeat 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
}

.about-card:hover .about-card-icon,
.service-card:hover .service-icon,
.calendar-card:hover .calendar-icon,
.contact-item:hover .contact-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 18px rgba(242, 140, 56, 0.12);
}

.contact-item:hover .loop-icon,
.calendar-card:hover .loop-icon,
.booking-title-row:hover .loop-icon {
  animation-duration: 3.6s;
}

.calendar-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(42, 187, 167, 0.12);
}

.calendar-badge-dark {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.calendar-card h3 {
  font-size: clamp(1.05rem, 3vw, 1.22rem);
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.calendar-card p {
  color: var(--text-secondary);
  flex-grow: 1;
  overflow-wrap: break-word;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.booking-shell {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(242, 140, 56, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(42, 187, 167, 0.12), transparent 24%),
    var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.booking-shell-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.booking-title-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.booking-title-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.14), rgba(42, 187, 167, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.booking-title-icon .lottie-icon {
  width: 34px;
  height: 34px;
}

.booking-title {
  font-size: clamp(1.15rem, 4vw, 1.7rem);
  line-height: 1.1;
}

.booking-copy {
  max-width: 440px;
  color: var(--text-secondary);
}

.booking-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(min(320px, 100%), 0.86fr);
}

.booking-panel,
.booking-form {
  padding: 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.booking-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.booking-mode-button {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text-primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.booking-mode-button:hover {
  border-color: rgba(242, 140, 56, 0.38);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(242, 140, 56, 0.08);
}

.booking-mode-button.is-active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.booking-field span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.booking-date-input,
.booking-field input {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--surface-card);
  color: var(--text-primary);
  font: inherit;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  line-height: normal;
}

.booking-date-input:focus,
.booking-field input:focus {
  outline: none;
  border-color: rgba(242, 140, 56, 0.56);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.booking-date-input.is-complete,
.booking-field input.is-complete {
  border-color: var(--stars);
  background: rgba(255, 184, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 184, 0, 0.18);
}

.booking-date-input.is-complete:focus,
.booking-field input.is-complete:focus {
  border-color: var(--stars);
  box-shadow:
    0 0 0 4px rgba(255, 184, 0, 0.16),
    inset 0 0 0 1px rgba(255, 184, 0, 0.18);
}

/* Tira de días (selector de fecha inline) */
.booking-field--date {
  gap: 12px;
}

.booking-daystrip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.booking-daystrip::-webkit-scrollbar {
  height: 6px;
}

.booking-daystrip::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 999px;
}

.booking-daystrip::-webkit-scrollbar-track {
  background: transparent;
}

.day-chip {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 58px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: var(--surface-card);
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.day-chip:hover {
  border-color: rgba(242, 140, 56, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(242, 140, 56, 0.1);
}

.day-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 14px rgba(242, 140, 56, 0.28);
}

.day-chip-dow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.day-chip.is-active .day-chip-dow {
  color: rgba(37, 25, 18, 0.65);
}

.day-chip-num {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
}

.day-chip-mon {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  min-height: 0.8rem;
}

.day-chip.is-active .day-chip-mon {
  color: rgba(37, 25, 18, 0.75);
}

.day-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition);
}

/* Punto verde: el día tiene al menos un horario libre */
.day-chip.has-cupo .day-chip-dot {
  background: var(--success);
}

/* Día sin cupo: atenuado (sigue siendo tappable para ver el mensaje) */
.day-chip.is-full {
  opacity: 0.45;
}

.day-chip.is-full:hover {
  opacity: 0.72;
}

.booking-hint {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(42, 187, 167, 0.1);
  color: var(--accent-secondary);
  font-size: 0.92rem;
}

.booking-hint.is-warning {
  background: rgba(242, 140, 56, 0.1);
  color: var(--warning);
}

.booking-hint.is-error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--danger);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(132px, 100%), 1fr));
  gap: 12px;
}

.booking-slot {
  padding: 13px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-card);
  font: inherit;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.booking-slot:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 140, 56, 0.12);
  background: var(--surface-card);
}

.booking-slot:active {
  transform: translateY(0) scale(0.98);
}

.booking-slot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 18px rgba(242, 140, 56, 0.3);
}

/* Destello metálico: barre el slot UNA sola vez al seleccionar.
   Solo anima transform → compositor GPU, cero costo en reposo. */
.booking-slot.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 18%,
    rgba(255, 230, 160, 0.38) 38%,
    rgba(255, 255, 255, 0.26) 50%,
    rgba(255, 230, 160, 0.38) 62%,
    transparent 82%
  );
  transform: translateX(-115%);
  animation: slotSheen 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes slotSheen {
  to { transform: translateX(115%); }
}

/* Skeleton Loaders */
.skeleton-slot {
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--surface-raised) 25%, var(--surface-card) 50%, var(--surface-raised) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

.booking-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 14px;
  background: var(--border-soft);
  font-size: 0.94rem;
}

.booking-empty.is-error {
  background: rgba(192, 57, 43, 0.08);
  color: var(--danger);
}

.booking-empty.is-warning {
  background: rgba(242, 140, 56, 0.1);
  color: var(--warning);
}

.booking-empty.is-loading {
  background: rgba(42, 187, 167, 0.08);
}

.booking-message,
.booking-status-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.booking-message-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(242, 140, 56, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-message-icon .lottie-icon {
  width: 30px;
  height: 30px;
}

.booking-message--loading .booking-message-icon {
  color: #0f6d62;
  background: rgba(42, 187, 167, 0.12);
}

.booking-message--warning .booking-message-icon {
  color: var(--warning);
  background: rgba(242, 140, 56, 0.14);
}

.booking-message--error .booking-message-icon {
  color: var(--danger);
  background: rgba(192, 57, 43, 0.12);
}

.booking-message--success .booking-message-icon {
  color: var(--success);
  background: rgba(21, 115, 71, 0.1);
}

.booking-message-copy {
  display: grid;
  gap: 4px;
}

.booking-message-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-primary);
}

.booking-message-body {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.08), rgba(42, 187, 167, 0.05));
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.booking-summary.is-selected {
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.15), rgba(42, 187, 167, 0.1));
  border-color: rgba(242, 140, 56, 0.2);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(242, 140, 56, 0.08);
}

.booking-summary strong {
  font-size: 1rem;
}

.booking-summary span {
  color: var(--text-secondary);
}

.booking-notices {
  margin-bottom: 18px;
}

.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(242, 140, 56, 0.2);
  background: rgba(242, 140, 56, 0.08);
}

.booking-notice-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(242, 140, 56, 0.14);
}

.booking-notice-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.booking-notice-text strong {
  color: var(--text-primary);
  font-weight: 800;
}

.booking-notice-total {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.booking-submit {
  width: 100%;
  margin-top: 8px;
}

.booking-submit.is-ready {
  background: linear-gradient(
    105deg,
    var(--accent-hover) 0%,
    var(--accent-hover) 38%,
    rgba(255, 220, 170, 0.22) 50%,
    var(--accent-hover) 62%,
    var(--accent-hover) 100%
  );
  background-size: 220% 100%;
  animation: buttonSheen 2.8s infinite ease-in-out;
  box-shadow: 0 4px 20px rgba(242, 140, 56, 0.32);
}

@keyframes buttonSheen {
  0%   { background-position: 200% center; }
  60%  { background-position: -20% center; }
  100% { background-position: -20% center; }
}

.booking-submit.is-loading {
  gap: 10px;
  pointer-events: none;
}

.booking-submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.booking-submit:disabled {
  background: var(--border-strong);
  color: var(--text-light);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

.booking-form-note {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.booking-status {
  min-height: 24px;
  margin-top: 14px;
}

.booking-status-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
}

.booking-status-card--warning {
  border-color: rgba(242, 140, 56, 0.16);
  background: rgba(255, 251, 245, 0.96);
}

.booking-status-card--error {
  border-color: rgba(192, 57, 43, 0.14);
  background: rgba(255, 248, 248, 0.98);
}

.booking-status-card--info {
  border-color: rgba(42, 187, 167, 0.14);
  background: rgba(246, 252, 251, 0.96);
}

.booking-status.is-success {
  color: var(--success);
}

.booking-status.is-error {
  color: var(--danger);
}

.booking-status.is-info {
  color: var(--text-secondary);
}

.booking-success-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.96));
  border: 1px solid rgba(21, 115, 71, 0.14);
  box-shadow: 0 18px 32px rgba(21, 115, 71, 0.08);
  color: var(--text-primary);
}

.booking-success-lottie {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--success);
  background: rgba(21, 115, 71, 0.1);
}

.booking-success-lottie .lottie-icon {
  width: 40px;
  height: 40px;
}

.booking-success-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.booking-success-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.booking-success-copy span {
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 500;
}

.booking-success-icon {
  width: 52px;
  height: 52px;
}

.booking-success-icon circle {
  fill: rgba(21, 115, 71, 0.08);
  stroke: rgba(21, 115, 71, 0.22);
  stroke-width: 1.5;
}

.booking-success-icon path {
  fill: none;
  stroke: var(--success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.65s ease forwards 0.15s;
}

.booking-next-steps {
  display: grid;
  gap: 10px;
}

.booking-next-steps-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
}

.booking-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-next-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  box-shadow: 0 0 0 6px rgba(242, 140, 56, 0.08);
}

.booking-next-step span {
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 500;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  margin-top: 40px;
  min-width: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  gap: 16px;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item .contact-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-item-label {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item-value {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  overflow-wrap: anywhere;
}

.contact-item-value a {
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.contact-item-value a:hover {
  text-decoration: underline;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  font-size: 0.92rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: var(--map-filter);
}

.footer {
  background: var(--surface-strong);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 40px calc(28px + env(safe-area-inset-bottom));
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand-link {
  display: inline-flex;
  text-decoration: none;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-shell--footer {
  position: relative;
  padding: 8px 12px;
  border-radius: 16px;
  background: var(--footer-logo-shell-bg);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px var(--footer-logo-shell-border);
}

.brand-logo-image--footer {
  height: clamp(48px, 6vw, 64px);
  width: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(var(--aura-shift-x, 14px), var(--aura-shift-y, -10px), 0);
  }
}

@keyframes iconLoop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.015);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 140, 56, 0));
  }

  42% {
    transform: scale(1.035);
    filter: drop-shadow(0 6px 10px rgba(242, 140, 56, 0.14));
  }

  52% {
    transform: scale(0.99);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes iconNudge {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  18% {
    transform: rotate(-3deg) translateY(-1px);
  }

  30% {
    transform: rotate(2deg) translateY(0);
  }
}

@keyframes iconBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes iconHeartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.04);
  }

  24% {
    transform: scale(0.98);
  }

  34% {
    transform: scale(1.03);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rippleBurst {
  0% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bookingPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(242, 140, 56, 0.2);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 14px 30px rgba(242, 140, 56, 0.3);
    transform: translateY(-1px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .booking-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-container {
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrapper {
    order: 0;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-buttons,
  .reviews-header,
  .booking-shell-header {
    justify-content: center;
  }

  .reviews-header,
  .booking-shell-header {
    text-align: center;
    align-items: center;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-scroll-offset: 88px;
  }

  .navbar {
    padding: 12px 16px;
    gap: 12px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
  }

  .hero-content {
    order: 0;
  }

  .brand-logo-image--nav {
    height: clamp(52px, 14vw, 60px);
    width: auto;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport for mobile browsers */
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: calc(82px + env(safe-area-inset-top, 0px)) 16px calc(24px + env(safe-area-inset-bottom, 0px));
    /* PERF: the mobile drawer now uses a denser tint instead of a live
       backdrop blur, removing a full-screen blur pass while open. */
    background: rgba(250, 246, 240, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.28s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 99;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: #fff;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    position: relative;
    z-index: 101;
    gap: 4px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-sm);
  }

  .nav-hamburger span {
    width: 20px;
  }

  .nav-hamburger.is-active {
    background: rgba(255, 255, 255, 0.94);
  }

  .nav-hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 92px 20px 44px;
  }

  .hero-image-wrapper {
    order: 1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-tagline {
    margin-inline: 0;
    max-width: none;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-float-card.card-1 {
    left: 10px;
    bottom: 16px;
  }

  .hero-float-card.card-2 {
    right: 10px;
    top: 16px;
  }

  .section,
  .reviews-header,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .reviews-header {
    padding-top: 72px;
    padding-bottom: 22px;
  }

  .services-grid,
  .about-cards,
  .booking-slots {
    grid-template-columns: 1fr;
  }

  .booking-slots {
    grid-template-columns: 1fr 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: min(308px, calc(100vw - 36px));
    max-width: min(324px, calc(100vw - 36px));
  }

  .booking-shell {
    padding: 22px;
  }

  .booking-panel,
  .booking-form,
  .calendar-card {
    padding: 22px;
  }

  .contact-grid {
    margin-top: 32px;
    gap: 28px;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-map {
    min-height: 320px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .brand-logo-image--nav {
    height: 56px;
  }

  .brand-logo-shell--footer {
    padding: 6px 10px;
    border-radius: 14px;
  }

  .brand-logo-image--footer {
    height: clamp(44px, 14vw, 56px);
    width: auto;
  }

  .hero {
    padding: 84px 18px 40px;
  }

  .hero-container {
    gap: 26px;
  }

  .hero-image-wrapper {
    max-width: min(100%, 336px);
    padding: 0;
  }

  .hero-image {
    aspect-ratio: 0.96 / 1;
    border-radius: 28px;
    object-position: center 20%;
  }

  .hero-badge {
    margin-bottom: 18px;
    padding: 9px 14px;
    font-size: 0.82rem;
    max-width: min(100%, 320px);
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 0.98rem;
    margin-bottom: 26px;
  }

  .hero-float-card {
    min-width: min(138px, 40%);
    padding: 13px 14px;
    border-radius: 16px;
  }

  .hero-float-card.card-1 {
    left: 8px;
    bottom: 12px;
  }

  .hero-float-card.card-2 {
    right: 8px;
    top: 12px;
  }

  .float-card-label {
    font-size: 0.72rem;
  }

  .float-card-value {
    font-size: 1rem;
  }

  .hero-buttons,
  .booking-mode-switch {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .section-link,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    font-size: clamp(0.88rem, 2.5vw, 0.98rem);
  }

  .booking-slots {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-track {
    gap: 18px;
  }

  .reviews-track-wrapper {
    padding: 12px 16px 88px;
  }

  .review-card {
    min-width: min(300px, calc(100vw - 32px));
    max-width: min(314px, calc(100vw - 32px));
    padding: 22px;
  }

  .review-text {
    min-height: auto;
    font-size: 0.93rem;
  }

  .section-title {
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    line-height: 1.12;
  }

  .section-desc {
    font-size: clamp(0.88rem, 2.5vw, 1rem);
  }

  .about-text p {
    font-size: clamp(0.88rem, 2.5vw, 1rem);
  }

  .service-card h3 {
    font-size: clamp(0.95rem, 3vw, 1.08rem);
  }

  .service-card p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }

  .booking-title-row {
    gap: 10px;
    align-items: flex-start;
  }

  .booking-title-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .booking-title-icon .lottie-icon,
  .booking-title-icon .loop-icon-calendar {
    width: 30px;
    height: 30px;
  }

  .booking-title {
    font-size: 1.25rem;
    line-height: 1.12;
    max-width: none;
  }

  .booking-shell {
    padding: 20px;
  }

  .booking-panel,
  .booking-form,
  .calendar-card {
    padding: 20px;
  }

  .contact-grid {
    margin-top: 30px;
    gap: 24px;
  }

  .contact-item {
    gap: 14px;
    padding: 18px;
  }

  .contact-item-value {
    font-size: 0.96rem;
  }

  .contact-map {
    min-height: 280px;
  }

  .footer {
    padding: 48px 18px calc(24px + env(safe-area-inset-bottom));
  }

  .footer-links {
    gap: 12px 18px;
    font-size: 0.92rem;
  }

  .footer-bottom {
    margin-top: 26px;
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  :root {
    --nav-scroll-offset: 82px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline: 14px;
  }

  .brand-logo-image--nav {
    height: 54px;
  }

  .nav-links {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 76px;
    padding-bottom: 34px;
  }

  .hero-container {
    gap: 18px;
  }

  .hero-image-wrapper {
    max-width: min(100%, 308px);
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .hero-float-card {
    min-width: min(126px, 38%);
    padding: 10px 12px;
  }

  .hero-float-card.card-1 {
    left: 6px;
    bottom: 8px;
  }

  .hero-float-card.card-2 {
    right: 6px;
    top: 8px;
  }

  .booking-shell-header {
    gap: 12px;
  }

  .booking-title {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
  }

  .booking-copy {
    font-size: clamp(0.85rem, 2.5vw, 0.92rem);
  }

  .calendar-card {
    padding: 18px;
  }

  .calendar-card h3 {
    font-size: clamp(1rem, 3.5vw, 1.22rem);
  }

  .review-card {
    min-width: min(296px, calc(100vw - 28px));
    max-width: min(306px, calc(100vw - 28px));
  }
  
  .contact-grid {
    gap: 16px;
  }
  
  .contact-item {
    padding: 16px;
  }
  
  .contact-map {
    min-height: 256px;
  }

  .footer-links {
    justify-content: center;
    gap: 10px 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 400px) {
  :root {
    --nav-scroll-offset: 78px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-logo-image--nav {
    height: 52px;
  }

  .nav-hamburger {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-container {
    gap: 16px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-tagline {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .hero-image-wrapper {
    max-width: min(100%, 292px);
  }

  .booking-slot {
    padding: 11px 10px;
    font-size: 0.85rem;
  }

  .hero-float-card {
    min-width: min(114px, 36%);
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero-float-card.card-1 {
    left: 4px;
    bottom: 6px;
  }

  .hero-float-card.card-2 {
    right: 4px;
    top: 6px;
  }

  .float-card-label {
    font-size: 0.65rem;
  }

  .float-card-value {
    font-size: 0.9rem;
  }

  .review-card {
    min-width: min(286px, calc(100vw - 24px));
    max-width: min(296px, calc(100vw - 24px));
  }
}

/* ================================================================
   Payment Overlay
   ================================================================ */

.payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--overlay-backdrop);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.payment-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.payment-overlay-card {
  max-width: 420px;
  width: 90%;
  padding: 48px 32px;
  border-radius: 32px;
  background: var(--overlay-surface);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--overlay-border);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: overlayPremiumShow 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes overlayPremiumShow {
  0% { opacity: 0; transform: translateY(60px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.payment-overlay-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.payment-redirect-spinner {
  width: 100%;
  height: 100%;
}

.payment-spinner-arc {
  animation: spinArc 1.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes spinArc {
  0% {
    transform: rotate(0deg);
    stroke-dashoffset: 120;
  }
  50% {
    stroke-dashoffset: 30;
  }
  100% {
    transform: rotate(360deg);
    stroke-dashoffset: 120;
  }
}

.payment-overlay-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.payment-overlay-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.55;
}

.payment-overlay-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-overlay-price {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-overlay-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}

.payment-overlay-ref {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.payment-overlay-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(21, 115, 71, 0.08);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
}

.payment-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-overlay-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.payment-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--overlay-close-bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition);
  z-index: 1;
}

.payment-overlay-close:hover {
  background: var(--overlay-close-bg-hover);
  color: var(--text-primary);
}

/* ================================================================
   Booking summary price badge
   ================================================================ */

.booking-summary-price {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
}

/* ================================================================
   Booking submit lock icon
   ================================================================ */

.booking-submit-lock {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  opacity: 0.85;
}

/* ================================================================
   Payment success badge
   ================================================================ */

.payment-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(21, 115, 71, 0.08), rgba(42, 187, 167, 0.12));
  border: 1px solid rgba(21, 115, 71, 0.14);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}

/* ================================================================
   Booking status warning
   ================================================================ */

.booking-status.is-warning {
  color: var(--warning);
}

/* ================================================================
   SVG Animated Logo (AfterEffects Style)
   ================================================================ */

.logo-svg {
  height: 60px;
  width: auto;
  overflow: visible;
  color: var(--text-color);
  --energy-color: #FF7A00;
  --atom-speed: 8s;
  transition: all 0.3s ease;
}

.footer-brand .logo-svg {
  height: 80px;
  color: var(--footer-logo-color);
}

.footer-brand .apple-core {
  fill: var(--footer-logo-color);
}

/* Atom group gently floats */
.atom-group {
  animation: floatAtom 6s ease-in-out infinite;
}

@keyframes floatAtom {
  0%, 100% { transform: translate(150px, 45px) translateY(0); }
  50% { transform: translate(150px, 45px) translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* PERF: collapse motion-heavy UI for reduced-motion users and pair it with
     the JS single-pass reviews render to cut both animation and DOM churn. */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-aura,
  .hero::before,
  .hero::after,
  .reviews-track,
  .hero-float-card,
  .hero-badge,
  .logo-particles-container .energy-particle,
  .loop-icon,
  .loop-icon-calendar {
    animation: none !important;
  }

  .reviews-track {
    width: auto;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --page-bg: #15120f;
    --page-bg-alt: #1b1714;
    --page-bg-deep: #110e0c;
    --surface-card: #211c18;
    --surface-raised: #29231e;
    --surface-strong: #0f0d0b;
    --surface-inverse: #f5eee6;
    --accent: #f5a15b;
    --accent-hover: #ffb16f;
    --accent-secondary: #56c6b4;
    --accent-secondary-hover: #6ed3c2;
    --text-primary: #f5eee6;
    --text-secondary: #c8bcb0;
    --text-light: #9f9388;
    --text-on-accent: #251912;
    --stars: #ffc861;
    --success: #45b97c;
    --warning: #d59a4a;
    --danger: #e07468;
    --glass: rgba(36, 31, 27, 0.72);
    --glass-border: rgba(255, 245, 235, 0.08);
    --border-soft: rgba(255, 245, 235, 0.1);
    --border-strong: rgba(255, 245, 235, 0.18);
    --overlay-backdrop: rgba(8, 7, 7, 0.78);
    --overlay-surface: rgba(30, 26, 23, 0.92);
    --overlay-border: rgba(255, 245, 235, 0.1);
    --overlay-close-bg: rgba(255, 245, 235, 0.06);
    --overlay-close-bg-hover: rgba(255, 245, 235, 0.12);
    --focus-ring: rgba(245, 161, 91, 0.28);
    --input-placeholder: #b5a89b;
    --footer-logo-color: #f5eee6;
    --footer-logo-shell-bg: rgba(255, 248, 240, 0.08);
    --footer-logo-shell-border: rgba(255, 245, 235, 0.08);
    --map-filter: grayscale(0.1) saturate(0.78) brightness(0.78) contrast(1.04) invert(0.92) hue-rotate(180deg);
    --shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 24px 52px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 36px 82px rgba(0, 0, 0, 0.46);
  }

  /* Native color-scheme handling enabled at root */

  html {
    background-color: #0c0a09; /* dark footer color for iOS overscroll */
  }

  body {
    background-color: var(--page-bg);
    background:
      radial-gradient(circle at top left, rgba(245, 161, 91, 0.09), transparent 28%),
      radial-gradient(circle at 85% 12%, rgba(86, 198, 180, 0.08), transparent 24%),
      linear-gradient(180deg, #191410 0%, var(--bg-primary) 42%, var(--page-bg-deep) 100%);
  }

  .page-aura-1 {
    background:
      radial-gradient(
        ellipse 78% 56% at 68% 38%,
        rgba(245, 161, 91, 0.14) 0%,
        rgba(245, 161, 91, 0.05) 40%,
        transparent 72%
      ),
      radial-gradient(
        ellipse 50% 70% at 44% 60%,
        rgba(255, 196, 140, 0.07) 0%,
        transparent 65%
      );
  }

  .page-aura-2 {
    background:
      radial-gradient(
        ellipse 70% 55% at 34% 58%,
        rgba(86, 198, 180, 0.12) 0%,
        rgba(86, 198, 180, 0.04) 42%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 48% 65% at 56% 36%,
        rgba(158, 232, 220, 0.06) 0%,
        transparent 62%
      );
  }

  .navbar.scrolled {
    background: rgba(24, 20, 17, 0.82);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  }

  .navbar.is-menu-open {
    background: rgba(21, 18, 15, 0.94);
    border-bottom: 1px solid var(--glass-border);
  }

  .navbar.is-menu-open .nav-links {
    background: rgba(15, 12, 10, 0.96);
  }

  .navbar.is-menu-open .nav-links a {
    color: var(--text-primary);
    background: rgba(36, 31, 27, 0.76);
    border-color: rgba(255, 245, 235, 0.08);
  }

  .navbar.is-menu-open .nav-links a:hover {
    background: rgba(45, 39, 34, 0.9);
  }

  .nav-hamburger {
    background: rgba(36, 31, 27, 0.76);
  }

  .nav-hamburger.is-active {
    background: rgba(45, 39, 34, 0.94);
  }

  .hero::before {
    background: radial-gradient(circle, rgba(245, 161, 91, 0.1) 0%, transparent 72%);
  }

  .hero::after {
    background: radial-gradient(circle, rgba(86, 198, 180, 0.1) 0%, transparent 72%);
  }

  .hero-badge,
  .hero-float-card {
    background: rgba(36, 31, 27, 0.76);
    border: 1px solid rgba(255, 245, 235, 0.1);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }

  .hero-image {
    border: 1px solid rgba(255, 245, 235, 0.08);
    box-shadow:
      0 34px 80px rgba(0, 0, 0, 0.46),
      0 0 0 1px rgba(255, 245, 235, 0.03);
  }

  .btn-secondary,
  .section-link {
    background: rgba(255, 248, 240, 0.04);
    border-color: rgba(255, 245, 235, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  }

  .btn-secondary:hover,
  .section-link:hover {
    background: rgba(255, 248, 240, 0.08);
    border-color: rgba(255, 245, 235, 0.18);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .about-card,
  .service-card,
  .calendar-card,
  .contact-item,
  .booking-panel,
  .booking-form,
  .contact-map {
    background: var(--surface-card);
    border-color: var(--border-soft);
    box-shadow: var(--shadow-sm);
  }

  .services-bg,
  .contact-bg {
    background: linear-gradient(180deg, rgba(24, 20, 17, 0.96), rgba(20, 17, 15, 0.96));
  }

  .specialty-chip {
    background: var(--surface-card);
    border-color: var(--border-soft);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .specialty-chip:hover {
    background: rgba(245, 161, 91, 0.1);
    border-color: rgba(245, 161, 91, 0.32);
  }

  .reviews-bg::before {
    background:
      radial-gradient(circle at 15% 15%, rgba(245, 161, 91, 0.09), transparent 24%),
      radial-gradient(circle at 85% 85%, rgba(86, 198, 180, 0.08), transparent 26%);
  }

  .review-card {
    background: linear-gradient(180deg, rgba(37, 32, 28, 0.94), rgba(28, 24, 21, 0.98));
    border: 1px solid rgba(255, 245, 235, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  }

  .avena-badge {
    color: #ffb39a;
    background: rgba(255, 155, 128, 0.12);
  }

  .faq-item {
    border-bottom-color: rgba(255, 245, 235, 0.08);
  }

  .faq-icon {
    background: rgba(255, 248, 240, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 245, 235, 0.04);
  }

  .booking-title-icon {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 161, 91, 0.18), rgba(86, 198, 180, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 245, 235, 0.05);
  }

  .booking-mode-button {
    background: var(--surface-raised);
    border-color: var(--border-soft);
    color: var(--text-primary);
  }

  .booking-mode-button:hover {
    border-color: rgba(245, 161, 91, 0.4);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }

  .booking-mode-button.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--text-on-accent);
    border-color: rgba(245, 161, 91, 0.48);
    box-shadow: 0 16px 30px rgba(245, 161, 91, 0.22);
  }

  .booking-date-input,
  .booking-field input {
    background: var(--surface-card);
    border-color: var(--border-strong);
    box-shadow: inset 0 1px 0 rgba(255, 245, 235, 0.03);
  }

  .booking-hint {
    background: rgba(86, 198, 180, 0.12);
    color: #a7e7db;
  }

  .booking-hint.is-warning {
    background: rgba(245, 161, 91, 0.14);
    color: #f0c289;
  }

  .booking-hint.is-error {
    background: rgba(224, 116, 104, 0.12);
    color: #f0aaa1;
  }

  .booking-slot {
    background: var(--surface-card);
    border-color: var(--border-soft);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  }

  .booking-slot:hover {
    background: var(--surface-raised);
    border-color: rgba(245, 161, 91, 0.42);
    box-shadow:
      0 16px 28px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(245, 161, 91, 0.06);
  }

  .booking-slot.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-color: rgba(245, 161, 91, 0.56);
    color: var(--text-on-accent);
    box-shadow: 0 0 24px rgba(245, 161, 91, 0.28);
  }

  .skeleton-slot {
    background: linear-gradient(90deg, rgba(40, 35, 31, 0.92) 25%, rgba(50, 44, 39, 0.98) 50%, rgba(40, 35, 31, 0.92) 75%);
    background-size: 200% 100%;
  }

  .booking-empty {
    background: rgba(255, 248, 240, 0.05);
    border: 1px solid rgba(255, 245, 235, 0.06);
  }

  .booking-empty.is-error {
    background: rgba(224, 116, 104, 0.12);
  }

  .booking-empty.is-warning {
    background: rgba(245, 161, 91, 0.12);
  }

  .booking-empty.is-loading {
    background: rgba(86, 198, 180, 0.1);
  }

  .booking-message-icon {
    background: rgba(245, 161, 91, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 245, 235, 0.06);
  }

  .booking-message--loading .booking-message-icon {
    background: rgba(86, 198, 180, 0.14);
    color: #98dfd2;
  }

  .booking-message--warning .booking-message-icon {
    background: rgba(245, 161, 91, 0.16);
  }

  .booking-message--error .booking-message-icon {
    background: rgba(224, 116, 104, 0.14);
  }

  .booking-message--success .booking-message-icon {
    background: rgba(69, 185, 124, 0.14);
  }

  .booking-summary {
    background: linear-gradient(135deg, rgba(245, 161, 91, 0.12), rgba(86, 198, 180, 0.08));
    border-color: rgba(255, 245, 235, 0.06);
  }

  .booking-summary.is-selected {
    background: linear-gradient(135deg, rgba(245, 161, 91, 0.18), rgba(86, 198, 180, 0.12));
    border-color: rgba(245, 161, 91, 0.18);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  }

  .booking-notice {
    background: rgba(245, 161, 91, 0.1);
    border-color: rgba(245, 161, 91, 0.2);
  }

  .booking-notice-icon {
    background: rgba(245, 161, 91, 0.16);
  }

  .booking-submit:disabled {
    background: var(--surface-raised);
    color: var(--text-light);
    opacity: 0.65;
  }

  .booking-daystrip {
    scrollbar-color: rgba(255, 245, 235, 0.18) transparent;
  }

  .booking-daystrip::-webkit-scrollbar-thumb {
    background: rgba(255, 245, 235, 0.16);
  }

  .booking-slot:hover {
    box-shadow: 0 8px 18px rgba(245, 161, 91, 0.14);
  }

  .booking-slot.is-active {
    box-shadow: 0 4px 18px rgba(245, 161, 91, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .booking-success-card {
    background: linear-gradient(180deg, rgba(33, 28, 24, 0.98), rgba(28, 40, 35, 0.96));
    border-color: rgba(69, 185, 124, 0.18);
  }

  .booking-status-card {
    background: rgba(32, 28, 25, 0.88);
    border-color: rgba(255, 245, 235, 0.08);
    box-shadow: var(--shadow-sm);
  }

  .booking-status-card--warning {
    background: rgba(57, 42, 28, 0.94);
    border-color: rgba(245, 161, 91, 0.18);
  }

  .booking-status-card--error {
    background: rgba(56, 31, 29, 0.94);
    border-color: rgba(224, 116, 104, 0.18);
  }

  .booking-status-card--info {
    background: rgba(27, 44, 41, 0.92);
    border-color: rgba(86, 198, 180, 0.18);
  }

  .booking-next-step {
    background: rgba(255, 248, 240, 0.04);
    border-color: rgba(255, 245, 235, 0.08);
  }

  .booking-next-step-dot {
    box-shadow: 0 0 0 6px rgba(245, 161, 91, 0.12);
  }

  .contact-item-value a:hover {
    color: var(--accent-hover);
  }

  .contact-map {
    box-shadow: var(--shadow-md);
  }

  .footer {
    background: linear-gradient(180deg, #120f0d 0%, #0c0a09 100%);
    color: rgba(245, 238, 230, 0.72);
  }

  .brand-logo-shell--footer {
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 245, 235, 0.08);
  }

  .footer-links a {
    color: rgba(245, 238, 230, 0.68);
  }

  .footer-links a:hover {
    color: var(--text-primary);
  }

  .footer-bottom {
    border-top-color: rgba(255, 245, 235, 0.08);
  }

  .payment-overlay-card {
    box-shadow:
      0 40px 90px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(255, 245, 235, 0.04) inset;
  }

  .payment-overlay-secure {
    background: rgba(69, 185, 124, 0.12);
  }

  .payment-overlay-close {
    border: 1px solid rgba(255, 245, 235, 0.08);
  }
}

/* Orbits Base Setup */
.orbit {
  transform-origin: 0 0; /* relative to atom-group center */
}

/* 3D Spin core rotations simulating gyroscope */
.o1 {
  transform: rotateZ(0deg);
  animation: spinOrbit1 var(--atom-speed) linear infinite;
}
@keyframes spinOrbit1 {
  0%   { transform: rotateZ(0deg) rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateZ(0deg) rotateX(60deg) rotateZ(360deg); }
}

.o2 {
  transform: rotateZ(-30deg);
  animation: spinOrbit2 var(--atom-speed) linear infinite;
}
@keyframes spinOrbit2 {
  0%   { transform: rotateZ(-30deg) rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateZ(-30deg) rotateX(60deg) rotateZ(360deg); }
}

.o3 {
  transform: rotateZ(30deg);
  animation: spinOrbit3 var(--atom-speed) linear infinite;
}
@keyframes spinOrbit3 {
  0%   { transform: rotateZ(30deg) rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateZ(30deg) rotateX(60deg) rotateZ(360deg); }
}

/* Orange Energy Core and Electrons */
.electron {
  fill: var(--energy-color);
  filter: url(#orange-glow);
  animation: pulseElectron 2s ease-in-out infinite alternate;
}

@keyframes pulseElectron {
  0% { r: 3.5; opacity: 0.8; }
  100% { r: 5; opacity: 1; }
}

/* Pulse energy on the vector core parts */
.orbit-path {
  animation: glowPath 4s ease-in-out infinite alternate;
}

@keyframes glowPath {
  0% { stroke: currentColor; filter: none; opacity: 0.8; }
  100% { stroke: var(--energy-color); filter: drop-shadow(0 0 3px var(--energy-color)); opacity: 1; }
}

/* Make text look clean */
.logo-core text {
  transition: fill 0.3s ease;
}

.nav-logo:hover .logo-svg {
  transform: scale(1.05);
}

.nav-logo:hover .electron {
  --energy-color: #FF5500;
}

/* ── Sección: Contenido público ─────────────────────────────── */
#contenido-publico {
  scroll-margin-top: var(--nav-scroll-offset);
}

