/* ==========================================================================
   MIDNIGHT KILONOVA — Sistema de Diseño CSS
   Todos los colores están definidos vía propiedades custom inyectadas por /theme/styles.css
   NO usar variables quemadas (hardcoded) — usar var(--color-*) exclusivamente.
   ========================================================================== */

/* ───────────────────────────────────────────────────────────────────────────
   1. RESET Y BASE
   ─────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(color-mix(in srgb, var(--color-primary) 15%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover { opacity: 0.85; }

ul { list-style: none; }

/* ───────────────────────────────────────────────────────────────────────────
   2. TIPOGRAFÍA
   ─────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 65ch; }

/* ───────────────────────────────────────────────────────────────────────────
   3. UTILIDADES DE DISEÑO
   ─────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

/* ───────────────────────────────────────────────────────────────────────────
   4. BOTONES
   ─────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--color-button);
  color: var(--color-button-text);
  border-color: var(--color-button);
}

.btn-primary:hover {
  background-color: var(--color-button-hover);
  border-color: var(--color-button-hover);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-instagram {
  background: linear-gradient(135deg, #fd1d1d 0%, #fcb045 45%, #833ab4 100%);
  color: #fff;
  border: none;
}

.btn-instagram:hover {
  filter: brightness(1.08);
  color: #fff;
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.35);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-icon:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-primary);
}

/* ───────────────────────────────────────────────────────────────────────────
   5. BARRA DE NAVEGACIÓN
   ─────────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: color-mix(in srgb, var(--color-bg) 85%, transparent);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background-color: var(--color-bg);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo {
  height: 36px;
  width: auto;
}

.navbar-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.navbar-name:hover { color: var(--color-primary); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--color-text); opacity: 1; }
.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

/* Menú hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menú móvil */
.mobile-menu {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg);
}

.mobile-menu.is-open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  color: var(--color-text);
  font-size: 1.05rem;
  padding: 0.4rem 0;
}

/* ───────────────────────────────────────────────────────────────────────────
   6. HERO
   ─────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg--gradient {
  background: radial-gradient(
    circle at 50% 50%,
    color-mix(in srgb, var(--color-bg) 60%, transparent) 0%,
    var(--color-bg) 100%
  );
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 85vh;
  padding-block: 2rem;
}

.hero-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  text-align: left;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
}

.hero-content--split .hero-main {
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
}

.hero-location {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-title {
  /* Más conservador en pantallas grandes para evitar overflow */
  font-size: clamp(2.8rem, 8.5vw, 7.5rem);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  max-width: min(100%, 68ch);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  /* Efecto de degradado sutil */
  background: linear-gradient(to bottom, var(--color-text), color-mix(in srgb, var(--color-text) 80%, var(--color-primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 40ch;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.hero-profession-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-block: 2rem 3rem;
}

.hero-content--split .hero-profession-wrapper {
  justify-content: flex-start;
}

.hero-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to var(--line-dir, right), var(--color-primary), transparent);
  opacity: 0.3;
}

.hero-profession {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  white-space: normal;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-content--split .hero-actions {
  justify-content: center;
}

/* Ajustes específicos para el botón 'Portfolio' en hero: aumentar legibilidad y centrar texto */
.hero-actions .btn-outline {
  font-size: 1.06rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero-profession-wrapper {
    gap: 0.8rem;
  }
  .hero-profession {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-content--split .hero-main {
    align-items: center;
    text-align: center;
  }

  .hero-content--split .hero-profession-wrapper,
  .hero-content--split .hero-actions {
    justify-content: center;
  }

  /* Ajustes: botones del hero más compactos en pantallas pequeñas */
  .hero-actions .btn {
    /* anula inline min-width usado en plantilla */
    min-width: auto !important;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.6rem;
  }

  .hero-actions .btn.btn-xl {
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
  }

  .hero-actions .btn-outline {
    padding: 0.65rem 1rem;
  }

  /* CTA principal también más comedido en móvil */
  #cta-main-booking-btn {
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
  }
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.hero-highlights li {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--color-text) 86%, var(--color-primary));
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  background: color-mix(in srgb, var(--color-primary) 9%, transparent);
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  max-width: none;
}

.hero-brief {
  border: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-surface) 50%, transparent);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow:
    0 28px 55px color-mix(in srgb, var(--color-bg) 75%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-primary) 16%, transparent);
}

