/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:             #1d3835;
  --bg-2:           #243f3b;
  --bg-card:        rgba(255,255,255,0.06);
  --glass:          rgba(255,255,255,0.08);
  --glass-strong:   rgba(255,255,255,0.13);
  --glass-border:   rgba(201,168,76,0.22);
  --glass-border-h: rgba(201,168,76,0.50);
  --ink:            #f5edd8;
  --ink-soft:       rgba(245,237,216,0.92);
  --ink-mute:       rgba(245,237,216,0.48);
  --accent:         #c9a84c;
  --accent-2:       #e8d5a3;
  --gold:           #c9a84c;
  --line:           rgba(201,168,76,0.18);
  --nav-h:          72px;
  --ease-out:       cubic-bezier(0.22,1,0.36,1);
  --ease-in-out:    cubic-bezier(0.65,0,0.35,1);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

em { font-style: italic; color: var(--accent); }

p { max-width: 65ch; }

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

/* ===== STARS CANVAS ===== */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* CSS fallback for pages without canvas stars */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.75) 1px, transparent 1px),
    radial-gradient(circle, rgba(201,162,232,0.55) 1px, transparent 1px);
  background-size: 220px 220px, 310px 310px;
  background-position: 10px 10px, 55px 140px;
  opacity: 0.3;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.nav.is-solid {
  background: rgba(10,7,26,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 3px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > li { position: relative; }

.nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--ink); background: var(--glass); }

.nav-links .nav-cta {
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: rgba(201,162,232,0.18);
  border-color: var(--accent);
  color: var(--ink);
}

.has-drop .nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(16,12,36,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem;
  flex-direction: column;
}

.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop { display: flex; }

.nav-drop a {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav-drop a:hover { color: var(--accent); background: var(--glass); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    background: rgba(29,56,53,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 3rem;
    gap: 0.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a { padding: 0.85rem 1rem; font-size: 1rem; }

  .has-drop .nav-drop {
    position: static;
    display: flex;
    transform: none;
    background: rgba(255,255,255,0.04);
    margin-top: 0.25rem;
  }
}

/* ===== MESH GRADIENT ===== */
.mesh {
  position: absolute;
  inset: -30% -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(45,100,80,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(201,168,76,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 80%, rgba(30,80,65,0.40) 0%, transparent 50%);
  filter: blur(70px);
  animation: meshPulse 18s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.08) rotate(3deg); }
  100% { transform: scale(0.96) rotate(-2deg); }
}

/* ===== HERO — SPLIT LAYOUT ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  /* Image column capped so on ultrawide screens it doesn't stretch too much */
  grid-template-columns: 1fr minmax(0, min(50%, 680px));
  overflow: hidden;
}

.hero-text-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 4rem 5rem 5rem;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
}
.hero-divider::before { background: linear-gradient(90deg, transparent, var(--accent)); }
.hero-divider::after  { background: linear-gradient(90deg, var(--accent), transparent); }

.hero-divider-star { color: var(--accent); font-size: 1rem; }

.hero-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.7); }
}

/* RIGHT SIDE — PHOTO */
.hero-image-side {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  object-position: center 15%;
  filter: brightness(0.78) contrast(1.05);
}

.hero-image-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #1d3835 0%, transparent 28%, transparent 72%, #243f3b 100%),
    linear-gradient(180deg, #243f3b 0%, transparent 15%, transparent 85%, #1d3835 100%);
  z-index: 1;
}

.hero-image-side::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 40px;
  bottom: 50px;
  left: 15%;
  border: 1px solid rgba(201,162,232,0.2);
  z-index: 2;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 80px;
  right: 48px;
  z-index: 4;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-badge-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(201,162,232,0.45);
  border-radius: 50%;
  animation: rotateSlow 22s linear infinite;
}

.hero-badge-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  line-height: 1.5;
}

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