.hero-brief__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  max-width: none;
}

.hero-brief__title {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.35;
}

.hero-brief__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
}

.hero-brief__steps li {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  padding-left: 0.95rem;
  border-left: 2px solid color-mix(in srgb, var(--color-primary) 45%, transparent);
}

.hero-brief__steps strong {
  color: var(--color-text);
}

.hero-brief__note {
  max-width: none;
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--color-text) 80%, var(--color-text-muted));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.15rem;
  width: 100%;
}

.hero-stat {
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  border-radius: 0.8rem;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-stat__label {
  color: var(--color-text-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ───────────────────────────────────────────────────────────────────────────
   7. ENCABEZADOS DE SECCIÓN
   ─────────────────────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-weight: 600;
}

.section-title {
  text-align: center;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 56ch;
  text-align: center;
}

/* ───────────────────────────────────────────────────────────────────────────
   8. GRILLA DE SERVICIOS
   ─────────────────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}

.service-card__link:hover {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--color-primary) 15%, transparent);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img { transform: scale(1.06); }

.service-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-placeholder-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  opacity: 0.4;
}

.service-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.service-card__title { font-size: 1.1rem; }
.service-card__desc { color: var(--color-text-muted); font-size: 0.9rem; }

.service-card__category {
  align-self: flex-start;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: color-mix(in srgb, var(--color-primary) 88%, var(--color-text));
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.service-card__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.service-duration {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.service-note {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--color-primary) 82%, var(--color-text));
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.service-book-btn { margin-top: 0.75rem; }

/* ───────────────────────────────────────────────────────────────────────────
   9. PROCESO
   ─────────────────────────────────────────────────────────────────────────── */
.section--process {
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--color-primary) 14%, transparent), transparent 52%),
    radial-gradient(circle at 88% 100%, color-mix(in srgb, var(--color-accent) 14%, transparent), transparent 56%),
    var(--color-bg-alt);
  border-block: 1px solid color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--color-surface) 93%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-bg-alt) 85%, var(--color-surface)) 100%
  );
  border: 1px solid color-mix(in srgb, var(--color-border) 72%, var(--color-primary) 28%);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-primary) 58%, var(--color-border));
}

.process-card__step {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--color-primary);
}

.process-card__title {
  font-size: 1.08rem;
  line-height: 1.35;
}

.process-card__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: none;
}

/* ───────────────────────────────────────────────────────────────────────────
   10. SOBRE MÍ
   ─────────────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.about-photo--circle {
  width: min(330px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  margin-inline: auto;
  border: 3px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
}

.about-photo--placeholder {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--color-primary) 28%, transparent), var(--color-surface));
}

.about-photo--placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-primary);
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--color-primary);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0.3;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 500;
}

.about-text--feature {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.85;
}

.about-actions--start {
  margin-top: 1.8rem;
  justify-content: flex-start;
}

.about-actions--start .btn {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-social-link {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
  color: color-mix(in srgb, var(--color-text) 86%, var(--color-primary));
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  opacity: 1;
}

/* ───────────────────────────────────────────────────────────────────────────
   11. UBICACIÓN
   ─────────────────────────────────────────────────────────────────────────── */
.section--location {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-bg-alt) 76%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-bg) 86%, var(--color-bg-alt)) 100%
  );
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 1.25rem;
  align-items: stretch;
}

.location-info {
  border: 1px solid color-mix(in srgb, var(--color-primary) 26%, var(--color-border));
  background-color: color-mix(in srgb, var(--color-surface) 88%, var(--color-bg));
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-info__title {
  font-size: 1.05rem;
  margin: 0;
}

.location-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.location-info__list strong {
  color: var(--color-text);
  margin-right: 0.35rem;
}

.location-info__note {
  max-width: none;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--color-text) 88%, var(--color-primary));
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px dashed color-mix(in srgb, var(--color-primary) 40%, transparent);
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 360px;
  background-color: var(--color-surface);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 360px;
}

.location-map__fallback {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-text-muted);
  padding: 1.2rem;
}

/* ───────────────────────────────────────────────────────────────────────────
   11. GALERÍA
   ─────────────────────────────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item figcaption {
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  background-color: var(--color-surface);
}

.section--instagram {
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, #833ab4 18%, transparent), transparent 50%),
    radial-gradient(circle at 88% 90%, color-mix(in srgb, #fd1d1d 16%, transparent), transparent 54%),
    var(--color-bg-alt);
  border-block: 1px solid color-mix(in srgb, var(--color-border) 72%, #833ab4 28%);
}

.instagram-showcase {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-border) 60%, #833ab4 40%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.instagram-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.instagram-showcase__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.1) 0%, rgba(5, 5, 8, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.instagram-showcase__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fd1d1d 0%, #fcb045 45%, #833ab4 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.instagram-showcase:hover {
  opacity: 1;
}

.instagram-showcase:hover img {
  transform: scale(1.06);
}

.instagram-showcase:hover .instagram-showcase__overlay {
  opacity: 1;
}

/* ───────────────────────────────────────────────────────────────────────────
   12. GALERÍA DE TRABAJOS (POSTS)
   ─────────────────────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-primary) 55%, var(--color-border));
  box-shadow: 0 14px 32px color-mix(in srgb, var(--color-primary) 16%, transparent);
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.news-card__media:hover {
  opacity: 1;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__placeholder {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.news-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.news-card__date {
  font-size: 0.74rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card__title {
  font-size: 1.18rem;
  line-height: 1.35;
}

.news-card__title a {
  color: var(--color-text);
}

.news-card__title a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.news-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: none;
}

.news-card__cta {
  margin-top: auto;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-card__cta:hover {
  color: var(--color-text);
  opacity: 1;
}

.posts-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.posts-page__header {
  margin-bottom: 56px;
}

.posts-page__grid {
  margin-bottom: 48px;
}

.posts-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.posts-pagination__link {
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.posts-pagination__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  opacity: 1;
}

.posts-pagination__status {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.posts-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.posts-empty__link {
  color: var(--color-primary);
  font-weight: 700;
}

.post-detail {
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}

.post-detail__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.post-detail__meta a {
  color: inherit;
}

.post-detail__meta a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.post-detail__title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.post-detail__image {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 2.25rem;
  max-height: 420px;
  object-fit: cover;
}

.post-detail__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  white-space: pre-line;
}

.post-detail__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 3rem 0;
}

.post-detail__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-detail__back {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ───────────────────────────────────────────────────────────────────────────
   12. FORMULARIOS DASHBOARD
   ─────────────────────────────────────────────────────────────────────────── */
.dashboard-form-page {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 860px;
}

.dashboard-form-page--wide {
  max-width: 1080px;
}

.dashboard-form-page--feature {
  max-width: 1180px;
}

.dashboard-form-page::before {
  content: '';
  position: absolute;
  inset: 70px 0 auto 0;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--color-primary) 22%, transparent), transparent 62%),
    radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--color-info) 10%, transparent), transparent 58%);
  opacity: 0.7;
  z-index: 0;
}

.dashboard-form-page > * {
  position: relative;
  z-index: 1;
}

.dashboard-form-header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-form-title {
  margin-top: 0.75rem;
  margin-bottom: 0.2rem;
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 14ch;
}

.dashboard-form-subtitle {
  text-align: left;
  max-width: 66ch;
}

.dashboard-back-link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.dashboard-back-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.dashboard-form-card {
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--color-surface) 92%, var(--color-bg)) 0%, var(--color-surface) 100%);
  border: 1px solid color-mix(in srgb, var(--color-border) 75%, var(--color-primary) 25%);
  border-radius: 1.15rem;
  padding: clamp(1.15rem, 2.8vw, 2.25rem);
  box-shadow:
    0 30px 60px color-mix(in srgb, var(--color-bg) 76%, transparent),
    inset 0 1px 0 color-mix(in srgb, #fff 4%, transparent);
  backdrop-filter: blur(10px);
}

.dashboard-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.35rem;
  align-items: start;
}

.dashboard-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.dashboard-form--two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  min-width: 0;
}

.dashboard-form-row--full {
  grid-column: 1 / -1;
}

.dashboard-form-row--toggle {
  justify-content: center;
}

.dashboard-form-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.dashboard-form-label--inline {
  margin-bottom: 0;
}

.dashboard-form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-form-help {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: none;
}

.dashboard-form-error {
  color: var(--color-error);
  font-size: 0.82rem;
}