/* HERO RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }

  .hero-image-side {
    height: auto;
    min-height: unset;
    max-height: unset;
    order: -1;
  }
  .hero-image-side img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
    display: block;
  }
  .hero-image-side::after { left: 5%; right: 5%; top: 12px; bottom: 12px; }
  .hero-badge { display: none; }

  .hero-text-side {
    padding: 2.5rem 1.5rem 4rem;
  }

  .scroll-hint { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

/* ── Todos los botones: dorado sólido con relieve ── */
.btn-primary,
.btn-ghost {
  background: linear-gradient(160deg, #dbb95e 0%, #c9a84c 55%, #b08930 100%);
  border: 1px solid rgba(255,255,255,0.18);
  color: #1a3330;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  box-shadow: 0 4px 0 #8a6618, 0 6px 20px rgba(201,168,76,0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
}
.btn-primary:hover,
.btn-ghost:hover {
  background: linear-gradient(160deg, #e8c96a 0%, #d4b356 55%, #c9a84c 100%);
  box-shadow: 0 5px 0 #8a6618, 0 10px 28px rgba(201,168,76,0.55);
  transform: translateY(-2px);
  color: #1a3330;
}
.btn-primary:active,
.btn-ghost:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #8a6618, 0 3px 10px rgba(201,168,76,0.3);
}

.btn-accent {
  background: rgba(201,162,232,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent:hover {
  background: rgba(201,162,232,0.28);
  box-shadow: 0 4px 20px rgba(201,162,232,0.2);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
  overflow: hidden;
}

@supports not (backdrop-filter: blur(16px)) {
  .glass-card { background: rgba(20,14,45,0.9); }
}

.glass-card:hover {
  border-color: var(--glass-border-h);
  box-shadow: 0 16px 48px rgba(120,60,200,0.15), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

/* ===== SECTION LAYOUT ===== */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  max-width: 55ch;
}

/* ===== SERVICES GRID (index) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.service-card {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: row;
  gap: 1.75rem;
  align-items: flex-start;
}

.service-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--glass-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
  max-width: unset;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
  transition: gap 0.2s;
}

.service-card .card-link:hover { gap: 0.7rem; }

@media (max-width: 540px) {
  .service-card { flex-direction: column; gap: 1rem; }
}

/* ===== TREATMENTS GRID (faciales/rituales) ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.treatment-card {
  padding: 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.treatment-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.treatment-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201,162,232,0.4));
}

.treatment-body h4 { margin-bottom: 0.5rem; font-size: 1.3rem; }

.treatment-body p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.duration-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  background: rgba(232,192,160,0.1);
  border: 1px solid rgba(232,192,160,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
}

@media (max-width: 600px) {
  .treatment-card { flex-direction: column; gap: 1.25rem; }
  .treatment-icon { width: 56px; height: 56px; }
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  text-align: center;
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: -1rem;
}

.quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero .mesh { inset: -50% -20%; }

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.breadcrumb a { color: var(--ink-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { color: var(--ink-soft); margin: 0 auto; font-size: 1.05rem; }

/* ===== WHO AM I ===== */
.quien-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .quien-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.quien-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.quien-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.quien-content p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: unset;
  line-height: 1.75;
}

.credentials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 640px) { .credentials-row { grid-template-columns: 1fr; } }

.credential-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.credential-card .cred-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.credential-card h4 { font-size: 1rem; margin-bottom: 0.4rem; font-family: "Inter", sans-serif; }
.credential-card p { font-size: 0.85rem; color: var(--ink-mute); max-width: unset; }

/* ===== TALLERES ===== */
.talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.taller-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.taller-card.is-coming {
  opacity: 0.55;
  border-style: dashed;
  border-color: var(--line);
}

.taller-emoji { font-size: 2.5rem; }
.taller-card h3 { font-size: 1.4rem; }
.taller-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0 auto; }

.coming-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  margin-top: 0.5rem;
}

/* ===== CUMPLEAÑOS ===== */
.cumple-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 640px) { .cumple-features { grid-template-columns: 1fr; } }

.cumple-feature {
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cumple-feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.cumple-feature h4 { font-size: 1.1rem; margin-bottom: 0.4rem; font-family: "Inter", sans-serif; font-weight: 600; }
.cumple-feature p { font-size: 0.9rem; color: var(--ink-soft); max-width: unset; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,162,232,0.12);
  background: var(--glass-strong);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-mute); }

.form-group select option { background: #1a1535; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }

.contact-info-card h4 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.3rem; font-family: "Inter", sans-serif; }
.contact-info-card p { font-size: 0.95rem; max-width: unset; }
.contact-info-card a { color: var(--accent); transition: color 0.2s; }
.contact-info-card a:hover { color: var(--ink); }

/* ===== CALENDAR (reservar) ===== */
.calendar-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.coming-banner {
  background: rgba(201,162,232,0.08);
  border: 1px solid rgba(201,162,232,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.coming-banner .banner-icon { font-size: 1.5rem; }
.coming-banner p { font-size: 0.925rem; color: var(--ink-soft); max-width: unset; margin: 0; }
.coming-banner strong { color: var(--accent); }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-month-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.cal-nav-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.cal-nav-btn:hover { background: var(--glass-strong); color: var(--ink); }

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

.cal-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.5rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cal-day:hover { background: var(--glass); color: var(--ink); border-color: var(--glass-border); }
.cal-day.is-today { color: var(--accent); font-weight: 600; }
.cal-day.is-selected { background: rgba(201,162,232,0.2); border-color: var(--accent); color: var(--ink); }
.cal-day.is-past { opacity: 0.28; pointer-events: none; }
.cal-day.is-empty { pointer-events: none; }

.timeslots {
  margin-top: 2rem;
}

.timeslots h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

@media (max-width: 480px) { .timeslots-grid { grid-template-columns: repeat(3, 1fr); } }

.timeslot {
  padding: 0.65rem;
  text-align: center;
  font-size: 0.875rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink-soft);
  background: var(--glass);
  transition: all 0.2s;
}

.timeslot:hover { border-color: var(--accent); color: var(--ink); }
.timeslot.is-selected { background: rgba(201,162,232,0.2); border-color: var(--accent); color: var(--ink); font-weight: 500; }
.timeslot.is-taken { opacity: 0.3; pointer-events: none; text-decoration: line-through; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-align: center;
  white-space: nowrap;
}

.footer-left {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-left a,
.footer-right a {
  font-size: 0.825rem;
  color: var(--ink-mute);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-left a:hover,
.footer-right a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-left, .footer-right { justify-content: center; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-split] { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.1s;
}

.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(201,162,232,0.5);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-dot.is-ready,
.cursor-ring.is-ready { opacity: 1; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-section .mesh { inset: -60% -10%; }

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--ink-soft); margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.divider {
  height: 1px;
  background: var(--line);
  max-width: 1280px;
  margin: 0 auto;
}

.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.whatsapp-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