.dashboard-form-card .form-control,
.dashboard-form-card .form-control-file,
.dashboard-form-card select,
.dashboard-form-card textarea,
.dashboard-form-card input[type="text"],
.dashboard-form-card input[type="number"],
.dashboard-form-card input[type="url"],
.dashboard-form-card input[type="date"],
.dashboard-form-card input[type="email"],
.dashboard-form-card input[type="password"] {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--color-border) 82%, transparent) !important;
  border-radius: 0.75rem !important;
  background: color-mix(in srgb, var(--color-bg-alt) 86%, var(--color-surface)) !important;
  color: var(--color-text) !important;
  padding: 0.78rem 0.9rem !important;
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.35;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: none !important;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}

.dashboard-form-card input[type="file"] {
  color: var(--color-text-muted) !important;
  padding-inline: 0 !important;
}

.dashboard-form-card input[type="file"]::file-selector-button {
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--color-primary) 24%, var(--color-bg-alt));
  color: var(--color-text);
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  margin-right: 0.6rem;
  cursor: pointer;
}

.dashboard-form-card input::placeholder,
.dashboard-form-card textarea::placeholder {
  color: color-mix(in srgb, var(--color-text-muted) 80%, transparent);
}

.dashboard-form-card .form-control:focus,
.dashboard-form-card select:focus,
.dashboard-form-card textarea:focus,
.dashboard-form-card input:focus {
  outline: none;
  border-color: var(--color-border-focus) !important;
  background: color-mix(in srgb, var(--color-surface-hover) 70%, var(--color-bg-alt)) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent) !important;
}

.dashboard-form-card input[type="checkbox"],
.dashboard-form-card .form-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  padding: 0;
  margin: 0;
  min-height: auto;
}

.dashboard-form-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}

.dashboard-form-actions .btn {
  flex: 1;
  justify-content: center;
  min-height: 44px;
}

.dashboard-btn-cancel {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.dashboard-btn-cancel:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
  opacity: 1;
}

.dashboard-rules-section {
  margin-top: 2.2rem;
}

.dashboard-rules-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-rules-header h2 {
  font-size: 1.35rem;
  margin: 0;
}

.dashboard-rules-card {
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  overflow: hidden;
  background-color: var(--color-surface);
}

.dashboard-rules-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-rules-table th,
.dashboard-rules-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.dashboard-rules-table th {
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-rules-table td {
  color: var(--color-text);
  font-size: 0.92rem;
}

.dashboard-rules-table tr:last-child td {
  border-bottom: none;
}

.dashboard-rules-table__actions {
  text-align: right;
}

.dashboard-rules-table__actions form {
  display: inline;
}

.dashboard-rules-delete {
  background: none;
  border: none;
  color: var(--color-error);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.dashboard-rules-empty {
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  background-color: var(--color-surface);
  padding: 1.8rem 1.25rem;
  color: var(--color-text-muted);
}

.dashboard-rules-empty p {
  margin-bottom: 0.35rem;
  max-width: none;
}

.dashboard-about-preview {
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, var(--color-primary) 30%);
  background: linear-gradient(155deg, color-mix(in srgb, var(--color-surface) 90%, var(--color-bg)) 0%, var(--color-bg-alt) 100%);
  border-radius: 1rem;
  padding: 1.15rem;
  position: sticky;
  top: 96px;
}

.dashboard-about-preview__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--color-primary) 55%, var(--color-border));
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: color-mix(in srgb, var(--color-primary) 20%, var(--color-bg-alt));
}

.dashboard-about-preview__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-about-preview__avatar span {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
}

.dashboard-about-preview__tag {
  color: var(--color-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.dashboard-about-preview h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.dashboard-about-preview p {
  color: var(--color-text-muted);
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.65;
}

.dashboard-about-preview__chips {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dashboard-about-preview__chips span {
  font-size: 0.8rem;
  padding: 0.33rem 0.6rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  color: color-mix(in srgb, var(--color-text) 86%, var(--color-primary));
  background: color-mix(in srgb, var(--color-primary) 13%, transparent);
}

/* ───────────────────────────────────────────────────────────────────────────
   13. TESTIMONIOS
   ─────────────────────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.testimonial-text {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author cite { font-style: normal; font-weight: 600; }

/* ───────────────────────────────────────────────────────────────────────────
   14. SECCIÓN CTA
   ─────────────────────────────────────────────────────────────────────────── */
.cta-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--color-primary) 12%, transparent) 0%,
    var(--color-bg) 70%
  );
  border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 50ch;
  text-align: center;
}

/* ───────────────────────────────────────────────────────────────────────────
   15. PIE DE PÁGINA
   ─────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-description {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: none;
}

.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-links ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .footer-contact a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.footer-contact li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-button-text);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ───────────────────────────────────────────────────────────────────────────
   16. WHATSAPP FLOTANTE
   ─────────────────────────────────────────────────────────────────────────── */
.instagram-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fd1d1d 0%, #fcb045 45%, #833ab4 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1;
}

.instagram-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(131, 58, 180, 0.65);
  opacity: 1;
  color: #fff;
}

/* ───────────────────────────────────────────────────────────────────────────
   17. FLUJO DE RESERVAS
   ─────────────────────────────────────────────────────────────────────────── */
.booking-wrapper {
  padding-top: calc(68px + 3rem);
  padding-bottom: 5rem;
  min-height: 100dvh;
}

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.progress-step.active .step-number {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-button-text);
}

.progress-step.done .step-number {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #fff;
}

.step-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.progress-step.active .step-label { color: var(--color-primary); }

.progress-line {
  width: 80px;
  height: 2px;
  background-color: var(--color-border);
  margin-top: -1rem;
  margin-inline: 0.5rem;
}

.progress-line--done { background-color: var(--color-success); }

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-title { margin-bottom: 0.5rem; }

.booking-subtitle {
  color: var(--color-text-muted);
  max-width: none;
}

.booking-service-summary {
  width: min(100%, 640px);
  margin: 1rem auto 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid var(--color-border);
  background-color: color-mix(in srgb, var(--color-surface) 86%, var(--color-bg-alt));
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.booking-service-summary--card {
  width: 100%;
  margin: 0 0 1rem;
}

.booking-service-summary-thumb {
  width: 56px;
  height: 56px;
  border-radius: 0.7rem;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-service-summary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-service-summary-fallback {
  color: var(--color-primary);
  font-size: 1.2rem;
  opacity: 0.7;
}

.booking-service-summary-content {
  min-width: 0;
}

.booking-service-summary-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

.booking-service-summary-meta {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.booking-service-summary-price {
  color: var(--color-primary);
  font-weight: 700;
}

.booking-service-summary-note {
  margin: 0.25rem 0 0;
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--color-primary) 78%, var(--color-text));
}

/* Grilla de servicios (paso 1) */
.booking-services-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.booking-service-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: var(--color-text);
}

.booking-service-card:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--color-primary) 12%, transparent);
  opacity: 1;
}

.bsc-top {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsc-image { width: 100%; height: 100%; object-fit: cover; }

.bsc-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  opacity: 0.5;
}

.bsc-body { flex: 1; }
.bsc-name { margin-bottom: 0.25rem; }
.bsc-desc { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.4rem; }

.bsc-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bsc-duration { font-size: 0.85rem; color: var(--color-text-muted); }
.bsc-price {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--color-primary) 82%, var(--color-text));
  border: 1px solid color-mix(in srgb, var(--color-primary) 32%, transparent);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.bsc-arrow { font-size: 1.2rem; color: var(--color-text-muted); flex-shrink: 0; }

/* Calendario (paso 2) */
.booking-calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.calendar {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-month-label {
  font-size: 1.1rem;
  font-weight: 600;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.3rem;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.15s, color 0.15s;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  cursor: default;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
  box-shadow: none;
}

.calendar-day:disabled {
  opacity: 1;
}

.calendar-day.available {
  color: var(--color-text);
  background-color: color-mix(in srgb, var(--color-primary) 18%, var(--color-bg-alt));
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  cursor: pointer;
}

.calendar-day--empty {
  background-color: transparent;
  border-color: transparent;
}

/* Panel de horarios */
.time-slots-panel {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slots-title { font-size: 1.1rem; margin-bottom: 0; }
.slots-hint { color: var(--color-text-muted); font-size: 0.9rem; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
}

.slot-btn {
  padding: 0.65rem;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
  text-align: center;
}

.slot-btn:hover, .slot-btn.selected {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-button-text);
}

/* Confirmar paso 3 */
.booking-confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.booking-summary {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.75rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.summary-title { margin-bottom: 1.25rem; font-size: 1rem; }

.summary-list { display: flex; flex-direction: column; gap: 0.75rem; }

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.summary-item:last-child { border-bottom: none; }
.summary-item dt { color: var(--color-text-muted); }

.summary-item--price .price-highlight {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 700;
}

.change-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-form-panel {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.form-title { margin-bottom: 1.5rem; }

.booking-form-hint {
  margin-top: -0.85rem;
  margin-bottom: 1rem;
  max-width: none;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.form-label { font-size: 0.875rem; font-weight: 500; }

.form-input {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input[type="file"].form-input {
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
  cursor: pointer;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent);
}

.form-input[readonly],
.form-input:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  background-color: color-mix(in srgb, var(--color-surface) 85%, var(--color-bg-alt));
}

.form-textarea { resize: vertical; min-height: 90px; }

.form-group--error .form-input {
  border-color: var(--color-error);
}

.field-errors {
  font-size: 0.8rem;
  color: var(--color-error);
}

.form-fine-print {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  max-width: none;
}

/* Página de éxito */
.success-card {
  max-width: 560px;
  margin-inline: auto;
  background-color: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-success) 30%, transparent);
  border-radius: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.success-icon { color: var(--color-success); display: flex; justify-content: center; }
.success-title { font-size: 2rem; }
.success-subtitle { color: var(--color-text-muted); max-width: none; }

.confirmation-details {
  background-color: var(--color-bg-alt);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conf-code { display: flex; flex-direction: column; gap: 0.25rem; }
.conf-code-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); }
.conf-code-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-primary); letter-spacing: 0.1em; }

.conf-list { display: flex; flex-direction: column; gap: 0.5rem; }

.conf-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.conf-item dt { color: var(--color-text-muted); }
.conf-item dd { font-weight: 500; }

.success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ───────────────────────────────────────────────────────────────────────────
   18. MENSAJES
   ─────────────────────────────────────────────────────────────────────────── */
.messages-container {
  position: fixed;
  top: 78px;
  right: 1.5rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 360px;
}

.message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.message--success { background-color: color-mix(in srgb, var(--color-success) 15%, var(--color-surface)); border: 1px solid var(--color-success); }
.message--error { background-color: color-mix(in srgb, var(--color-error) 15%, var(--color-surface)); border: 1px solid var(--color-error); }
.message--warning { background-color: color-mix(in srgb, var(--color-warning) 15%, var(--color-surface)); border: 1px solid var(--color-warning); }
.message--info { background-color: color-mix(in srgb, var(--color-info) 15%, var(--color-surface)); border: 1px solid var(--color-info); }

.message-close { background: none; border: none; cursor: pointer; color: currentColor; font-size: 1rem; margin-left: 0.5rem; }

/* ───────────────────────────────────────────────────────────────────────────
   19. ANIMACIONES (IntersectionObserver)
   ─────────────────────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ───────────────────────────────────────────────────────────────────────────
   20. ESTADOS VACÍOS
   ─────────────────────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ───────────────────────────────────────────────────────────────────────────
   21. DISEÑO RESPONSIVO
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content--split {
    grid-template-columns: 1fr;
    padding-block: 4rem 3rem;
    text-align: center;
  }

  .hero-content--split .hero-main {
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero-content--split .hero-profession-wrapper,
  .hero-content--split .hero-actions {
    justify-content: center;
  }

  .hero-brief {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-title { text-align: center; }
  .about-actions--start { justify-content: center; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .booking-calendar-wrapper { grid-template-columns: 1fr; }
  .booking-confirm-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }

  .gallery-grid { columns: 2; }
  .dashboard-feature-grid { grid-template-columns: 1fr; }
  .dashboard-about-preview { position: static; }
  .dashboard-form { grid-template-columns: 1fr; }
  .dashboard-form-title { max-width: none; }
}

@media (max-width: 820px) {
  .container {
    padding-inline: 1rem;
  }

  .navbar {
    height: 64px;
  }

  .mobile-menu {
    padding: 1rem;
  }

  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-content {
    min-height: auto;
    padding-block: 2.5rem 2rem;
  }

  .hero-content--split {
    gap: 1.2rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 11vw, 3.8rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-highlights li {
    text-align: center;
    max-width: 100%;
  }

  .hero-profession-wrapper {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .hero-profession {
    letter-spacing: 0.16em;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 260px;
    min-width: 0 !important;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .booking-progress {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .progress-line {
    width: 52px;
  }

  .booking-service-card {
    padding: 1rem;
    gap: 0.9rem;
  }

  .bsc-top {
    width: 64px;
    height: 64px;
  }

  .booking-calendar-wrapper,
  .booking-confirm-grid {
    gap: 1rem;
  }

  .calendar,
  .time-slots-panel,
  .booking-summary,
  .booking-form-panel {
    padding: 1.1rem;
  }

  .messages-container {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .instagram-showcase__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.12) 0%, rgba(5, 5, 8, 0.7) 100%);
  }
}

@media (max-width: 680px) {
  .navbar-name {
    font-size: 1.05rem;
  }

  .hero-location {
    letter-spacing: 0.24em;
    font-size: 0.72rem;
  }

  .hero-brief {
    padding: 1rem;
  }

  .hero-brief__steps li {
    font-size: 0.86rem;
  }

  .about-title {
    text-align: center;
  }

  .about-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card__body,
  .news-card__body {
    padding: 1rem;
  }

  .booking-service-summary {
    align-items: flex-start;
  }

  .bsc-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .calendar-weekdays span,
  .calendar-day {
    font-size: 0.78rem;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  }

  .slot-btn {
    padding: 0.55rem;
    font-size: 0.85rem;
  }

  .conf-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px dashed var(--color-border);
  }

  .conf-item:last-child {
    border-bottom: none;
  }

  .instagram-fab {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  .instagram-showcase img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn {
    flex: 0 1 auto;
    width: 100%;
    min-width: 0 !important;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-scroll-indicator { display: none; }
  .hero-brief { padding: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .posts-pagination { justify-content: flex-start; }
  .dashboard-form-card { padding: 1.25rem; }
  .dashboard-form-page { padding-top: 92px; }
  .dashboard-form-actions .btn { flex: 1 1 100%; }
  .dashboard-rules-header { flex-direction: column; align-items: flex-start; }
  .dashboard-rules-table { display: block; overflow-x: auto; }
  .success-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .section {
    padding-block: 3.2rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 10.8vw, 2.8rem);
  }

  .hero-actions .btn,
  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .location-info,
  .calendar,
  .time-slots-panel,
  .booking-summary,
  .booking-form-panel,
  .dashboard-form-card {
    padding: 0.9rem;
  }

  .booking-progress {
    justify-content: flex-start;
  }

  .progress-line {
    width: 34px;
  }

  .conf-code-value {
    font-size: 1.45rem;
    letter-spacing: 0.05em;
  }

  .posts-pagination__link {
    padding: 0.5rem 0.75rem;
  }
}

/* ───────────────────────────────────────────────────────────────────────────
   22. REDUCCIÓN DE MOVIMIENTO
   ─────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

/* Responsiveness for steppers and headers */
@media (max-width: 940px) {
  .booking-progress {
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    justify-content: center;
  }

  .progress-line { width: 40px; }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  /* Oculta las etiquetas para ahorrar espacio en pantallas pequeñas */
  .step-label { display: none; }

  .booking-header,
  .reserve-hero__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 520px) {
  .booking-progress {
    gap: 0.6rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    border-width: 2px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  }

  .progress-line { width: 36px; height: 3px; margin-top: 0; }
  .progress-step { gap: 0.25rem; }
}

@media (max-width: 380px) {
  .booking-progress {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 34px;
  }

  .progress-step {
    flex: 0 0 auto;
    justify-content: center;
  }

  .step-number { width: 36px; height: 36px; font-size: 0.78rem; }
}

/* Tablet: show labels but keep compact */
@media (min-width: 641px) and (max-width: 940px) {
  .step-label { display: block; font-size: 0.72rem; color: var(--color-text-muted); }
}

/* Improve default visuals for steps */
.progress-step .step-number {
  background: rgba(255,255,255,0.02);
}
.progress-step.active .step-number {
  box-shadow: 0 8px 28px rgba(240,194,123,0.12);
}
.progress-step.done .step-number {
  box-shadow: 0 8px 28px rgba(60,180,120,0.08);
}

/* Loader global usado en formularios y búsquedas */
.submit-loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.95rem;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(8px);
}

.submit-loader__spinner {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 3px solid rgba(232, 187, 109, 0.2);
  border-top-color: rgba(232, 187, 109, 1);
  border-right-color: rgba(232, 187, 109, 0.7);
  animation: reserveSpin 0.8s linear infinite;
  box-shadow: 0 0 36px rgba(232, 187, 109, 0.2);
}

.submit-loader p {
  margin: 0;
  color: rgba(232, 187, 109, 0.98);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes reserveSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
