﻿:root {
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --surface: #101011;
  --surface-2: #17171b;
  --text: #f5f5f3;
  --text-soft: #b6b6bb;
  --text-muted: #8b8b91;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --red: #c40018;
  --red-strong: #e1061b;
  --red-dark: #7b0010;
  --red-glow: rgba(196, 0, 24, 0.35);
  --white: #ffffff;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.50);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 12px 26px rgba(0, 0, 0, 0.25);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1240px;
  --transition: 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196, 0, 24, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(196, 0, 24, 0.10), transparent 22%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button { cursor: pointer; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: #050505;
  font-weight: 900;
}

.skip-link:focus { left: 12px; }

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-strong));
  box-shadow: 0 0 18px var(--red-glow);
}

.section {
  position: relative;
  padding: 104px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.compact { padding: 38px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 900;
}

h1,
h2,
.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 54px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.96;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-md);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-grid;
  line-height: 1;
}

.brand-with-logo {
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(196, 0, 24, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-main {
  font-weight: 950;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.06em;
}

.brand-sub {
  color: var(--red-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.98rem;
  transition: color var(--transition);
}

.desktop-nav a:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 850;
  border: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-large {
  min-height: 60px;
  padding: 0 28px;
}

.btn-header {
  min-height: 48px;
  padding: 0 20px;
}

.btn-full { width: 100%; }

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  box-shadow: 0 16px 36px rgba(196, 0, 24, 0.35);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px 20px;
  border-top: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.96);
}

.mobile-menu a {
  color: var(--text);
  font-weight: 700;
  padding: 6px 0;
}

.mobile-menu.active { display: flex; }

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.26;
}

.hero-orb-1 {
  width: 380px;
  height: 380px;
  background: var(--red);
  top: 120px;
  left: -120px;
}

.hero-orb-2 {
  width: 340px;
  height: 340px;
  background: #701018;
  right: -80px;
  bottom: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.hero-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 13px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
}

.hero-logo-pill img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
}

.hero-logo-pill span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-copy h1 {
  font-size: clamp(4rem, 7vw, 6.9rem);
  line-height: 0.9;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-copy h1 span {
  display: block;
  color: var(--red-strong);
  text-shadow: 0 0 18px rgba(255, 51, 91, 0.10);
}

.hero-description {
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.92;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.trust-pill {
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.93rem;
}

.microcopy {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
}

.hero-visual { position: relative; }

.hero-main-card {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.photo-showcase {
  overflow: hidden;
  min-height: 580px;
  isolation: isolate;
}

.photo-showcase .hero-logo-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  background: #000;
  transform: scale(1.015);
}

.hero-image-overlay {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.40)),
    radial-gradient(circle at 18% 18%, rgba(225,6,27,0.22), transparent 32%);
}

.hero-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 3;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-floating-card {
  position: absolute;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(12, 12, 13, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.floating-card-1 {
  top: 28px;
  left: -24px;
}

.floating-card-2 {
  right: -20px;
  bottom: 34px;
}

.floating-card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 900;
}

.hero-floating-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-grid article {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.050), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.proof-grid strong {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-grid span { color: var(--text-soft); }

.about-grid,
.booking-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.about-cards,
.services-grid,
.reviews-grid,
.team-grid {
  display: grid;
  gap: 20px;
}

.about-cards { grid-template-columns: repeat(2, 1fr); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }

.info-card,
.service-card,
.review-card,
.team-card,
.booking-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.050), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.info-card { padding: 28px 24px; }

.info-number {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 12px;
}

.info-card h3 { margin-bottom: 10px; }
.info-card p { color: var(--text-soft); }

.service-card {
  position: relative;
  padding: 30px 28px;
  overflow: hidden;
  min-height: 300px;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(196, 0, 24, 0.10);
  filter: blur(18px);
}

.service-card:hover,
.team-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 0, 24, 0.28);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(196, 0, 24, 0.14);
  color: var(--red-strong);
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}

.service-link,
.team-link {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 850;
  border: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 3px;
}

.service-link:hover,
.team-link:hover {
  color: var(--red-strong);
}

.signature-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(217, 4, 41, 0.16), rgba(255,255,255,0.03)), #0f0f10;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.signature-copy p {
  color: var(--text-soft);
  line-height: 1.85;
}

.signature-points {
  display: grid;
  gap: 14px;
  align-content: center;
}

.signature-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  font-weight: 750;
}

.team-card {
  overflow: hidden;
  transition: var(--transition);
}

.team-photo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(225, 6, 27, 0.18), transparent 30%),
    #050505;
}

.team-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.team-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.team-avatar {
  min-height: 230px;
  display: grid;
  place-items: center;
  font-size: 5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 30% 20%, rgba(225,6,27,.30), transparent 26%),
    linear-gradient(135deg, #151518, #050505);
  color: var(--white);
}

.team-avatar.angel {
  background:
    radial-gradient(circle at 55% 25%, rgba(225,6,27,.35), transparent 24%),
    linear-gradient(135deg, #17171b, #070707);
}

.team-avatar.pending { color: var(--red-strong); }

.team-card-content { padding: 24px; }

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.team-role {
  color: var(--red-strong);
  font-weight: 850;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.team-card p {
  color: var(--text-soft);
  line-height: 1.82;
  margin-bottom: 18px;
}

.review-card {
  min-height: 270px;
  padding: 28px;
  transition: var(--transition);
}

.review-stars {
  margin-bottom: 16px;
  color: var(--red-strong);
  letter-spacing: 0.18em;
}

.review-card p {
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 18px;
}

.review-card span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.rating-spotlight {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(217,4,41,0.20), rgba(255,255,255,0.03)), #101011;
  border: 1px solid var(--line);
  text-align: center;
}

.rating-value {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 12px;
}

.rating-spotlight p { color: var(--text-soft); }

.booking-card { padding: 30px; }

.booking-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217,4,41,0.50);
  background: rgba(255,255,255,0.055);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field select option {
  background: #101011;
  color: var(--white);
}

.booking-note,
.contact-hints {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.booking-note { line-height: 1.65; }

.contact-hints {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.contact-copy h2 { margin-bottom: 18px; }

.contact-block + .contact-block { margin-top: 22px; }

.contact-block h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-block p {
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact-actions .btn {
  min-width: 122px;
}

.map-card {
  min-height: 420px;
  padding: 32px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 20% 15%, rgba(225,6,27,.28), transparent 32%),
    linear-gradient(135deg,#141416,#050505);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.map-card span {
  color: var(--red-strong);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
}

.map-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .95;
  margin: 10px 0;
}

.map-card p { color: var(--text-soft); }

.final-cta-box {
  padding: 58px 36px;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(217,4,41,0.20), rgba(255,255,255,0.035)), #101011;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.final-cta-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  line-height: 1.9;
}

.final-actions { justify-content: center; }

.site-footer {
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand-logo {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(196, 0, 24, 0.18);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.site-footer h4 { margin-bottom: 12px; }

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-soft);
  line-height: 1.9;
}

.site-footer ul { list-style: none; }

.floating-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 60;
  pointer-events: none;
}

.floating-actions a { pointer-events: auto; }

.floating-call,
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  z-index: 60;
  min-height: 58px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 950;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.floating-call {
  right: 20px;
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  box-shadow: 0 18px 40px rgba(196, 0, 24, 0.44);
}

.floating-whatsapp {
  left: 20px;
  background: linear-gradient(135deg, #1fb45a, #25D366);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.36);
}

.service-card,
.team-card,
.review-card,
.info-card,
.booking-card,
.map-card,
.signature-box,
.final-cta-box {
  will-change: transform;
}

.service-card:focus-within,
.team-card:focus-within,
.booking-card:focus-within {
  border-color: rgba(225, 6, 27, 0.45);
  box-shadow: 0 22px 58px rgba(0,0,0,0.38), 0 0 0 1px rgba(225,6,27,0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .signature-box,
  .booking-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid,
  .footer-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cards { grid-template-columns: repeat(2, 1fr); }

  .floating-card-1 { left: 10px; }
  .floating-card-2 { right: 10px; }
}

@media (max-width: 920px) {
  .header-actions { display: none; }
}

@media (max-width: 820px) {
  .section { padding: 86px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .hero { min-height: auto; padding-top: 54px; }
  .photo-showcase { min-height: 430px; }
  .photo-showcase .hero-logo-img { min-height: 400px; }
  .hero-image-overlay { inset: 18px; }
  .hero-badge { left: 30px; bottom: 30px; }

  .services-grid,
  .reviews-grid,
  .footer-grid,
  .about-cards,
  .team-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .form-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 320px; }

  .brand-with-logo {
    grid-template-columns: 46px auto;
    gap: 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  body { padding-bottom: 88px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .header-inner { min-height: 76px; }
  .brand-main { font-size: 1.65rem; }
  .brand-sub { font-size: 0.68rem; }

  .hero-copy h1 {
    font-size: clamp(3.0rem, 15vw, 4.6rem);
  }

  .hero-ctas,
  .contact-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .hero-main-card { margin-bottom: 14px; }
  .trust-pill { width: 100%; text-align: center; }

  .signature-box,
  .booking-card,
  .final-cta-box {
    padding: 28px 20px;
  }

  .photo-showcase { min-height: 360px; }
  .photo-showcase .hero-logo-img { min-height: 330px; }
  .hero-image-overlay { inset: 14px; border-radius: 22px; }

  .hero-badge {
    left: 24px;
    right: 24px;
    bottom: 24px;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .floating-actions {
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,0.92) 30%, rgba(5,5,5,0.98));
    backdrop-filter: blur(10px);
  }

  .floating-call,
  .floating-whatsapp {
    position: static;
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    font-size: 0.95rem;
  }
}

/* =========================================================
   BRAND FUSION — FUSIÓN VISUAL DEL LOGO CON LA WEB
   ========================================================= */

.brand-fusion {
  padding-top: 52px;
  padding-bottom: 52px;
}

.brand-fusion-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 300px;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(196, 0, 24, 0.10), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.brand-fusion-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fusion-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(225, 6, 27, 0.16);
  box-shadow: 0 0 24px rgba(196, 0, 24, 0.10);
}

.fusion-ring-1 {
  width: 420px;
  height: 420px;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(225, 6, 27, 0.22);
}

.fusion-ring-2 {
  width: 520px;
  height: 520px;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(225, 6, 27, 0.10);
}

.fusion-ring-3 {
  width: 720px;
  height: 720px;
  right: -420px;
  top: -220px;
  border-color: rgba(255,255,255,0.04);
}

.brand-fusion-mark,
.brand-fusion-copy {
  position: relative;
  z-index: 2;
}

.brand-fusion-mark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-fusion-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,0,24,0.16), transparent 58%),
    rgba(0,0,0,0.32);
}

.brand-fusion-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.brand-fusion-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 27, 0.20);
  box-shadow: 0 0 36px rgba(196, 0, 24, 0.12);
}

.brand-fusion-logo {
  position: relative;
  z-index: 2;
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}

.brand-fusion-copy {
  max-width: 700px;
}

.brand-fusion-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.brand-fusion-copy p:last-child {
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.9;
  max-width: 680px;
}

@media (max-width: 920px) {
  .brand-fusion-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding: 30px 22px;
  }

  .brand-fusion-copy {
    max-width: none;
  }

  .brand-fusion-copy p:last-child {
    max-width: none;
  }

  .fusion-ring-1 {
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
  }

  .fusion-ring-2 {
    left: 50%;
    top: -130px;
    transform: translateX(-50%);
  }

  .fusion-ring-3 {
    right: -300px;
    top: auto;
    bottom: -340px;
  }
}

@media (max-width: 560px) {
  .brand-fusion {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .brand-fusion-shell {
    border-radius: 26px;
  }

  .brand-fusion-logo-wrap {
    width: 180px;
    height: 180px;
  }

  .brand-fusion-logo {
    width: 136px;
    height: 136px;
  }

  .fusion-ring-1 {
    width: 300px;
    height: 300px;
  }

  .fusion-ring-2 {
    width: 380px;
    height: 380px;
  }
}

/* =========================================================
   SERVICIOS PREMIUM — SECCIÓN MÁS VISUAL Y VENDIBLE
   Convierte servicios en experiencia de elección.
   ========================================================= */

.services-premium {
  overflow: hidden;
}

.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 6, 27, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.016)),
    #0d0d0f;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  overflow: hidden;
}

.service-showcase::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 27, 0.18);
  box-shadow:
    0 0 0 56px rgba(225, 6, 27, 0.025),
    0 0 80px rgba(196, 0, 24, 0.10);
  pointer-events: none;
  z-index: -1;
}

.service-showcase-copy {
  max-width: 720px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: rgba(225, 6, 27, 0.12);
  border: 1px solid rgba(225, 6, 27, 0.26);
  color: #ffd8dc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-showcase h3 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.service-showcase p {
  max-width: 650px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.service-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-showcase-visual {
  min-height: 310px;
  display: grid;
  place-items: center;
}

.service-orbit {
  position: relative;
  width: min(340px, 78vw);
  height: min(340px, 78vw);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,6,27,0.18), transparent 48%),
    rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-orbit::before {
  inset: 28px;
  border: 1px solid rgba(225,6,27,0.30);
  box-shadow: 0 0 42px rgba(196,0,24,0.15);
}

.service-orbit::after {
  inset: 78px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.78), rgba(0,0,0,0.30)),
    linear-gradient(135deg, rgba(225,6,27,0.30), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}

.service-orbit span {
  position: absolute;
  z-index: 2;
  min-width: 96px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,9,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.service-orbit span:nth-child(1) {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.service-orbit span:nth-child(2) {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.service-orbit span:nth-child(3) {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.service-orbit span:nth-child(4) {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.service-route {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 16px;
  margin: 28px 0 30px;
}

.route-item {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    #0b0b0c;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.route-item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.route-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.route-item p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.route-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 27, 0.50), transparent);
  box-shadow: 0 0 18px rgba(225,6,27,0.22);
}

.services-grid-premium {
  align-items: stretch;
}

.service-card-premium {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 0%, rgba(225,6,27,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.045) 42%, transparent 64%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card-premium:hover::before {
  opacity: 1;
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.service-tag {
  min-height: 30px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-result {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--red-strong);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-result strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-cut {
  border-color: rgba(225, 6, 27, 0.20);
}

.service-color {
  background:
    radial-gradient(circle at 90% 0%, rgba(225,6,27,0.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-texture {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.070), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-barber {
  background:
    radial-gradient(circle at 55% 0%, rgba(225,6,27,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

@media (max-width: 1180px) {
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase-visual {
    min-height: 260px;
  }

  .service-route {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 1px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(225, 6, 27, 0.50), transparent);
  }
}

@media (max-width: 560px) {
  .service-showcase {
    padding: 26px 18px;
    border-radius: 26px;
  }

  .service-showcase-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-showcase-visual {
    min-height: 220px;
  }

  .service-orbit {
    width: min(280px, 82vw);
    height: min(280px, 82vw);
  }

  .service-orbit span {
    min-width: 78px;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .service-card-premium {
    min-height: auto;
  }

  .route-item {
    min-height: auto;
  }
}

/* =========================================================
   SERVICIOS PREMIUM — SECCIÓN MÁS VISUAL Y VENDIBLE
   Convierte servicios en experiencia de elección.
   ========================================================= */

.services-premium {
  overflow: hidden;
}

.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 6, 27, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.016)),
    #0d0d0f;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  overflow: hidden;
}

.service-showcase::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 27, 0.18);
  box-shadow:
    0 0 0 56px rgba(225, 6, 27, 0.025),
    0 0 80px rgba(196, 0, 24, 0.10);
  pointer-events: none;
  z-index: -1;
}

.service-showcase-copy {
  max-width: 720px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: rgba(225, 6, 27, 0.12);
  border: 1px solid rgba(225, 6, 27, 0.26);
  color: #ffd8dc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-showcase h3 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.service-showcase p {
  max-width: 650px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.service-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-showcase-visual {
  min-height: 310px;
  display: grid;
  place-items: center;
}

.service-orbit {
  position: relative;
  width: min(340px, 78vw);
  height: min(340px, 78vw);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,6,27,0.18), transparent 48%),
    rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-orbit::before {
  inset: 28px;
  border: 1px solid rgba(225,6,27,0.30);
  box-shadow: 0 0 42px rgba(196,0,24,0.15);
}

.service-orbit::after {
  inset: 78px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.78), rgba(0,0,0,0.30)),
    linear-gradient(135deg, rgba(225,6,27,0.30), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}

.service-orbit span {
  position: absolute;
  z-index: 2;
  min-width: 96px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,9,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.service-orbit span:nth-child(1) {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.service-orbit span:nth-child(2) {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.service-orbit span:nth-child(3) {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.service-orbit span:nth-child(4) {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.service-route {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 16px;
  margin: 28px 0 30px;
}

.route-item {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    #0b0b0c;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.route-item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.route-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.route-item p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.route-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 27, 0.50), transparent);
  box-shadow: 0 0 18px rgba(225,6,27,0.22);
}

.services-grid-premium {
  align-items: stretch;
}

.service-card-premium {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 0%, rgba(225,6,27,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.045) 42%, transparent 64%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card-premium:hover::before {
  opacity: 1;
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.service-tag {
  min-height: 30px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-result {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--red-strong);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-result strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-cut {
  border-color: rgba(225, 6, 27, 0.20);
}

.service-color {
  background:
    radial-gradient(circle at 90% 0%, rgba(225,6,27,0.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-texture {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.070), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.016)),
    #0d0d0f;
}

.service-barber {
  background:
    radial-gradient(circle at 55% 0%, rgba(225,6,27,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.016)),
    #0d0d0f;
}

@media (max-width: 1180px) {
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase-visual {
    min-height: 260px;
  }

  .service-route {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 1px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(225, 6, 27, 0.50), transparent);
  }
}

@media (max-width: 560px) {
  .service-showcase {
    padding: 26px 18px;
    border-radius: 26px;
  }

  .service-showcase-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-showcase-visual {
    min-height: 220px;
  }

  .service-orbit {
    width: min(280px, 82vw);
    height: min(280px, 82vw);
  }

  .service-orbit span {
    min-width: 78px;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .service-card-premium {
    min-height: auto;
  }

  .route-item {
    min-height: auto;
  }
}

/* =========================================================
   FINAL PREMIUM RELAJADO — ANJU
   Más blanco, menos alerta, rojo granate dosificado y CTA menos invasivos.
   Esta capa mantiene la estructura premium y mejora comodidad visual.
   ========================================================= */

:root {
  --bg: #f4eee8;
  --bg-soft: #fbf7f2;
  --surface: #ffffff;
  --surface-2: #f7f0e9;
  --text: #171313;
  --text-soft: #5f5554;
  --text-muted: #827878;
  --line: rgba(22, 18, 18, 0.10);
  --line-strong: rgba(22, 18, 18, 0.16);
  --red: #8f1722;
  --red-strong: #ad2432;
  --red-dark: #561018;
  --red-glow: rgba(143, 23, 34, 0.16);
  --white: #ffffff;
  --shadow-xl: 0 34px 80px rgba(31, 22, 18, 0.14);
  --shadow-lg: 0 22px 54px rgba(31, 22, 18, 0.12);
  --shadow-md: 0 14px 34px rgba(31, 22, 18, 0.09);
}

html { background: #f4eee8; }

body {
  background: radial-gradient(circle at top left, rgba(143, 23, 34, 0.07), transparent 28%), linear-gradient(180deg, #f7f1eb 0%, #f4eee8 44%, #fbf7f2 100%);
  color: var(--text);
}

.section { border-top-color: rgba(22,18,18,0.06); }

.site-header {
  background: rgba(250, 246, 240, 0.88);
  border-bottom: 1px solid rgba(22,18,18,0.08);
  box-shadow: 0 10px 28px rgba(31,22,18,0.05);
}
.site-header.scrolled { background: rgba(250, 246, 240, 0.96); box-shadow: 0 16px 34px rgba(31,22,18,0.08); }
.brand-main, .desktop-nav a, .mobile-menu a { color: #171313; }
.brand-sub, .eyebrow, .floating-card-label, .team-role, .review-stars, .map-card span, .route-item span, .service-result span { color: #9f2633; }
.progress-bar { height: 2px; background: linear-gradient(90deg, #5e171e, #ad2432); box-shadow: none; }

.btn-primary { background: linear-gradient(135deg, #151313, #332726); color: #fff; box-shadow: 0 14px 26px rgba(31, 22, 18, 0.16); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(31, 22, 18, 0.18); }
.btn-secondary { color: #171313; background: rgba(255,255,255,0.62); border-color: rgba(31,22,18,0.16); box-shadow: 0 10px 24px rgba(31,22,18,0.055); }
.header-actions .btn-primary, .header-actions .btn-secondary, .mobile-menu-actions .btn-primary, .mobile-menu-actions .btn-secondary { min-height: 44px; box-shadow: none; }

.hero, .brand-fusion, .final-cta, .site-footer { color: #f7f1eb; }
.hero { background: radial-gradient(circle at 15% 20%, rgba(143, 23, 34, 0.16), transparent 28%), linear-gradient(135deg, #090706 0%, #171010 52%, #080707 100%); }
.hero .section-heading p, .hero-description, .hero .microcopy, .hero .trust-pill, .hero-floating-card strong { color: rgba(247,241,235,0.78); }
.hero-copy h1 span { color: #f4e6e0; text-shadow: none; }
.hero-orb { opacity: 0.10; filter: blur(126px); }
.hero-orb-1 { background: #7a1821; }
.hero-orb-2 { background: #3d1115; }
.hero-logo-pill, .trust-pill, .hero-floating-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.photo-showcase, .hero-main-card { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.10); box-shadow: 0 34px 70px rgba(0,0,0,0.30); }
.hero-image-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.34)), radial-gradient(circle at 18% 18%, rgba(143,23,34,0.10), transparent 34%); }
.hero-badge { background: rgba(250,246,240,0.90); color: #171313; border-color: rgba(255,255,255,0.20); box-shadow: 0 18px 32px rgba(0,0,0,0.16); }
.hero .btn-primary, .final-cta .btn-primary, .site-footer .btn-primary { background: #f7f1eb; color: #171313; }
.hero .btn-secondary, .final-cta .btn-secondary, .site-footer .btn-secondary { color: #f7f1eb; background: rgba(255,255,255,0.065); border-color: rgba(255,255,255,0.18); }

.section-light { background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.18)), #f4eee8; color: #171313; }
.section-light .section-heading p, .section-light p, .section-light .contact-hints, .section-light .booking-note, .section-light .review-card span, .section-light .team-card p, .section-light .service-card p, .section-light .info-card p, .section-light .route-item p, .section-light .service-showcase p, .section-light .service-result strong { color: #5f5554; }
.info-card, .service-card, .review-card, .team-card, .booking-card, .proof-grid article, .route-item, .service-showcase, .service-result { background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.64)), #fffaf5; border-color: rgba(31,22,18,0.09); box-shadow: var(--shadow-md); }
.info-card:hover, .service-card:hover, .team-card:hover, .review-card:hover { border-color: rgba(143,23,34,0.18); }
.service-card::after, .service-showcase::before { background: rgba(143,23,34,0.045); box-shadow: none; }
.service-icon, .service-kicker, .specialist-chip { background: rgba(143,23,34,0.075); color: #8f1722; border-color: rgba(143,23,34,0.14); }
.service-orbit, .specialist-match, .team-avatar, .team-avatar.angel, .team-avatar.pending, .map-card { background: radial-gradient(circle at 50% 28%, rgba(143,23,34,0.10), transparent 34%), linear-gradient(135deg, #fffaf5, #efe6dc); color: #171313; border: 1px solid rgba(31,22,18,0.09); box-shadow: var(--shadow-md); }
.service-orbit::before, .service-orbit::after, .specialist-match::before, .specialist-match::after, .fusion-ring { border-color: rgba(143,23,34,0.13); box-shadow: none; }
.service-orbit span { background: rgba(255,255,255,0.86); color: #171313; border-color: rgba(31,22,18,0.10); box-shadow: 0 12px 28px rgba(31,22,18,0.10); }
.signature { background: #f4eee8; }
.signature-box { background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.44)), #fffaf5; border-color: rgba(31,22,18,0.09); box-shadow: var(--shadow-lg); color: #171313; }
.signature-copy p, .signature-point { color: #5f5554; }
.signature-point { background: rgba(255,255,255,0.72); border-color: rgba(31,22,18,0.08); }
.brand-fusion, .final-cta, .site-footer { background: radial-gradient(circle at 20% 20%, rgba(143,23,34,0.11), transparent 28%), linear-gradient(135deg, #0b0909, #171111 56%, #090707); }
.brand-fusion-shell, .final-cta-box { background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)), rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.11); box-shadow: 0 28px 66px rgba(0,0,0,0.22); }
.brand-fusion-copy p:last-child, .final-cta-box p, .site-footer p, .site-footer li, .site-footer a { color: rgba(247,241,235,0.74); }
.brand-fusion-logo-wrap { background: radial-gradient(circle at 50% 50%, rgba(143,23,34,0.14), transparent 58%), rgba(255,255,255,0.035); }
.team-photo-card { background: #eee3d8; }
.team-photo-card::after { background: linear-gradient(180deg, transparent 60%, rgba(20,14,13,0.18)); }
.review-card p { color: #231d1c; }
.rating-spotlight { background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.52)), #fffaf5; border-color: rgba(31,22,18,0.09); box-shadow: var(--shadow-md); }
.field input, .field select, .field textarea { color: #171313; background: rgba(255,255,255,0.78); border-color: rgba(31,22,18,0.12); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(143,23,34,0.34); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #8b817e; }
.field select option { background: #fffaf5; color: #171313; }

.smart-points { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; padding: 0; }
.smart-points li { position: relative; padding-left: 18px; color: #5f5554; line-height: 1.7; }
.smart-points li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: #8f1722; opacity: .74; }
.specialist-match-inner { position: relative; z-index: 2; display: grid; place-items: center; gap: 14px; width: 100%; height: 100%; text-align: center; }
.specialist-match-inner strong { max-width: 230px; font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: .95; letter-spacing: -0.04em; color: #171313; }
.specialist-chip { min-height: 34px; padding: 0 14px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

.floating-actions { bottom: 18px; }
.floating-call, .floating-whatsapp { min-height: 48px; padding: 0 18px; font-size: 0.92rem; font-weight: 850; border: 1px solid rgba(31,22,18,0.10); box-shadow: 0 12px 28px rgba(31,22,18,0.10); background: rgba(255,250,245,0.92); color: #171313; }
.floating-whatsapp::before { content: ""; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #6e8e63; }

@media (max-width: 820px) {
  .mobile-menu { background: rgba(250,246,240,0.98); border-top-color: rgba(31,22,18,0.08); }
}
@media (max-width: 560px) {
  body { padding-bottom: 78px; background: #f4eee8; }
  .section { padding-top: 74px; padding-bottom: 74px; }
  .hero { background: radial-gradient(circle at 20% 12%, rgba(143,23,34,0.10), transparent 34%), linear-gradient(135deg, #090707, #151010 58%, #080707); }
  .hero-orb { opacity: 0.055; }
  .btn-primary, .btn-secondary { box-shadow: none; }
  .floating-actions { bottom: 0; gap: 8px; padding: 9px 12px 11px; background: linear-gradient(180deg, rgba(244,238,232,0), rgba(244,238,232,0.86) 34%, rgba(244,238,232,0.97)); backdrop-filter: blur(12px); }
  .floating-call, .floating-whatsapp { min-height: 48px; border-radius: 18px; background: rgba(255,250,245,0.95); color: #171313; box-shadow: 0 10px 22px rgba(31,22,18,0.09); }
  .floating-call:hover, .floating-whatsapp:hover { transform: none; }
  .trust-pill, .info-card, .service-card, .review-card, .team-card, .booking-card, .proof-grid article, .route-item, .service-showcase { box-shadow: 0 12px 26px rgba(31,22,18,0.075); }
}

/* =========================================================
   CAPA FINAL — ANJU BALANCE PREMIUM
   Mantiene identidad oscura, añade blanco/pastel puntual
   y elimina sensación de alerta en rojos/verdes.
   ========================================================= */

:root {
  /* Base Anju: oscura, cálida, premium */
  --bg: #050505;
  --bg-soft: #0b090a;
  --surface: #111012;
  --surface-2: #171416;

  /* Blanco no puro: más cómodo, menos clínico */
  --white: #fffaf3;
  --ivory: #f3ebe2;
  --ivory-soft: rgba(243, 235, 226, 0.075);
  --ivory-line: rgba(243, 235, 226, 0.14);

  /* Rojo Anju más elegante, menos alerta */
  --red: #9d111e;
  --red-strong: #c11c2e;
  --red-soft: #d54d5a;
  --red-dark: #57060e;
  --red-glow: rgba(157, 17, 30, 0.18);

  /* Pasteles oscuros para degradados elegantes */
  --rose-mist: rgba(214, 126, 134, 0.10);
  --cream-mist: rgba(243, 235, 226, 0.075);
  --graphite-mist: rgba(255, 255, 255, 0.035);

  --text: #f4efea;
  --text-soft: #c8bdbc;
  --text-muted: #978d8d;

  --line: rgba(255, 250, 243, 0.075);
  --line-strong: rgba(255, 250, 243, 0.14);
}

/* Fondo general: oscuro, con pastel apenas perceptible */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(157, 17, 30, 0.10), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(243, 235, 226, 0.055), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0a0809 48%, #050505 100%);
  color: var(--text);
}

/* Header: oscuro premium, no bloque blanco */
.site-header {
  background: rgba(6, 5, 5, 0.84);
  border-bottom: 1px solid rgba(243, 235, 226, 0.055);
}

.site-header.scrolled {
  background: rgba(6, 5, 5, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
}

/* Rojo como firma, no como alarma */
.brand-sub,
.eyebrow,
.team-role,
.floating-card-label,
.route-item span,
.service-result span,
.map-card span {
  color: #d55b65;
}

/* Títulos con blanco cálido */
.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2,
.brand-fusion-copy h2,
.service-showcase h3 {
  color: var(--white);
}

/* El span rojo del hero baja intensidad y gana elegancia */
.hero-copy h1 span {
  color: #ead4d2;
  text-shadow: none;
}

/* Botón principal: granate premium, menos chillón */
.btn-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, #8e101a 0%, #b51a2a 55%, #c43a47 100%);
  box-shadow: 0 14px 28px rgba(157, 17, 30, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(157, 17, 30, 0.28);
}

/* Botón secundario: más blanco sutil, no bloque claro */
.btn-secondary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.055), rgba(255, 250, 243, 0.022));
  border: 1px solid rgba(255, 250, 243, 0.14);
}

/* Barra de progreso menos “alerta” */
.progress-bar {
  background: linear-gradient(90deg, #6e0b13, #b51a2a, #d8aaa3);
  box-shadow: 0 0 10px rgba(157, 17, 30, 0.20);
}

/* Hero: mantiene potencia oscura, añade crema/pastel muy sutil */
.hero-orb {
  opacity: 0.13;
  filter: blur(125px);
}

.hero-orb-1 {
  background: #8e101a;
}

.hero-orb-2 {
  background: #3d2b2d;
}

.hero-main-card,
.photo-showcase {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.06), rgba(255, 250, 243, 0.018)),
    radial-gradient(circle at 10% 0%, rgba(157, 17, 30, 0.12), transparent 42%),
    #0b0a0b;
}

.hero-image-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42)),
    radial-gradient(circle at 18% 18%, rgba(157,17,30,0.12), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(243,235,226,0.08), transparent 28%);
}

/* Pills y badges: más claros, pero no blancos */
.trust-pill,
.hero-logo-pill,
.hero-floating-card,
.hero-badge {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.065), rgba(255, 250, 243, 0.024)),
    rgba(8, 7, 7, 0.76);
  border-color: rgba(255, 250, 243, 0.12);
}

/* Cards generales: grafito + toque ivory, no blanco plano */
.info-card,
.service-card,
.review-card,
.team-card,
.booking-card,
.signature-box,
.final-cta-box,
.map-card,
.rating-spotlight,
.brand-fusion-shell,
.service-showcase,
.route-item {
  background:
    radial-gradient(circle at 8% 0%, rgba(243, 235, 226, 0.055), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.050), rgba(255, 250, 243, 0.014)),
    #0e0d0e;
  border-color: rgba(255, 250, 243, 0.085);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

/* Sección de logo: menos rojo, más marca premium */
.brand-fusion-shell {
  background:
    radial-gradient(circle at 16% 50%, rgba(157, 17, 30, 0.13), transparent 36%),
    radial-gradient(circle at 86% 0%, rgba(243, 235, 226, 0.075), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.045), rgba(255, 250, 243, 0.012)),
    #0c0b0c;
}

.fusion-ring {
  border-color: rgba(213, 77, 90, 0.13);
  box-shadow: 0 0 18px rgba(157, 17, 30, 0.075);
}

.fusion-ring-1 {
  border-color: rgba(213, 77, 90, 0.18);
}

.fusion-ring-2 {
  border-color: rgba(243, 235, 226, 0.08);
}

.brand-fusion-logo-wrap {
  background:
    radial-gradient(circle at 50% 50%, rgba(157,17,30,0.12), transparent 58%),
    rgba(255, 250, 243, 0.035);
}

.brand-fusion-logo-wrap::after {
  border-color: rgba(213, 77, 90, 0.16);
  box-shadow: 0 0 28px rgba(157, 17, 30, 0.09);
}

/* Servicios: reduce rojo y mete pastel cálido */
.service-showcase {
  background:
    radial-gradient(circle at 18% 20%, rgba(157, 17, 30, 0.13), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(243, 235, 226, 0.075), transparent 30%),
    linear-gradient(135deg, rgba(255,250,243,0.050), rgba(255,250,243,0.015)),
    #0d0c0d;
}

.service-showcase::before {
  border-color: rgba(213, 77, 90, 0.12);
  box-shadow:
    0 0 0 56px rgba(243, 235, 226, 0.018),
    0 0 64px rgba(157, 17, 30, 0.075);
}

.service-kicker,
.service-tag {
  color: #ead1ce;
  background: rgba(255, 250, 243, 0.055);
  border-color: rgba(255, 250, 243, 0.13);
}

.service-icon {
  background:
    linear-gradient(135deg, rgba(157,17,30,0.13), rgba(243,235,226,0.06));
  color: #d85f69;
}

.service-card::after {
  background: rgba(157, 17, 30, 0.055);
}

.service-card-premium,
.service-color,
.service-texture,
.service-barber {
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 235, 226, 0.060), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(157, 17, 30, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(255,250,243,0.052), rgba(255,250,243,0.014)),
    #0e0d0e;
}

.service-result {
  background:
    linear-gradient(180deg, rgba(255,250,243,0.055), rgba(255,250,243,0.020)),
    rgba(0,0,0,0.18);
  border-color: rgba(255,250,243,0.09);
}

.service-orbit {
  background:
    radial-gradient(circle at 50% 50%, rgba(243,235,226,0.07), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(157,17,30,0.10), transparent 58%),
    rgba(0,0,0,0.20);
}

.service-orbit::before {
  border-color: rgba(213, 77, 90, 0.20);
  box-shadow: 0 0 26px rgba(157,17,30,0.10);
}

.service-orbit::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.68), rgba(0,0,0,0.25)),
    linear-gradient(135deg, rgba(243,235,226,0.09), rgba(157,17,30,0.12));
}

.service-orbit span {
  background:
    linear-gradient(180deg, rgba(255,250,243,0.070), rgba(255,250,243,0.022)),
    rgba(8,8,9,0.86);
}

/* Equipo: más editorial, menos “neón” */
.team-photo-card,
.specialist-match {
  background:
    radial-gradient(circle at 20% 15%, rgba(243,235,226,0.08), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(157,17,30,0.10), transparent 34%),
    linear-gradient(135deg, #141112, #070606);
}

.team-avatar.angel,
.team-avatar.pending {
  background:
    radial-gradient(circle at 52% 24%, rgba(243,235,226,0.07), transparent 26%),
    radial-gradient(circle at 55% 25%, rgba(157,17,30,.16), transparent 30%),
    linear-gradient(135deg, #151315, #070606);
}

.smart-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(243,235,226,0.06), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(157,17,30,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,250,243,0.052), rgba(255,250,243,0.014)),
    #0e0d0e;
  border-color: rgba(255,250,243,0.10);
}

.specialist-chip {
  color: #ead1ce;
  background: rgba(255,250,243,0.055);
  border-color: rgba(255,250,243,0.13);
}

.smart-points li::before {
  background: #c45b61;
  box-shadow: 0 0 8px rgba(196, 91, 97, 0.26);
}

/* Reseñas: más legibles y menos rojas */
.review-stars {
  color: #d9b9ad;
  letter-spacing: 0.13em;
}

.review-card p {
  color: var(--white);
}

.rating-value {
  color: var(--white);
}

/* Formulario: más limpio y cómodo */
.field input,
.field select,
.field textarea {
  background:
    linear-gradient(180deg, rgba(255,250,243,0.055), rgba(255,250,243,0.020));
  border-color: rgba(255,250,243,0.12);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(213, 77, 90, 0.38);
  background:
    linear-gradient(180deg, rgba(255,250,243,0.075), rgba(255,250,243,0.028));
}

/* Contacto/mapa: menos rojo, más grafito elegante */
.map-card {
  background:
    radial-gradient(circle at 20% 15%, rgba(243,235,226,0.075), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(157,17,30,0.11), transparent 34%),
    linear-gradient(135deg,#141213,#050505);
}

/* Footer: sobrio */
.site-footer {
  background:
    linear-gradient(180deg, #060505, #040404);
}

/* CTA flotantes: siguen visibles pero dejan de parecer alerta */
.floating-call {
  background:
    linear-gradient(135deg, #7f1018, #a91725);
  box-shadow: 0 12px 26px rgba(127, 16, 24, 0.26);
}

.floating-whatsapp {
  color: #f8fff9;
  background:
    linear-gradient(135deg, #244f3b, #3b7255);
  box-shadow: 0 12px 26px rgba(36, 79, 59, 0.22);
  border-color: rgba(255,250,243,0.12);
}

/* Hover general más fino */
.service-card:hover,
.team-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 235, 226, 0.15);
}

/* Mobile: máxima comodidad visual sin perder identidad */
@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(157,17,30,0.065), transparent 34%),
      radial-gradient(circle at 92% 8%, rgba(243,235,226,0.045), transparent 28%),
      linear-gradient(180deg, #050505 0%, #090808 52%, #050505 100%);
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-orb {
    opacity: 0.08;
  }

  .hero-copy h1 span {
    color: #eadbd9;
  }

  .brand-fusion-shell,
  .service-showcase,
  .signature-box,
  .final-cta-box,
  .booking-card,
  .team-card,
  .review-card,
  .service-card {
    background:
      radial-gradient(circle at 10% 0%, rgba(243,235,226,0.055), transparent 32%),
      linear-gradient(180deg, rgba(255,250,243,0.046), rgba(255,250,243,0.012)),
      #0d0c0d;
  }

  .btn-primary {
    box-shadow: 0 9px 18px rgba(127, 16, 24, 0.20);
  }

  .floating-actions {
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,0),
        rgba(5,5,5,0.82) 32%,
        rgba(5,5,5,0.96)
      );
  }

  .floating-call,
  .floating-whatsapp {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  }
}

/* =========================================================
   HOTFIX FINAL — RECUPERAR IDENTIDAD ANJU OSCURA
   Quita exceso de blanco sin volver al rojo/verde agresivo.
   ========================================================= */

:root {
  --bg: #050505;
  --bg-soft: #090808;
  --surface: #0f0e0f;
  --surface-2: #161314;

  --white: #fff7ef;
  --ivory: #f1e4da;

  --text: #f4efea;
  --text-soft: #c9bdbc;
  --text-muted: #9b9090;

  --red: #9e111d;
  --red-strong: #c11b2b;
  --red-soft: #d45a64;
  --red-dark: #52060d;
  --red-glow: rgba(158, 17, 29, 0.18);

  --line: rgba(255, 247, 239, 0.075);
  --line-strong: rgba(255, 247, 239, 0.14);
}

/* Base oscura absoluta */
html,
body,
main {
  background:
    radial-gradient(circle at 8% 0%, rgba(158, 17, 29, 0.10), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 247, 239, 0.035), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090808 46%, #050505 100%) !important;
  color: var(--text) !important;
}

/* Ninguna sección debe quedar blanca */
.section,
.reviews,
.booking,
.contact,
.final-cta,
.brand-fusion,
.services,
.team,
.about,
.signature,
.proof {
  background:
    radial-gradient(circle at 10% 0%, rgba(158, 17, 29, 0.045), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080707 100%) !important;
  color: var(--text) !important;
}

/* Separación elegante entre secciones, no bloques blancos */
.section {
  border-top: 1px solid rgba(255, 247, 239, 0.055) !important;
}

/* Títulos siempre visibles */
h1,
h2,
h3,
.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2,
.brand-fusion-copy h2,
.service-showcase h3 {
  color: var(--white) !important;
}

/* Textos normales legibles sobre oscuro */
p,
.section-heading p,
.hero-description,
.contact-block p,
.map-card p,
.final-cta-box p,
.booking-note,
.contact-hints,
.review-card span,
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-soft) !important;
}

/* Eyebrows y acentos: rojo elegante, no alarma */
.eyebrow,
.brand-sub,
.team-role,
.floating-card-label,
.route-item span,
.service-result span,
.map-card span {
  color: #d05b64 !important;
}

/* Hero mantiene identidad oscura */
.hero {
  background:
    radial-gradient(circle at 8% 0%, rgba(158, 17, 29, 0.13), transparent 30%),
    linear-gradient(180deg, #050505 0%, #080707 100%) !important;
}

.hero-copy h1 span {
  color: #ead8d4 !important;
  text-shadow: none !important;
}

.hero-orb {
  opacity: 0.10 !important;
  filter: blur(125px) !important;
}

.hero-orb-1 {
  background: #8d101a !important;
}

.hero-orb-2 {
  background: #3d1518 !important;
}

/* Cards oscuras con reflejo ivory sutil */
.info-card,
.service-card,
.review-card,
.team-card,
.booking-card,
.signature-box,
.final-cta-box,
.map-card,
.rating-spotlight,
.brand-fusion-shell,
.service-showcase,
.route-item,
.proof-grid article {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 247, 239, 0.045), transparent 32%),
    radial-gradient(circle at 92% 0%, rgba(158, 17, 29, 0.060), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.044), rgba(255, 247, 239, 0.012)),
    #0e0d0e !important;
  border-color: rgba(255, 247, 239, 0.085) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34) !important;
}

/* Evita textos blancos invisibles sobre fondos claros anteriores */
.reviews *,
.booking *,
.contact *,
.final-cta *,
.brand-fusion *,
.services *,
.team *,
.about *,
.signature * {
  text-shadow: none;
}

/* Bloque de opiniones: oscuro y legible */
.review-card p {
  color: var(--white) !important;
}

.review-stars {
  color: #d8b1a7 !important;
}

/* Formulario oscuro, no panel blanco */
.booking-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 247, 239, 0.050), transparent 32%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.052), rgba(255, 247, 239, 0.014)),
    #0e0d0e !important;
}

.field label {
  color: var(--white) !important;
}

.field input,
.field select,
.field textarea {
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.055), rgba(255, 247, 239, 0.018)),
    #171415 !important;
  border-color: rgba(255, 247, 239, 0.12) !important;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 239, 234, 0.46) !important;
}

.field select option {
  background: #111010 !important;
  color: var(--white) !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(208, 91, 100, 0.42) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.072), rgba(255, 247, 239, 0.024)),
    #191617 !important;
}

/* Botones: granate premium, no alerta */
.btn-primary {
  color: var(--white) !important;
  background:
    linear-gradient(135deg, #811019 0%, #a91422 55%, #bd2c38 100%) !important;
  box-shadow: 0 12px 26px rgba(129, 16, 25, 0.24) !important;
}

.btn-secondary {
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.055), rgba(255, 247, 239, 0.018)) !important;
  border: 1px solid rgba(255, 247, 239, 0.13) !important;
}

/* Header oscuro */
.site-header {
  background: rgba(6, 5, 5, 0.88) !important;
  border-bottom: 1px solid rgba(255, 247, 239, 0.06) !important;
}

.site-header.scrolled {
  background: rgba(6, 5, 5, 0.96) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32) !important;
}

/* Brand fusion: mantiene logo guapo, menos blanco de fondo */
.brand-fusion-shell {
  background:
    radial-gradient(circle at 18% 50%, rgba(158, 17, 29, 0.12), transparent 38%),
    radial-gradient(circle at 86% 0%, rgba(255, 247, 239, 0.055), transparent 32%),
    linear-gradient(135deg, rgba(255, 247, 239, 0.040), rgba(255, 247, 239, 0.010)),
    #0b0a0b !important;
}

/* Servicios visuales oscuros */
.service-showcase {
  background:
    radial-gradient(circle at 18% 20%, rgba(158, 17, 29, 0.11), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(255, 247, 239, 0.050), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 239, 0.044), rgba(255, 247, 239, 0.012)),
    #0d0c0d !important;
}

.service-card-premium,
.service-color,
.service-texture,
.service-barber {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 247, 239, 0.040), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(158, 17, 29, 0.070), transparent 36%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.046), rgba(255, 247, 239, 0.012)),
    #0e0d0e !important;
}

/* Contacto/mapa oscuro */
.map-card {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 247, 239, 0.050), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(158, 17, 29, 0.10), transparent 34%),
    linear-gradient(135deg, #141213, #050505) !important;
}

/* Footer oscuro */
.site-footer {
  background:
    linear-gradient(180deg, #060505, #040404) !important;
  border-top: 1px solid rgba(255, 247, 239, 0.07) !important;
}

/* CTA flotantes discretos */
.floating-call {
  background:
    linear-gradient(135deg, #811019, #a91422) !important;
  box-shadow: 0 10px 22px rgba(129, 16, 25, 0.24) !important;
}

.floating-whatsapp {
  color: #f7fff8 !important;
  background:
    linear-gradient(135deg, #234836, #37684f) !important;
  box-shadow: 0 10px 22px rgba(35, 72, 54, 0.22) !important;
  border-color: rgba(255, 247, 239, 0.12) !important;
}

/* Botón Reservar de WhatsApp flotante: menos protagonista */
.floating-whatsapp::before {
  opacity: 0.45;
}

/* Barra de progreso sobria */
.progress-bar {
  background:
    linear-gradient(90deg, #5c0b12, #a91422, #d0aaa1) !important;
  box-shadow: 0 0 10px rgba(129, 16, 25, 0.18) !important;
}

/* Mobile: nada de bloques blancos */
@media (max-width: 560px) {
  html,
  body,
  main,
  .section,
  .reviews,
  .booking,
  .contact,
  .final-cta,
  .brand-fusion,
  .services,
  .team,
  .about,
  .signature,
  .proof {
    background:
      radial-gradient(circle at 10% 0%, rgba(158, 17, 29, 0.060), transparent 34%),
      linear-gradient(180deg, #050505 0%, #090808 52%, #050505 100%) !important;
  }

  .brand-fusion-shell,
  .service-showcase,
  .signature-box,
  .final-cta-box,
  .booking-card,
  .team-card,
  .review-card,
  .service-card,
  .info-card,
  .proof-grid article {
    background:
      radial-gradient(circle at 10% 0%, rgba(255, 247, 239, 0.040), transparent 32%),
      linear-gradient(180deg, rgba(255, 247, 239, 0.044), rgba(255, 247, 239, 0.012)),
      #0d0c0d !important;
  }

  .floating-actions {
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,0),
        rgba(5,5,5,0.84) 30%,
        rgba(5,5,5,0.97)
      ) !important;
  }

  .floating-call,
  .floating-whatsapp {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25) !important;
  }
}

/* =========================================================
   HOTFIX MÓVIL — CTA DISCRETOS + LEGIBILIDAD + FORMULARIO
   ========================================================= */

/* Textos dentro de badges que se estaban quedando demasiado oscuros */
.hero-badge,
.hero-badge span,
.service-orbit span,
.floating-card-label,
.service-kicker,
.service-tag {
  color: var(--white) !important;
}

/* Hero badge más limpio sobre imagen */
.hero-badge {
  background:
    linear-gradient(180deg, rgba(20, 18, 18, 0.86), rgba(10, 9, 9, 0.82)) !important;
  border-color: rgba(255, 247, 239, 0.16) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34) !important;
}

/* El bloque orbit en móvil no debe parecer un hueco vacío gigante */
@media (max-width: 560px) {
  .service-showcase {
    padding-bottom: 24px !important;
  }

  .service-showcase-visual {
    min-height: auto !important;
    margin-top: 18px;
  }

  .service-orbit {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 22px;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(255,247,239,0.045), rgba(255,247,239,0.014)),
      #0d0c0d !important;
  }

  .service-orbit::before,
  .service-orbit::after {
    display: none !important;
  }

  .service-orbit span {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.86rem;
    background:
      linear-gradient(180deg, rgba(255,247,239,0.070), rgba(255,247,239,0.020)),
      rgba(12, 11, 11, 0.94) !important;
    border-color: rgba(255,247,239,0.12) !important;
    box-shadow: none !important;
  }
}

/* CTA flotantes menos invasivos */
@media (max-width: 560px) {
  body {
    padding-bottom: 76px !important;
  }

  .floating-actions {
    gap: 8px !important;
    padding: 8px 12px 10px !important;
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,0),
        rgba(5,5,5,0.72) 34%,
        rgba(5,5,5,0.94)
      ) !important;
  }

  .floating-call,
  .floating-whatsapp {
    min-height: 46px !important;
    border-radius: 18px !important;
    font-size: 0.92rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22) !important;
  }

  .floating-call {
    background:
      linear-gradient(135deg, rgba(129, 16, 25, 0.88), rgba(169, 20, 34, 0.88)) !important;
  }

  .floating-whatsapp {
    background:
      linear-gradient(135deg, rgba(35, 72, 54, 0.88), rgba(55, 104, 79, 0.88)) !important;
  }

  .floating-whatsapp::before {
    opacity: 0.35 !important;
  }
}

/* Formulario: más cómodo para franja + hora exacta */
.field-wide {
  grid-column: 1 / -1;
}

.field label span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.field input[type="time"] {
  min-height: 56px;
}

@media (max-width: 560px) {
  .field input,
  .field select,
  .field textarea {
    min-height: 54px;
    font-size: 0.98rem;
  }

  .field textarea {
    min-height: 128px;
  }

  .booking-card {
    padding: 22px 18px !important;
  }
}

/* Botones interiores: no tan chillones en móvil */
@media (max-width: 560px) {
  .service-showcase .btn-primary,
  .booking-form .btn-primary,
  .final-actions .btn-primary {
    background:
      linear-gradient(135deg, #8a111b, #b21a28) !important;
    box-shadow: 0 10px 20px rgba(138, 17, 27, 0.20) !important;
  }

  .service-showcase .btn-secondary,
  .booking-form .btn-secondary,
  .final-actions .btn-secondary {
    background:
      linear-gradient(180deg, rgba(255,247,239,0.052), rgba(255,247,239,0.016)) !important;
    border-color: rgba(255,247,239,0.13) !important;
  }
}

/* =========================================================
   SISTEMA TIPOGRÁFICO FINAL — ANJU PREMIUM
   Editorial, elegante, legible en móvil y menos tecnológico.
   ========================================================= */

:root {
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* Base general: más humana y menos app tecnológica */
body {
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Títulos grandes: editorial premium */
h1,
h2,
.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2,
.brand-fusion-copy h2,
.service-showcase h3,
.map-card strong,
.rating-value,
.footer-logo {
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: -0.045em;
}

/* Hero: grande, lujoso, pero más controlado */
.hero-copy h1 {
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 0.88;
}

.hero-copy h1 span {
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: -0.048em;
}

/* Subtítulos y párrafos: más aire, más comodidad */
.hero-description,
.section-heading p,
.service-card p,
.team-card p,
.review-card p,
.contact-block p,
.final-cta-box p,
.brand-fusion-copy p,
.signature-copy p,
.map-card p,
.booking-note,
.contact-hints {
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.82;
}

/* Navegación, botones y UI: sólidos, claros, no chillones */
.desktop-nav a,
.mobile-menu a,
.btn,
.service-link,
.team-link,
.field label,
.service-tag,
.service-kicker,
.trust-pill,
.hero-badge,
.route-item strong,
.route-item span,
.eyebrow,
.brand-sub,
.floating-card-label,
.floating-call,
.floating-whatsapp {
  font-family: var(--font-body) !important;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Eyebrows: más premium, menos cartel de alerta */
.eyebrow,
.brand-sub,
.floating-card-label,
.route-item span,
.service-result span {
  letter-spacing: 0.18em;
  font-weight: 800;
}

/* Nombre ANJU del header: compacto, fuerte, de marca */
.brand-main {
  font-family: var(--font-body) !important;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.brand-sub {
  font-size: 0.76rem;
  letter-spacing: 0.20em;
}

/* Cards: títulos más limpios */
.service-card h3,
.team-card h3,
.info-card h3,
.contact-block h3 {
  font-family: var(--font-body) !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Reseñas: que parezcan humanas, no bloques técnicos */
.review-card p {
  font-family: var(--font-display) !important;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.review-card span {
  font-family: var(--font-body) !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Formulario: máxima claridad */
.field input,
.field select,
.field textarea {
  font-family: var(--font-body) !important;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.field input::placeholder,
.field textarea::placeholder {
  font-weight: 500;
}

/* Botones grandes: menos “grito”, más premium */
.btn-large {
  font-size: 1rem;
  font-weight: 800;
}

.btn-header {
  font-size: 0.92rem;
}

/* Floating CTA: discretos y legibles */
.floating-call,
.floating-whatsapp {
  font-size: 0.92rem;
  font-weight: 800;
}

/* Ajuste móvil: títulos bonitos sin ser enormes */
@media (max-width: 560px) {
  body {
    font-size: 16px;
    letter-spacing: -0.01em;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    line-height: 0.9;
    letter-spacing: -0.052em;
  }

  .section-heading h2,
  .contact-copy h2,
  .signature-copy h2,
  .final-cta-box h2,
  .brand-fusion-copy h2,
  .service-showcase h3 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-description,
  .section-heading p,
  .service-card p,
  .team-card p,
  .contact-block p,
  .brand-fusion-copy p,
  .signature-copy p,
  .map-card p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .review-card p {
    font-size: 1.16rem;
    line-height: 1.55;
  }

  .eyebrow,
  .brand-sub,
  .floating-card-label,
  .route-item span,
  .service-result span {
    letter-spacing: 0.15em;
  }

  .btn,
  .floating-call,
  .floating-whatsapp {
    font-size: 0.94rem;
  }
}

.local-seo {
  background:
    radial-gradient(circle at 10% 0%, rgba(158,17,29,0.06), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080707 100%);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.local-seo-card {
  min-height: 320px;
  padding: 34px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,247,239,0.05), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(158,17,29,0.10), transparent 34%),
    linear-gradient(135deg, #141213, #050505);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.local-seo-card span {
  color: #d05b64;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
}

.local-seo-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .95;
  margin: 10px 0;
  color: var(--white);
}

.local-seo-card p {
  color: var(--text-soft);
}

@media (max-width: 820px) {
  .local-seo-grid {
    grid-template-columns: 1fr;
  }

  .local-seo-card {
    min-height: 260px;
  }
}

/* =========================================================
   SEO + MOBILE VISUAL HOTFIX — ANJU
   Corrige textos demasiado oscuros y mejora lectura local.
   ========================================================= */

/* Header: ANJU no debe parecer apagado */
.brand-main {
  color: rgba(255, 247, 239, 0.92) !important;
  opacity: 1 !important;
  text-shadow: 0 0 18px rgba(255, 247, 239, 0.04);
}

/* Mantiene el rojo de marca claro sin parecer alerta */
.brand-sub {
  color: #e06b73 !important;
}

/* En móvil, el logo + texto deben respirar mejor */
@media (max-width: 560px) {
  .brand-with-logo {
    grid-template-columns: 54px auto !important;
    gap: 10px !important;
  }

  .brand-logo {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .brand-main {
    font-size: 1.42rem !important;
    line-height: 0.95 !important;
    color: rgba(255, 247, 239, 0.90) !important;
  }

  .brand-sub {
    font-size: 0.72rem !important;
    letter-spacing: 0.22em !important;
  }
}

/* Tarjetas de ubicación / SEO local: títulos legibles */
.map-card strong,
.local-seo-card strong {
  color: rgba(255, 247, 239, 0.94) !important;
  opacity: 1 !important;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

.map-card p,
.local-seo-card p {
  color: rgba(255, 247, 239, 0.74) !important;
}

/* Eyebrow local visible, no chillón */
.map-card span,
.local-seo-card span {
  color: #e06b73 !important;
}

/* Corrige posibles títulos gigantes demasiado apagados */
.local-seo .section-heading h2,
.contact .section-heading h2,
.contact-copy h2 {
  color: rgba(255, 247, 239, 0.94) !important;
}

/* Mejora lectura de la sección local SEO */
.local-seo .section-heading p {
  color: rgba(255, 247, 239, 0.76) !important;
  max-width: 780px;
}

/* Evita que el bloque local parezca decorativo: más contenido visible */
.local-seo {
  scroll-margin-top: 96px;
}

.local-seo-grid {
  align-items: stretch !important;
}

.local-seo-card {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 247, 239, 0.055), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(158, 17, 29, 0.12), transparent 34%),
    linear-gradient(135deg, #151213, #050505) !important;
  border-color: rgba(255, 247, 239, 0.09) !important;
}

/* Microcopy y contacto: legibilidad extra para móvil */
@media (max-width: 560px) {
  .microcopy,
  .hero-description,
  .section-heading p,
  .contact-block p,
  .booking-note,
  .contact-hints {
    color: rgba(255, 247, 239, 0.76) !important;
  }

  .map-card strong,
  .local-seo-card strong {
    font-size: clamp(2.35rem, 11vw, 3.55rem) !important;
    line-height: 0.95 !important;
  }

  .map-card {
    min-height: 300px !important;
  }

  .local-seo-card {
    min-height: 280px !important;
  }
}

/* =========================================================
   FORMULARIO COMPACTO — RESERVA ANJU
   Corrige huecos tras quitar hora exacta y empaqueta la reserva.
   ========================================================= */

.booking-form-compact {
  gap: 18px !important;
}

.form-grid-compact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 18px !important;
  align-items: start !important;
}

.form-grid-compact .field {
  min-width: 0 !important;
}

.field-full {
  grid-column: 1 / -1 !important;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form-compact .field label {
  margin-bottom: 2px;
}

.booking-form-compact input,
.booking-form-compact select {
  min-height: 58px !important;
}

.booking-form-compact textarea {
  min-height: 118px !important;
  resize: vertical;
}

.booking-form-compact .btn {
  min-height: 58px !important;
}

.booking-form-compact .booking-note {
  margin-top: 2px;
  text-align: center;
}

/* Evita que el texto largo del profesional rompa visualmente */
#staffSelect {
  text-overflow: ellipsis;
}

/* Móvil: todo en una columna, compacto y limpio */
@media (max-width: 700px) {
  .form-grid-compact {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .booking-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-form-compact textarea {
    min-height: 112px !important;
  }
}

/* Ajuste extra para pantallas pequeñas */
@media (max-width: 560px) {
  .booking-card {
    padding: 20px 16px !important;
  }

  .booking-form-compact {
    gap: 14px !important;
  }

  .booking-form-compact input,
  .booking-form-compact select {
    min-height: 54px !important;
  }

  .booking-form-compact .btn {
    min-height: 52px !important;
  }
}

/* =========================================================
   PRODUCCIÓN FINAL — ANJU PRECISIÓN VISUAL
   Ajuste milimétrico para móvil y escritorio.
   ========================================================= */

html {
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden !important;
}

/* Header más sólido y legible en escritorio */
.site-header {
  height: auto !important;
  min-height: 82px !important;
}

.header-inner {
  min-height: 82px !important;
}

.desktop-nav a {
  color: rgba(255, 247, 239, 0.54) !important;
}

.desktop-nav a:hover {
  color: rgba(255, 247, 239, 0.94) !important;
}

/* Evita que el hero se desmadre en escritorio grande */
.hero {
  min-height: calc(100svh - 82px) !important;
  padding-top: clamp(46px, 5vw, 76px) !important;
  padding-bottom: clamp(54px, 5vw, 84px) !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr) !important;
  gap: clamp(40px, 5vw, 74px) !important;
}

.hero-copy h1 {
  max-width: 760px !important;
  font-size: clamp(4.2rem, 6.4vw, 6.45rem) !important;
  line-height: 0.88 !important;
  margin-bottom: 26px !important;
}

.hero-copy h1 span {
  max-width: 720px !important;
}

.hero-description {
  max-width: 650px !important;
}

.photo-showcase {
  min-height: clamp(480px, 52vw, 590px) !important;
}

.photo-showcase .hero-logo-img {
  min-height: clamp(444px, 49vw, 548px) !important;
}

/* CTA flotantes: en escritorio sobran porque ya existe header */
@media (min-width: 821px) {
  .floating-actions {
    display: none !important;
  }
}

/* Secciones: mejor encuadre visual en desktop */
.section {
  padding-top: clamp(86px, 7vw, 118px) !important;
  padding-bottom: clamp(86px, 7vw, 118px) !important;
}

.compact {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 56px) !important;
}

.section-heading.center {
  max-width: 920px !important;
}

/* Servicios: menos aire raro y más bloque premium */
.service-showcase {
  min-height: auto !important;
}

.service-route {
  margin-top: 32px !important;
  margin-bottom: 34px !important;
}

.services-grid-premium {
  gap: 22px !important;
}

/* Cards: alturas más consistentes en escritorio */
.service-card-premium {
  min-height: 390px !important;
}

.review-card {
  min-height: 255px !important;
}

.team-card {
  height: 100%;
}

/* Equipo: imagen de Juan mejor encuadrada */
.team-photo-card,
.team-photo {
  min-height: 330px !important;
}

.team-photo {
  object-position: center top !important;
}

/* Firma: evita pastillas demasiado claras si alguna capa anterior las dejó raras */
.signature-point {
  color: rgba(255, 247, 239, 0.82) !important;
  background:
    linear-gradient(180deg, rgba(255,247,239,0.06), rgba(255,247,239,0.018)),
    rgba(10, 9, 9, 0.76) !important;
  border-color: rgba(255,247,239,0.10) !important;
}

/* Formulario compacto definitivo */
.booking-form-compact {
  display: grid !important;
  gap: 18px !important;
}

.form-grid-compact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 18px !important;
  align-items: start !important;
}

.field-full {
  grid-column: 1 / -1 !important;
}

.booking-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.booking-form-compact input,
.booking-form-compact select {
  min-height: 56px !important;
}

.booking-form-compact textarea {
  min-height: 116px !important;
  resize: vertical;
}

.booking-form-compact .btn {
  min-height: 56px !important;
}

.booking-form-compact .booking-note {
  margin-top: 0 !important;
  text-align: center;
}

/* Evita textos largos feos en selects */
#staffSelect,
#serviceSelect,
#timeSelect {
  text-overflow: ellipsis;
}

/* Contacto y CTA final: mejor encuadre */
.contact-grid {
  align-items: center !important;
}

.final-cta-box {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* Móvil: aquí se cierra la experiencia */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    min-height: 76px !important;
  }

  .header-inner {
    min-height: 76px !important;
  }

  .hero {
    padding-top: 34px !important;
    padding-bottom: 58px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 13vw, 4.65rem) !important;
    line-height: 0.91 !important;
    max-width: 100% !important;
  }

  .hero-description {
    font-size: 1rem !important;
    line-height: 1.78 !important;
  }

  .hero-ctas {
    display: none !important;
  }

  .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
  }

  .trust-pill {
    width: 100%;
  }

  .photo-showcase {
    min-height: auto !important;
    padding: 12px !important;
    border-radius: 26px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    border-radius: 20px !important;
  }

  .hero-image-overlay {
    inset: 12px !important;
    border-radius: 20px !important;
  }

  .hero-badge {
    left: 22px !important;
    right: 22px !important;
    bottom: 22px !important;
    min-height: 44px;
    padding: 0 14px !important;
  }

  .hero-floating-card {
    display: none !important;
  }

  .section {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }

  .section-heading {
    margin-bottom: 30px !important;
  }

  .section-heading h2,
  .contact-copy h2,
  .signature-copy h2,
  .final-cta-box h2,
  .brand-fusion-copy h2,
  .service-showcase h3 {
    font-size: clamp(2.55rem, 10.5vw, 3.6rem) !important;
    line-height: 0.96 !important;
  }

  .brand-fusion-shell,
  .signature-box,
  .final-cta-box,
  .booking-card,
  .service-showcase,
  .team-card,
  .review-card,
  .service-card {
    border-radius: 26px !important;
  }

  .service-showcase {
    padding: 24px 18px !important;
  }

  .service-showcase-actions {
    gap: 10px !important;
  }

  .service-showcase-actions .btn {
    width: 100%;
  }

  .service-route {
    gap: 12px !important;
    margin: 24px 0 !important;
  }

  .route-line {
    height: 22px !important;
  }

  .service-card-premium {
    min-height: auto !important;
  }

  .team-photo-card,
  .team-photo {
    min-height: 300px !important;
  }

  .reviews-grid {
    gap: 16px !important;
  }

  .review-card {
    min-height: auto !important;
  }

  .booking-layout {
    gap: 24px !important;
  }

  .form-grid-compact {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .booking-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .booking-card {
    padding: 20px 16px !important;
  }

  .booking-form-compact input,
  .booking-form-compact select {
    min-height: 54px !important;
  }

  .booking-form-compact textarea {
    min-height: 110px !important;
  }

  .map-card,
  .local-seo-card {
    min-height: 280px !important;
  }

  .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
  }

  .final-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
  }
}

/* Bottom CTA móvil: visible, pero no invasivo */
@media (max-width: 820px) {
  body {
    padding-bottom: 76px !important;
  }

  .floating-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 8px 12px 10px !important;
    bottom: 0 !important;
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,0),
        rgba(5,5,5,0.74) 32%,
        rgba(5,5,5,0.96)
      ) !important;
    backdrop-filter: blur(12px);
  }

  .floating-call,
  .floating-whatsapp {
    position: static !important;
    width: 100% !important;
    min-height: 46px !important;
    border-radius: 18px !important;
    font-size: 0.92rem !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.24) !important;
  }

  .floating-call {
    background: linear-gradient(135deg, #84101a, #a91523) !important;
  }

  .floating-whatsapp {
    background: linear-gradient(135deg, #244936, #37684f) !important;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 390px) {
  .container {
    width: min(var(--container), calc(100% - 20px)) !important;
  }

  .brand-with-logo {
    grid-template-columns: 48px auto !important;
    gap: 9px !important;
  }

  .brand-logo {
    width: 48px !important;
    height: 48px !important;
  }

  .brand-main {
    font-size: 1.34rem !important;
  }

  .brand-sub {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
  }

  .menu-toggle {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.8rem) !important;
  }
}
/* =========================================================
   AJUSTE CTA MÓVIL — LLAMAR MENOS INVASIVO
   Reserva sigue siendo el CTA principal. Llamar queda visible,
   pero más premium y menos agresivo.
   ========================================================= */

@media (max-width: 820px) {
  .floating-call {
    color: rgba(255, 250, 243, 0.94) !important;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.07), rgba(255, 250, 243, 0.025)),
      rgba(14, 12, 13, 0.96) !important;
    border: 1px solid rgba(255, 250, 243, 0.16) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24) !important;
  }

  .floating-call::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #c84a55;
    opacity: 0.86;
  }

  .floating-whatsapp {
    color: rgba(255, 250, 243, 0.96) !important;
    background:
      linear-gradient(135deg, #2d5a42 0%, #3f7658 100%) !important;
    border: 1px solid rgba(255, 250, 243, 0.14) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
  }

  .floating-whatsapp::before {
    background: #7fa875 !important;
  }
}

@media (min-width: 821px) {
  .floating-call,
  .floating-whatsapp {
    display: none !important;
  }
}

/* =========================================================
   CTA MÓVIL FINAL — MÁS CÓMODO SOBRE FORMULARIO
   La barra inferior no debe tapar lectura ni parecer alerta.
   ========================================================= */

@media (max-width: 820px) {
  body {
    padding-bottom: 72px !important;
  }

  .floating-actions {
    bottom: 0 !important;
    display: grid !important;
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 8px !important;
    padding: 7px 10px 9px !important;
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0),
        rgba(5, 5, 5, 0.70) 34%,
        rgba(5, 5, 5, 0.96)
      ) !important;
    backdrop-filter: blur(12px) !important;
  }

  .floating-call,
  .floating-whatsapp {
    position: static !important;
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 17px !important;
    font-size: 0.9rem !important;
    font-weight: 850 !important;
    padding: 0 12px !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22) !important;
  }

  .floating-call {
    color: rgba(255, 250, 243, 0.92) !important;
    background:
      linear-gradient(180deg, rgba(255,250,243,0.065), rgba(255,250,243,0.02)),
      rgba(13, 12, 13, 0.96) !important;
    border: 1px solid rgba(255,250,243,0.16) !important;
  }

  .floating-call::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #b5414c;
    opacity: 0.86;
  }

  .floating-whatsapp {
    color: rgba(255, 250, 243, 0.98) !important;
    background: linear-gradient(135deg, #2f5c44, #42795b) !important;
    border: 1px solid rgba(255,250,243,0.14) !important;
  }

  .floating-whatsapp::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #86aa7b !important;
  }

  .booking-card {
    margin-bottom: 12px !important;
  }
}

@media (min-width: 821px) {
  .floating-call,
  .floating-whatsapp {
    display: none !important;
  }
}

/* =========================================================
   FINAL VISUAL POLISH — ANJU DEMO ENSEÑABLE
   Objetivo: más premium, menos agresivo, más salón real.
   No elimina funcionalidad. Solo afina percepción.
   ========================================================= */

:root {
  --anju-red-final: #9b141f;
  --anju-red-soft-final: #b8323d;
  --anju-wine-final: #3a080d;
  --anju-cream-final: #fff7ee;
  --anju-muted-final: #c8bbb6;
  --anju-card-final: #100d0e;
}

/* Rojo ANJU como firma, no como alarma */
.brand-sub,
.eyebrow,
.floating-card-label,
.team-role,
.service-kicker,
.map-card span {
  color: #c95761 !important;
}

/* Hero más editorial y menos gritón */
.hero-copy h1 span {
  color: #dfb0a8 !important;
  text-shadow: none !important;
}

.hero-description,
.microcopy,
.section-heading p {
  color: rgba(255, 247, 238, 0.72) !important;
}

/* Botón principal: granate caro, menos rojo puro */
.btn-primary,
.floating-call {
  background:
    linear-gradient(135deg, #741018 0%, var(--anju-red-final) 58%, var(--anju-red-soft-final) 100%) !important;
  box-shadow: 0 14px 30px rgba(115, 16, 24, 0.24) !important;
}

.btn-primary:hover,
.floating-call:hover {
  box-shadow: 0 18px 36px rgba(115, 16, 24, 0.30) !important;
}

/* Botón secundario: más boutique */
.btn-secondary {
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.075), rgba(255, 247, 238, 0.025)) !important;
  border: 1px solid rgba(255, 247, 238, 0.16) !important;
  color: var(--anju-cream-final) !important;
}

/* Reservar/WhatsApp: no competir con la marca */
.floating-whatsapp {
  color: var(--anju-cream-final) !important;
  background:
    linear-gradient(135deg, #171313 0%, #231819 58%, #2d2020 100%) !important;
  border: 1px solid rgba(255, 247, 238, 0.16) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28) !important;
}

.floating-whatsapp::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  margin-right: 8px !important;
  border-radius: 50% !important;
  background: #7fb889 !important;
  box-shadow: 0 0 10px rgba(127, 184, 137, 0.38) !important;
}

/* Cards más sobrias: menos glow, más boutique */
.info-card,
.service-card,
.review-card,
.team-card,
.booking-card,
.signature-box,
.final-cta-box,
.map-card,
.rating-spotlight,
.brand-fusion-shell,
.service-showcase,
.proof-grid article {
  border-color: rgba(255, 247, 238, 0.09) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

.service-card:hover,
.team-card:hover,
.review-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(201, 87, 97, 0.22) !important;
}

/* Hero visual más limpio */
.hero-main-card {
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42) !important;
}

.hero-badge {
  background:
    linear-gradient(180deg, rgba(12, 10, 10, 0.82), rgba(12, 10, 10, 0.72)) !important;
  border-color: rgba(255, 247, 238, 0.16) !important;
  color: var(--anju-cream-final) !important;
}

/* Formulario: más confianza, menos formulario frío */
.field input,
.field select,
.field textarea {
  border-radius: 18px !important;
}

.booking-note {
  color: rgba(255, 247, 238, 0.54) !important;
}

/* Móvil: primer impacto más compacto y vendible */
@media (max-width: 560px) {
  .hero {
    padding-top: 34px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem) !important;
    line-height: 0.92 !important;
    margin-bottom: 18px !important;
  }

  .hero-description {
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    margin-bottom: 24px !important;
  }

  .hero-ctas {
    margin-bottom: 20px !important;
  }

  .trust-pill {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
  }

  .photo-showcase {
    min-height: 315px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 295px !important;
  }

  .hero-badge {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    font-size: 0.86rem !important;
  }

  .section {
    padding: 72px 0 !important;
  }

  .section-heading {
    margin-bottom: 34px !important;
  }

  .section-heading h2,
  .contact-copy h2,
  .signature-copy h2,
  .final-cta-box h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem) !important;
    line-height: 0.98 !important;
  }

  .floating-actions {
    padding: 8px 12px 11px !important;
  }

  .floating-call,
  .floating-whatsapp {
    min-height: 48px !important;
    border-radius: 16px !important;
    font-size: 0.91rem !important;
  }
}


/* =========================================================
   ANJU FINAL COLOR SYSTEM — PALETA PREMIUM DEFINITIVA
   Negro lujo + borgoña ANJU + marfil cálido.
   Objetivo: confianza, salón premium, conversión sin agresividad.
   ========================================================= */

:root {
  --bg: #050505;
  --bg-soft: #0d0b0b;
  --surface: #141112;
  --surface-2: #1c1718;

  --text: #fff7ee;
  --text-soft: #cfc3bd;
  --text-muted: #8f8581;

  --line: rgba(255, 247, 238, 0.10);
  --line-strong: rgba(255, 247, 238, 0.18);

  --red: #8f111b;
  --red-strong: #b8323d;
  --red-dark: #4a080d;
  --red-glow: rgba(143, 17, 27, 0.26);

  --white: #fff7ee;
}

/* Fondo general: oscuro premium, no negro plano */
body {
  background:
    radial-gradient(circle at top left, rgba(143, 17, 27, 0.14), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(184, 50, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0a0808 42%, #060505 100%) !important;
  color: var(--text) !important;
}

/* Header más boutique */
.site-header {
  background: rgba(5, 5, 5, 0.78) !important;
  border-bottom-color: rgba(255, 247, 238, 0.06) !important;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.90) !important;
  border-bottom-color: rgba(255, 247, 238, 0.12) !important;
}

/* Marca */
.brand-main {
  color: #fff7ee !important;
}

.brand-sub,
.eyebrow,
.floating-card-label,
.team-role,
.map-card span,
.service-kicker {
  color: #d06d76 !important;
}

/* Titulares: blanco cálido + acento vino elegante */
.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.signature-copy h2,
.final-cta-box h2 {
  color: #fff7ee !important;
}

.hero-copy h1 span {
  color: #e4b5ad !important;
  text-shadow: none !important;
}

/* Texto: más legible y menos frío */
.hero-description,
.section-heading p,
.signature-copy p,
.contact-block p,
.final-cta-box p,
.service-card p,
.team-card p,
.info-card p,
.rating-spotlight p,
.microcopy,
.booking-note,
.contact-hints {
  color: rgba(255, 247, 238, 0.72) !important;
}

.text-muted,
.site-footer p,
.site-footer li,
.site-footer a,
.review-card span {
  color: rgba(255, 247, 238, 0.58) !important;
}

/* Cards premium: grafito cálido */
.info-card,
.service-card,
.review-card,
.team-card,
.booking-card,
.proof-grid article {
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.055), rgba(255, 247, 238, 0.018)),
    #100d0e !important;
  border-color: rgba(255, 247, 238, 0.09) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30) !important;
}

/* Bloques grandes: profundidad vino, sin parecer alarma */
.signature-box,
.final-cta-box,
.rating-spotlight,
.map-card,
.brand-fusion-shell {
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 50, 61, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 238, 0.052), rgba(255, 247, 238, 0.018)),
    #100d0e !important;
  border-color: rgba(255, 247, 238, 0.10) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34) !important;
}

/* Botón principal: borgoña caro */
.btn-primary,
.floating-call {
  color: #fff7ee !important;
  background:
    linear-gradient(135deg, #621018 0%, #8f111b 54%, #b8323d 100%) !important;
  box-shadow: 0 16px 34px rgba(143, 17, 27, 0.30) !important;
}

.btn-primary:hover,
.floating-call:hover {
  box-shadow: 0 20px 42px rgba(143, 17, 27, 0.38) !important;
}

/* Botón secundario: no blanco fantasma, sino lujo discreto */
.btn-secondary {
  color: #fff7ee !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.075), rgba(255, 247, 238, 0.025)) !important;
  border: 1px solid rgba(255, 247, 238, 0.17) !important;
}

/* Reservar/WhatsApp: premium, no verde chillón */
.floating-whatsapp {
  color: #fff7ee !important;
  background:
    linear-gradient(135deg, #151111 0%, #211719 58%, #2b1d1f 100%) !important;
  border: 1px solid rgba(255, 247, 238, 0.15) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.30) !important;
}

.floating-whatsapp::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  margin-right: 8px !important;
  border-radius: 50% !important;
  background: #7fb889 !important;
  box-shadow: 0 0 10px rgba(127, 184, 137, 0.42) !important;
}

/* Servicios: iconos con acento vino */
.service-icon {
  background: rgba(143, 17, 27, 0.16) !important;
  color: #e4b5ad !important;
}

.service-link,
.team-link {
  color: #fff7ee !important;
  border-bottom-color: rgba(255, 247, 238, 0.28) !important;
}

.service-link:hover,
.team-link:hover {
  color: #e4b5ad !important;
}

/* Reviews y estrellas */
.review-stars {
  color: #d06d76 !important;
}

.review-card p {
  color: #fff7ee !important;
}

/* Formularios: elegantes, claros, no fríos */
.field label {
  color: #fff7ee !important;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 247, 238, 0.045) !important;
  border-color: rgba(255, 247, 238, 0.12) !important;
  color: #fff7ee !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 247, 238, 0.07) !important;
  border-color: rgba(184, 50, 61, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(143, 17, 27, 0.14) !important;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 247, 238, 0.42) !important;
}

.field select option {
  background: #141112 !important;
  color: #fff7ee !important;
}

/* Hero visual: menos glow rojo, más fotografía premium */
.hero-main-card {
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.06), rgba(255, 247, 238, 0.018)),
    #100d0e !important;
  border-color: rgba(255, 247, 238, 0.10) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42) !important;
}

.hero-image-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.38)),
    radial-gradient(circle at 18% 18%, rgba(143, 17, 27, 0.16), transparent 34%) !important;
}

.hero-badge {
  background:
    linear-gradient(180deg, rgba(16, 13, 14, 0.86), rgba(16, 13, 14, 0.74)) !important;
  border-color: rgba(255, 247, 238, 0.16) !important;
  color: #fff7ee !important;
}

/* Trust pills: más finos */
.trust-pill {
  background: rgba(255, 247, 238, 0.045) !important;
  border-color: rgba(255, 247, 238, 0.105) !important;
  color: rgba(255, 247, 238, 0.76) !important;
}

/* Hover premium, sin saltos exagerados */
.service-card:hover,
.team-card:hover,
.review-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(184, 50, 61, 0.26) !important;
}

/* Footer coherente */
.site-footer {
  background: #050505 !important;
  border-top-color: rgba(255, 247, 238, 0.09) !important;
}

/* Móvil: más limpio y caro */
@media (max-width: 560px) {
  .floating-actions {
    background:
      linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,0.92) 28%, rgba(5,5,5,0.98)) !important;
    border-top: 1px solid rgba(255, 247, 238, 0.08) !important;
  }

  .floating-call,
  .floating-whatsapp {
    border-radius: 16px !important;
    min-height: 50px !important;
  }

  .hero-copy h1 {
    color: #fff7ee !important;
  }

  .hero-copy h1 span {
    color: #e4b5ad !important;
  }
}



/* =========================================================
   REAL PHOTOS GALLERY
   ========================================================= */

.real-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.real-gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), #100d0e;
  box-shadow: var(--shadow-md);
}

.real-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.real-gallery-card-large img {
  min-height: 420px;
}

@media (max-width: 920px) {
  .real-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .real-gallery-card-large {
    grid-column: 1 / -1;
  }

  .real-gallery-card-large img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .real-gallery-grid {
    grid-template-columns: 1fr;
  }

  .real-gallery-card-large {
    grid-column: auto;
  }

  .real-gallery-card img,
  .real-gallery-card-large img {
    min-height: 280px;
  }
}








/* ANJU_ASSET_COORDINATION_START */

/* =========================================================
   ASSETS COORDINADOS — HERO + JUAN + TRABAJOS REALES
   Cada foto representa exactamente lo que muestra.
   ========================================================= */

/* Hero con imagen real: resultado bob / acabado */
.photo-showcase .hero-logo-img {
  object-position: center center !important;
}

@media (max-width: 560px) {
  .photo-showcase {
    min-height: 330px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 310px !important;
    object-position: center center !important;
  }
}

/* Foto de equipo */
.team-photo-card {
  min-height: 310px !important;
}

.team-photo {
  min-height: 310px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Galería real contextualizada */
.real-work {
  overflow: hidden;
}

.real-work-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 10%, rgba(157, 17, 30, 0.12), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(255, 250, 243, 0.07), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.050), rgba(255, 250, 243, 0.016)),
    #0d0c0d;
  border: 1px solid rgba(255, 250, 243, 0.09);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.real-work-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.real-work-head h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--white, #fffaf3);
}

.real-work-head p {
  max-width: 760px;
  color: rgba(255, 250, 243, 0.70);
  line-height: 1.85;
}

.real-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.real-work-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.real-work-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: 28px;
  background: #090808;
  border: 1px solid rgba(255, 250, 243, 0.10);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.real-work-featured {
  min-height: 560px;
}

.real-work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
}

/* Ajuste semántico por foto */
.real-work-caballero img {
  object-position: center center;
}

.real-work-salon img {
  object-position: center center;
}

.real-work-color img {
  object-position: center top;
}

.real-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.06) 48%, rgba(0,0,0,0.58) 100%),
    radial-gradient(circle at 20% 12%, rgba(157, 17, 30, 0.14), transparent 34%);
  pointer-events: none;
}

.real-work-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 7, 7, 0.74);
  border: 1px solid rgba(255, 250, 243, 0.13);
  backdrop-filter: blur(12px);
}

.real-work-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #d55b65;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.real-work-card figcaption strong {
  display: block;
  color: #fffaf3;
  font-size: 0.95rem;
  line-height: 1.25;
}

.real-work-featured figcaption strong {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .real-work-grid {
    grid-template-columns: 1fr;
  }

  .real-work-featured {
    min-height: 420px;
  }

  .real-work-card {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .real-work-panel {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .real-work-head {
    margin-bottom: 20px;
  }

  .real-work-head h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .real-work-head p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .real-work-grid,
  .real-work-stack {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .real-work-featured,
  .real-work-card {
    min-height: 0;
    border-radius: 22px;
  }

  .real-work-card img {
    height: 285px;
    min-height: 0;
  }

  .real-work-featured img {
    height: 330px;
  }

  .real-work-card::after {
    display: none;
  }

  .real-work-card figcaption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    border-radius: 0;
    padding: 14px 14px 15px;
    background: #0f0c0d;
    border: 0;
    border-top: 1px solid rgba(255, 250, 243, 0.10);
    backdrop-filter: none;
  }

  .real-work-card figcaption span {
    font-size: 0.64rem;
  }

  .real-work-card figcaption strong,
  .real-work-featured figcaption strong {
    font-size: 0.94rem;
  }
}

/* ANJU_ASSET_COORDINATION_END */


/* ANJU_QA_CLEANUP_START */

/* Limpieza final: bloques repetitivos fuera de demo */
.proof,
.brand-fusion {
  display: none !important;
}

/* Tras quitar bloques, evitar saltos visuales raros */
main > section:first-child + section {
  border-top-color: rgba(255, 250, 243, 0.055);
}

/* CTA inferior: prioridad visual sin tapar captions de galería */
@media (max-width: 560px) {
  .real-work {
    padding-bottom: 92px;
  }

  .real-work-card:last-child {
    margin-bottom: 6px;
  }
}

/* ANJU_QA_CLEANUP_END */


/* ANJU_GALLERY_COPY_POLISH_START */

/* Captions más elegantes y menos invasivos */
.real-work-card figcaption {
  max-width: calc(100% - 28px) !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(14, 10, 11, 0.82), rgba(14, 10, 11, 0.74)) !important;
  border: 1px solid rgba(255, 250, 243, 0.12) !important;
}

.real-work-card figcaption span {
  margin-bottom: 5px !important;
  color: #d85b66 !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.18em !important;
}

.real-work-card figcaption strong {
  max-width: 330px !important;
  color: #fffaf3 !important;
  font-size: clamp(0.94rem, 3.7vw, 1.08rem) !important;
  line-height: 1.32 !important;
  letter-spacing: -0.02em !important;
}

.real-work-featured figcaption strong {
  font-size: clamp(1rem, 3.9vw, 1.14rem) !important;
}

@media (max-width: 560px) {
  .real-work-card figcaption {
    padding: 13px 14px 14px !important;
  }

  .real-work-card figcaption strong,
  .real-work-featured figcaption strong {
    font-size: 1rem !important;
    line-height: 1.32 !important;
  }
}

/* ANJU_GALLERY_COPY_POLISH_END */


/* ANJU_NON_CLICKABLE_SERVICE_CHIPS_START */

/* =========================================================
   SERVICE ORBIT — NO PARECER BOTONES
   Son etiquetas visuales, no acciones clicables.
   ========================================================= */

.service-showcase-visual {
  pointer-events: none !important;
}

.service-orbit {
  cursor: default !important;
}

.service-orbit span {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 250, 243, 0.68) !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  opacity: 0.82 !important;
}

.service-orbit span::before {
  content: "" !important;
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  margin-right: 8px !important;
  border-radius: 50% !important;
  background: rgba(213, 91, 101, 0.72) !important;
  vertical-align: 1px !important;
}

.service-orbit span:nth-child(1) {
  top: 22px !important;
}

.service-orbit span:nth-child(2) {
  right: 6px !important;
}

.service-orbit span:nth-child(3) {
  bottom: 22px !important;
}

.service-orbit span:nth-child(4) {
  left: 6px !important;
}

@media (max-width: 560px) {
  .service-orbit span {
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
  }

  .service-orbit span::before {
    width: 5px !important;
    height: 5px !important;
    margin-right: 6px !important;
  }
}

/* ANJU_NON_CLICKABLE_SERVICE_CHIPS_END */


/* ANJU_DEMO_10_POLISH_START */

/* =========================================================
   DEMO 10/10 — PULIDO FINAL DE CONVERSIÓN
   Evita solapes, aclara reserva y mejora percepción premium.
   ========================================================= */

.booking-confirmation-box {
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.060), rgba(255, 250, 243, 0.022)),
    rgba(10, 8, 9, 0.78);
  border: 1px solid rgba(255, 250, 243, 0.11);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.booking-confirmation-box strong {
  display: block;
  margin-bottom: 6px;
  color: #fffaf3;
  font-size: 0.98rem;
  line-height: 1.25;
}

.booking-confirmation-box p {
  margin: 0;
  color: rgba(255, 250, 243, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.booking-card .btn-full {
  position: relative;
  z-index: 2;
}

/* El CTA fijo no debe tapar el botón del formulario en móvil */
@media (max-width: 560px) {
  .booking {
    padding-bottom: 118px !important;
  }

  .booking-card {
    padding-bottom: 124px !important;
  }

  .booking-form {
    padding-bottom: 18px !important;
  }

  .booking-confirmation-box {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .booking-confirmation-box strong {
    font-size: 0.95rem;
  }

  .booking-confirmation-box p {
    font-size: 0.88rem;
  }
}

/* CTA inferior más premium y menos invasivo */
@media (max-width: 560px) {
  .floating-actions {
    border-top: 1px solid rgba(255, 250, 243, 0.07) !important;
  }

  .floating-call,
  .floating-whatsapp {
    min-height: 50px !important;
    font-size: 0.95rem !important;
  }
}

/* Microinteracción suave: premium sin parecer app barata */
.btn:active,
.floating-call:active,
.floating-whatsapp:active {
  transform: translateY(1px) scale(0.99) !important;
}

/* ANJU_DEMO_10_POLISH_END */


/* ANJU_WEIRD_BLOCKS_FIX_START */

/* =========================================================
   LIMPIEZA VISUAL:
   - La tarjeta de color debe sonar más sobria
   - Corte / Color / Textura / Barba no deben parecer botones
   ========================================================= */

/* Tarjeta sobre imagen: más premium y menos mazacote */
.real-work-card figcaption {
  max-width: calc(100% - 28px) !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(14, 10, 11, 0.84), rgba(14, 10, 11, 0.76)) !important;
  border: 1px solid rgba(255, 250, 243, 0.10) !important;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18) !important;
}

.real-work-card figcaption span {
  margin-bottom: 6px !important;
  color: #d85b66 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.real-work-card figcaption strong {
  display: block !important;
  max-width: 16ch !important;
  color: #fffaf3 !important;
  font-size: clamp(0.95rem, 3.8vw, 1.08rem) !important;
  line-height: 1.32 !important;
  letter-spacing: -0.02em !important;
}

/* =========================================================
   Bloque de palabras clave:
   deja de parecer un grupo de botones
   ========================================================= */

.service-showcase-visual {
  min-height: auto !important;
  padding: 18px 20px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.03), rgba(255, 250, 243, 0.012)),
    rgba(10, 8, 9, 0.82) !important;
  border: 1px solid rgba(255, 250, 243, 0.07) !important;
  box-shadow: none !important;
}

.service-showcase-visual::before {
  content: "Qué trabajamos" !important;
  display: block !important;
  margin-bottom: 12px !important;
  color: #d85b66 !important;
  font-size: 0.70rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.service-showcase-visual::after {
  content: none !important;
  display: none !important;
}

.service-orbit {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.service-orbit span {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 250, 243, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: default !important;
}

.service-orbit span::before {
  content: "" !important;
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  margin-right: 9px !important;
  border-radius: 50% !important;
  background: rgba(213, 91, 101, 0.82) !important;
  flex: 0 0 auto !important;
}

@media (max-width: 560px) {
  .service-showcase-visual {
    padding: 16px 18px !important;
    border-radius: 20px !important;
  }

  .service-showcase-visual::before {
    margin-bottom: 10px !important;
    font-size: 0.66rem !important;
  }

  .service-orbit {
    gap: 9px 14px !important;
  }

  .service-orbit span {
    font-size: 0.88rem !important;
  }

  .real-work-card figcaption {
    padding: 12px 13px !important;
  }

  .real-work-card figcaption strong {
    font-size: 1rem !important;
  }
}

/* ANJU_WEIRD_BLOCKS_FIX_END */


/* ANJU_REMOVE_SERVICE_ORBIT_START */

/* =========================================================
   LIMPIEZA FINAL — ELIMINAR BLOQUE CORTE/COLOR/TEXTURA/BARBA
   Motivo: parecía interactivo, no aportaba conversión y ensuciaba el diseño.
   ========================================================= */

.service-showcase-visual,
.service-orbit {
  display: none !important;
}

.service-showcase {
  grid-template-columns: 1fr !important;
  align-items: center !important;
}

.service-showcase-copy {
  max-width: 900px !important;
}

.service-showcase h3 {
  max-width: 840px !important;
}

.service-showcase p {
  max-width: 760px !important;
}

.service-showcase-actions {
  max-width: 720px !important;
}

@media (max-width: 560px) {
  .service-showcase {
    padding: 28px 20px !important;
  }

  .service-showcase h3 {
    font-size: clamp(2.2rem, 10vw, 3.45rem) !important;
    line-height: 0.96 !important;
  }

  .service-showcase p {
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
  }
}

/* ANJU_REMOVE_SERVICE_ORBIT_END */

/* =========================================================
   HOTFIX QA � HERO DESKTOP SIN SOLAPES
   Evita que la p�ldora de identidad y la tarjeta de ubicaci�n
   se pisen en versi�n escritorio.
   ========================================================= */

@media (min-width: 821px) {
  .hero-visual .hero-badge {
    left: 34px !important;
    right: auto !important;
    bottom: 34px !important;
    max-width: min(520px, calc(100% - 90px)) !important;
    white-space: nowrap !important;
  }

  .hero-visual .floating-card-2 {
    top: 34px !important;
    right: 34px !important;
    bottom: auto !important;
    max-width: 260px !important;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .hero-visual .hero-badge {
    max-width: calc(100% - 68px) !important;
    white-space: normal !important;
  }

  .hero-visual .floating-card-2 {
    top: 24px !important;
    right: 24px !important;
    max-width: 230px !important;
  }
}



/* =========================================================
   POLISH 9.7 — QA FINAL ANJU
   Capa no destructiva: corrige solapes, accesibilidad,
   tactilidad móvil, foco visible, rendimiento percibido
   y lectura premium sin refactorizar todo el CSS.
   ========================================================= */

html {
  scroll-padding-top: 104px;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#inicio,
#servicios,
#equipo,
#opiniones,
#reservar,
#contacto {
  scroll-margin-top: 104px;
}

.btn,
.menu-toggle,
.service-link,
.team-link,
[data-reserve],
.floating-call,
.floating-whatsapp {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 247, 239, 0.82) !important;
  outline-offset: 4px !important;
}

/* Hero desktop: tarjetas sin solape y con lectura premium */
@media (min-width: 821px) {
  .hero-visual {
    isolation: isolate;
  }

  .hero-visual .hero-badge {
    left: 34px !important;
    right: auto !important;
    bottom: 34px !important;
    max-width: min(520px, calc(100% - 86px)) !important;
    white-space: nowrap !important;
    z-index: 4 !important;
  }

  .hero-visual .floating-card-1 {
    top: 30px !important;
    left: 26px !important;
    max-width: 280px !important;
    z-index: 4 !important;
  }

  .hero-visual .floating-card-2 {
    top: 30px !important;
    right: 30px !important;
    bottom: auto !important;
    max-width: 255px !important;
    z-index: 4 !important;
  }

  .hero-main-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    pointer-events: none;
    z-index: 2;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.18), transparent 28%, transparent 72%, rgba(0,0,0,0.16)),
      linear-gradient(180deg, rgba(0,0,0,0.10), transparent 38%, rgba(0,0,0,0.22));
  }
}

/* Desktop medio: evitar que la tarjeta de ubicación compita con el claim */
@media (min-width: 821px) and (max-width: 1180px) {
  .hero-visual .hero-badge {
    max-width: calc(100% - 68px) !important;
    white-space: normal !important;
  }

  .hero-visual .floating-card-1,
  .hero-visual .floating-card-2 {
    max-width: 230px !important;
  }
}

/* Móvil: evitar zoom en inputs y que el CTA tape lectura */
@media (max-width: 560px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  #reservar {
    scroll-margin-bottom: 110px;
  }

  .booking-card {
    margin-bottom: 8px;
  }

  .floating-actions {
    z-index: 90 !important;
  }

  .floating-call,
  .floating-whatsapp {
    min-height: 50px !important;
  }
}

/* Imágenes: estabilidad visual y menos saltos */
img {
  height: auto;
}

.hero-logo-img,
.team-photo,
.work-photo,
.gallery-photo {
  backface-visibility: hidden;
}

/* Reducir mareo/consumo si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Ajuste premium final: que los textos largos respiren */
.section-heading p,
.hero-description,
.review-card p,
.team-card p,
.service-card p,
.booking-note,
.contact-block p {
  max-wrap: pretty;
}

/* Evita overflow horizontal por tarjetas absolutas en desktop */
main,
.site-header,
.site-footer {
  overflow-x: clip;
}


/* =========================================================
   HOTFIX QA � HERO LIMPIO SIN DOBLE TARJETA
   La ubicaci�n no debe competir visualmente dentro del hero.
   Se mantiene solo una tarjeta de confianza.
   ========================================================= */

@media (min-width: 821px) {
  .hero-visual .floating-card-2 {
    display: none !important;
  }

  .hero-visual .floating-card-1 {
    top: auto !important;
    left: 34px !important;
    bottom: 34px !important;
    right: auto !important;
    max-width: 430px !important;
    min-width: 0 !important;
    z-index: 5 !important;
  }

  .hero-visual .floating-card-1 h3,
  .hero-visual .floating-card-1 p {
    max-width: 100% !important;
  }
}

@media (max-width: 820px) {
  .hero-visual .floating-card-2 {
    display: none !important;
  }

  .hero-visual .floating-card-1 {
    max-width: calc(100% - 32px) !important;
  }
}

/* =========================================================
   HOTFIX QA � DESKTOP CON M�S ALTURA DE MIRAS
   Limpia el hero en escritorio: la imagen respira y no lleva
   tarjetas/textos duplicados encima.
   ========================================================= */

@media (min-width: 821px) {
  .hero-visual .floating-card-1,
  .hero-visual .floating-card-2,
  .hero-visual .hero-badge {
    display: none !important;
  }

  .hero-main-card {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-main-card img,
  .hero-logo-img {
    display: block !important;
  }
}

/* Desktop: menos sensaci�n de m�vil ampliado */
@media (min-width: 1024px) {
  .container,
  .section .container,
  .hero .container {
    max-width: 1180px !important;
  }

  .hero {
    padding-top: 72px !important;
    padding-bottom: 64px !important;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.2vw, 5.6rem) !important;
    line-height: 0.92 !important;
    max-width: 760px !important;
  }

  .hero-description {
    max-width: 620px !important;
    font-size: clamp(1.05rem, 1.25vw, 1.25rem) !important;
  }

  .section {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
  }

  .section-heading {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-heading h2 {
    font-size: clamp(2.3rem, 3.8vw, 4.4rem) !important;
    line-height: 0.98 !important;
  }

  .service-card,
  .review-card,
  .team-card,
  .booking-card,
  .contact-card {
    max-width: 100% !important;
  }
}

/* Desktop ancho: m�s aire, menos zoom visual */
@media (min-width: 1280px) {
  .container,
  .section .container,
  .hero .container {
    max-width: 1240px !important;
  }

  .hero {
    min-height: auto !important;
  }

  .hero-main-card {
    max-width: 600px !important;
  }
}


/* =========================================================
   GALERÍA GOURMET ANJU — TRABAJOS REALES PREMIUM
   Fotos reales como portfolio editorial, no cuadrícula genérica.
   ========================================================= */

.premium-gallery-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 28, 45, 0.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 247, 239, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.052), rgba(255, 247, 239, 0.014)),
    #0b0a0b;
  border: 1px solid rgba(255, 247, 239, 0.10);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 247, 239, 0.06);
}

.premium-gallery-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 247, 239, 0.045);
  pointer-events: none;
}

.premium-gallery-head {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-bottom: 34px;
}

.premium-gallery-head h2 {
  color: var(--white) !important;
}

.premium-gallery-head p {
  max-width: 760px;
  color: rgba(244, 239, 234, 0.76) !important;
}

.anju-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: clamp(12px, 1.6vw, 20px);
}

.anju-shot {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 30px;
  background: #080707;
  border: 1px solid rgba(255, 247, 239, 0.11);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 247, 239, 0.05);
  isolation: isolate;
}

.anju-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.68) 100%),
    radial-gradient(circle at 18% 8%, rgba(197, 28, 45, 0.22), transparent 34%);
  opacity: 0.88;
  transition: opacity 0.28s ease;
}

.anju-shot::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border-radius: 22px;
  border: 1px solid rgba(255, 247, 239, 0.09);
  pointer-events: none;
}

.anju-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(1.04) contrast(1.03);
}

.anju-shot:hover img {
  transform: scale(1.055);
}

.anju-shot:hover::before {
  opacity: 0.74;
}

.anju-shot figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 10, 10, 0.66), rgba(7, 6, 6, 0.82));
  border: 1px solid rgba(255, 247, 239, 0.10);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.anju-shot figcaption span {
  display: inline-block;
  margin-bottom: 7px;
  color: #ee7580;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anju-shot figcaption strong {
  display: block;
  color: #fff7ef;
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  line-height: 1.35;
  font-weight: 850;
  text-wrap: balance;
}

.anju-shot-featured {
  grid-column: span 6;
  grid-row: span 5;
}

.anju-shot-tall {
  grid-column: span 3;
  grid-row: span 5;
}

.anju-shot-men {
  grid-column: span 3;
  grid-row: span 3;
}

.anju-shot-creative {
  grid-column: span 4;
  grid-row: span 4;
}

.anju-shot-blonde {
  grid-column: span 4;
  grid-row: span 4;
}

.anju-shot-wine {
  grid-column: span 4;
  grid-row: span 4;
}

.anju-shot-curl {
  grid-column: span 3;
  grid-row: span 4;
}

.anju-shot-detail {
  grid-column: span 3;
  grid-row: span 4;
}

.anju-shot-process {
  grid-column: span 3;
  grid-row: span 4;
}

.anju-shot-human {
  grid-column: span 3;
  grid-row: span 4;
}

.anju-shot-bob img {
  object-position: center;
}

.anju-shot-copper img,
.anju-shot-men img,
.anju-shot-blonde img,
.anju-shot-curl img {
  object-position: center top;
}

.anju-shot-creative img,
.anju-shot-wine img {
  object-position: center center;
}

.anju-shot-detail img {
  object-position: center top;
}

.anju-shot-process img {
  object-position: center center;
}

.anju-shot-human img {
  object-position: center top;
}

.anju-gallery-note {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.052), rgba(255, 247, 239, 0.016));
  border: 1px solid rgba(255, 247, 239, 0.09);
}

.anju-gallery-note span {
  color: #fff7ef;
  font-weight: 900;
}

.anju-gallery-note p {
  margin: 0;
  color: rgba(244, 239, 234, 0.62) !important;
  font-size: 0.92rem;
}

/* Hero caption: una sola pieza editorial, no tarjetas duplicadas */
.hero-badge-editorial {
  max-width: min(430px, calc(100% - 48px)) !important;
  padding: 14px 18px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(10, 9, 9, 0.62), rgba(6, 5, 5, 0.78)) !important;
  border: 1px solid rgba(255, 247, 239, 0.12) !important;
  color: #fff7ef !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge-editorial span {
  display: block;
  font-size: 0.96rem;
  line-height: 1.35;
  text-wrap: balance;
}

/* Desktop: evita que las tarjetas antiguas compitan con la foto */
@media (min-width: 821px) {
  .hero-visual .floating-card-1,
  .hero-visual .floating-card-2 {
    display: none !important;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .anju-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 112px;
  }

  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    grid-column: span 3;
    grid-row: span 4;
  }

  .anju-shot-featured {
    grid-column: span 6;
    grid-row: span 4;
  }
}

/* Móvil */
@media (max-width: 620px) {
  .premium-gallery-panel {
    padding: 20px 14px;
    border-radius: 28px;
  }

  .premium-gallery-panel::before {
    inset: 10px;
    border-radius: 22px;
  }

  .premium-gallery-head {
    margin-bottom: 22px;
  }

  .anju-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .anju-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .anju-gallery::-webkit-scrollbar-thumb {
    background: rgba(255, 247, 239, 0.18);
    border-radius: 999px;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    flex: 0 0 82%;
    min-height: 470px;
    scroll-snap-align: center;
    grid-column: auto;
    grid-row: auto;
    border-radius: 26px;
  }

  .anju-shot::after {
    inset: 10px;
    border-radius: 19px;
  }

  .anju-shot figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    border-radius: 19px;
  }

  .anju-shot figcaption span {
    font-size: 0.68rem;
  }

  .anju-shot figcaption strong {
    font-size: 0.96rem;
  }

  .anju-gallery-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-badge-editorial {
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    max-width: none !important;
    text-align: left !important;
  }
}

/* =========================================================
   HOTFIX QA � GALER�A DESKTOP EQUILIBRADA
   Evita masonry raro en escritorio. Portfolio premium:
   tarjetas consistentes, marcos gourmet y lectura ordenada.
   ========================================================= */

@media (min-width: 981px) {
  .anju-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 22px !important;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 30px !important;
  }

  .anju-shot-featured {
    grid-column: span 1 !important;
    aspect-ratio: 4 / 5 !important;
  }

  .anju-shot img {
    min-height: 0 !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .anju-shot figcaption {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    padding: 15px 17px !important;
    border-radius: 21px !important;
  }

  .anju-shot figcaption strong {
    font-size: 1rem !important;
    line-height: 1.35 !important;
  }
}

/* Desktop ancho: un poco m�s editorial, pero sin foto monstruo */
@media (min-width: 1280px) {
  .anju-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    aspect-ratio: 4 / 5 !important;
  }

  .anju-shot-featured {
    grid-column: span 2 !important;
    aspect-ratio: 8 / 5 !important;
  }
}


/* =========================================================
   HOTFIX QA — GALERÍA PREMIUM UNIFORME
   Quita efecto collage/masonry. Todas las fotos tienen peso
   visual coherente para que parezca portfolio editorial.
   ========================================================= */

.anju-gallery-note {
  display: none !important;
}

@media (min-width: 981px) {
  .premium-gallery-panel {
    padding: clamp(28px, 3.4vw, 42px) !important;
  }

  .anju-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 22px !important;
    align-items: stretch !important;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 30px !important;
  }

  .anju-shot img,
  .anju-shot-featured img,
  .anju-shot-tall img,
  .anju-shot-men img,
  .anju-shot-creative img,
  .anju-shot-blonde img,
  .anju-shot-wine img,
  .anju-shot-curl img,
  .anju-shot-detail img,
  .anju-shot-process img,
  .anju-shot-human img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
  }

  .anju-shot figcaption {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
  }

  .anju-shot figcaption span {
    font-size: 0.68rem !important;
    letter-spacing: 0.16em !important;
  }

  .anju-shot figcaption strong {
    font-size: 0.94rem !important;
    line-height: 1.34 !important;
  }
}

/* Desktop medio: 3 columnas para que no se estrechen demasiado */
@media (min-width: 981px) and (max-width: 1320px) {
  .anju-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Tablet: 2 columnas limpias */
@media (min-width: 621px) and (max-width: 980px) {
  .anju-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 0 !important;
  }

  .anju-shot img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
  }
}

/* Encuadres individuales */
.anju-shot-bob img {
  object-position: center center !important;
}

.anju-shot-copper img {
  object-position: center center !important;
}

.anju-shot-men img {
  object-position: center top !important;
}

.anju-shot-creative img {
  object-position: center center !important;
}

.anju-shot-blonde img {
  object-position: center top !important;
}

.anju-shot-wine img {
  object-position: center center !important;
}

.anju-shot-curl img {
  object-position: center top !important;
}

.anju-shot-detail img {
  object-position: center top !important;
}

.anju-shot-process img {
  object-position: center center !important;
}

.anju-shot-human img {
  object-position: center top !important;
}

/* Hero con la foto buena */
.photo-showcase .hero-logo-img {
  object-position: center center !important;
}

/* =========================================================
   HOTFIX QA � CAPTIONS GALER�A SIN TAPAR SUJETO
   Compacta captions y ajusta encuadre en fotos donde el texto
   tapa rostro/pelo.
   ========================================================= */

/* Caption m�s editorial y menos invasivo */
.anju-shot figcaption {
  left: 14px !important;
  right: 14px !important;
  bottom: 12px !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(10, 8, 8, 0.52), rgba(6, 5, 5, 0.74)) !important;
}

.anju-shot figcaption span {
  margin-bottom: 5px !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.16em !important;
}

.anju-shot figcaption strong {
  font-size: 0.9rem !important;
  line-height: 1.25 !important;
}

/* Menos oscurecimiento general: la foto debe vender m�s que la tarjeta */
.anju-shot::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.00) 35%, rgba(0,0,0,0.56) 100%),
    radial-gradient(circle at 18% 8%, rgba(197, 28, 45, 0.14), transparent 34%) !important;
}

/* Ajustes concretos: caballero y textura necesitan m�s aire abajo */
.anju-shot-men img {
  object-position: center 18% !important;
}

.anju-shot-curl img {
  object-position: center 16% !important;
}

/* En desktop ancho, caption a�n m�s compacto */
@media (min-width: 981px) {
  .anju-shot figcaption {
    left: 13px !important;
    right: 13px !important;
    bottom: 13px !important;
    padding: 11px 13px !important;
  }

  .anju-shot figcaption strong {
    font-size: 0.86rem !important;
  }
}

/* En m�vil mantenemos legibilidad sin tapar demasiado */
@media (max-width: 620px) {
  .anju-shot figcaption {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 12px 13px !important;
  }

  .anju-shot figcaption strong {
    font-size: 0.92rem !important;
  }
}

/* =========================================================
   HOTFIX QA � GALER�A M�VIL M�S GRANDE Y PREMIUM
   En m�vil las fotos deben sentirse inmersivas, no miniaturas.
   ========================================================= */

@media (max-width: 620px) {
  .premium-gallery-panel {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .anju-gallery {
    gap: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    flex: 0 0 94% !important;
    min-height: 560px !important;
    border-radius: 28px !important;
  }

  .anju-shot img {
    height: 100% !important;
    min-height: 560px !important;
    object-fit: cover !important;
  }

  .anju-shot::after {
    inset: 9px !important;
    border-radius: 22px !important;
  }

  .anju-shot figcaption {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 12px 13px !important;
    border-radius: 18px !important;
    max-width: calc(100% - 24px) !important;
  }

  .anju-shot figcaption span {
    font-size: 0.66rem !important;
    margin-bottom: 5px !important;
  }

  .anju-shot figcaption strong {
    font-size: 0.94rem !important;
    line-height: 1.24 !important;
  }

  /* La foto naranja necesita ense�ar m�s contexto y no solo pelo gigante */
  .anju-shot-detail img {
    object-position: center 24% !important;
  }
}

@media (max-width: 390px) {
  .anju-shot,
  .anju-shot-featured,
  .anju-shot-tall,
  .anju-shot-men,
  .anju-shot-creative,
  .anju-shot-blonde,
  .anju-shot-wine,
  .anju-shot-curl,
  .anju-shot-detail,
  .anju-shot-process,
  .anju-shot-human {
    flex-basis: 96% !important;
    min-height: 520px !important;
  }

  .anju-shot img {
    min-height: 520px !important;
  }
}


/* =========================================================
   SELECTS PREMIUM — ANJU
   Sustituye el desplegable nativo feo por un dropdown acorde
   al diseño oscuro/premium.
   ========================================================= */

.premium-select {
  position: relative;
  width: 100%;
  z-index: 20;
}

.premium-select__native {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  left: 0 !important;
  top: 0 !important;
}

.premium-select__button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 247, 239, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.075), rgba(255, 247, 239, 0.028)),
    rgba(20, 15, 16, 0.92);
  color: #fff7ef;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.premium-select__button:hover {
  border-color: rgba(255, 247, 239, 0.32);
  transform: translateY(-1px);
}

.premium-select.is-open .premium-select__button {
  border-color: rgba(229, 106, 120, 0.72);
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.34);
}

.premium-select__text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.premium-select__chevron {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 247, 239, 0.92);
  background: rgba(255, 247, 239, 0.06);
  border: 1px solid rgba(255, 247, 239, 0.10);
  transition: transform 0.2s ease;
}

.premium-select.is-open .premium-select__chevron {
  transform: rotate(180deg);
}

.premium-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(255, 247, 239, 0.14);
  background:
    linear-gradient(180deg, rgba(28, 21, 22, 0.98), rgba(10, 8, 9, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 247, 239, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.premium-select.is-open .premium-select__list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.premium-select__option {
  width: 100%;
  display: block;
  padding: 13px 14px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: rgba(255, 247, 239, 0.82);
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.premium-select__option:hover,
.premium-select__option.is-selected {
  color: #fff7ef;
  background:
    radial-gradient(circle at 0% 50%, rgba(197, 28, 45, 0.25), transparent 42%),
    rgba(255, 247, 239, 0.07);
}

.premium-select__option:hover {
  transform: translateX(2px);
}

.premium-select__option.is-selected::before {
  content: "•";
  color: #e56a78;
  margin-right: 8px;
}

.premium-select__list::-webkit-scrollbar {
  width: 8px;
}

.premium-select__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.18);
}

@media (max-width: 620px) {
  .premium-select {
    z-index: 60;
  }

  .premium-select__button {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 22px;
  }

  .premium-select__list {
    max-height: 260px;
    border-radius: 22px;
  }

  .premium-select__option {
    padding: 13px 12px;
    border-radius: 16px;
  }
}

/* =========================================================
   HOTFIX QA � FORM DESKTOP PREMIUM SELECTS EN GRID
   Evita que los selects custom invadan otras columnas.
   ========================================================= */

.booking-card,
.booking-form,
.form-grid,
.field {
  min-width: 0 !important;
}

.field .premium-select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.premium-select__button {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.premium-select__text {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

/* El desplegable debe abrir dentro de su campo, no sobre media pantalla */
.premium-select__list {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

/* Si el campo estaba marcado como ancho, que sea ancho de verdad */
.field-wide,
.field.full,
.field-full,
.field:has(textarea) {
  grid-column: 1 / -1 !important;
}

/* Desktop: grid limpio 2 columnas */
@media (min-width: 821px) {
  .booking-form,
  .form-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 28px !important;
    row-gap: 26px !important;
    align-items: start !important;
  }

  .booking-form .field,
  .form-grid .field {
    width: 100% !important;
    min-width: 0 !important;
  }

  .booking-form textarea,
  .form-grid textarea {
    width: 100% !important;
  }
}

/* M�vil: todo a una columna */
@media (max-width: 820px) {
  .booking-form,
  .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .field,
  .field-wide,
  .field.full,
  .field-full {
    grid-column: 1 / -1 !important;
  }
}

/* =========================================================
   HOTFIX QA � RESTAURAR SELECTS ESTABLES
   El custom dropdown premium romp�a el grid del formulario.
   Se vuelve a select nativo estilizado: bonito cerrado, estable abierto.
   ========================================================= */

/* Ocultar botones/listas custom generados por JS */
.premium-select__button,
.premium-select__list {
  display: none !important;
}

/* El wrapper deja de interferir con el grid */
.premium-select {
  display: block !important;
  position: static !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  z-index: auto !important;
}

/* Restaurar select real */
.premium-select__native,
.premium-select select,
select {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 58px !important;
  left: auto !important;
  top: auto !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  padding: 0 54px 0 20px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(255, 247, 239, 0.18) !important;

  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.075), rgba(255, 247, 239, 0.028)),
    rgba(20, 15, 16, 0.94) !important;

  color: #fff7ef !important;
  font: inherit !important;
  font-weight: 850 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.20) !important;

  cursor: pointer !important;
}

/* Flecha visual estable */
.premium-select::after,
.field:has(select)::after {
  content: "?";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 247, 239, 0.92);
  background: rgba(255, 247, 239, 0.07);
  border: 1px solid rgba(255, 247, 239, 0.10);
  pointer-events: none;
  z-index: 2;
}

/* Evitar doble flecha cuando el select est� dentro del wrapper */
.field:has(.premium-select)::after {
  display: none !important;
}

.field {
  position: relative !important;
  min-width: 0 !important;
}

select:focus {
  outline: none !important;
  border-color: rgba(229, 106, 120, 0.72) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.34) !important;
}

/* Opciones nativas: al menos coherentes en navegadores que lo respetan */
select option {
  background: #120d0f !important;
  color: #fff7ef !important;
}

/* Formulario: recuperar proporciones limpias */
.booking-form,
.form-grid {
  align-items: start !important;
}

@media (min-width: 821px) {
  .booking-form,
  .form-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) !important;
    column-gap: 28px !important;
    row-gap: 26px !important;
  }

  .field,
  .field .premium-select,
  .field select,
  .field input,
  .field textarea {
    max-width: 100% !important;
  }
}

@media (max-width: 820px) {
  select,
  .premium-select select {
    min-height: 56px !important;
    border-radius: 22px !important;
    padding-left: 16px !important;
    padding-right: 50px !important;
  }
}

/* =========================================================
   HOTFIX QA FINAL � RESERVA DESKTOP ESTABLE
   Resetea solo el bloque #reservar tras los problemas con selects custom.
   Objetivo: formulario limpio, sin solapes, usable y premium.
   ========================================================= */

#reservar,
#reservar * {
  box-sizing: border-box !important;
}

#reservar .booking-card {
  position: relative !important;
  overflow: hidden !important;
}

#reservar form,
#reservar .booking-form {
  position: relative !important;
  z-index: 2 !important;
  min-width: 0 !important;
}

/* Desktop: formulario limpio en 2 columnas */
@media (min-width: 901px) {
  #reservar .booking-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr) !important;
    gap: 34px !important;
    align-items: start !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #reservar form,
  #reservar .booking-form {
    grid-column: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 24px 28px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #reservar .field {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    position: relative !important;
  }

  #reservar .field:has(textarea),
  #reservar .field-wide,
  #reservar .field-full,
  #reservar .field.full {
    grid-column: 1 / -1 !important;
  }

  /* Todo lo que sea nota/acci�n lateral debe ir a columna derecha, no encima del form */
  #reservar .booking-note,
  #reservar .booking-info,
  #reservar .booking-side,
  #reservar .booking-aside,
  #reservar .booking-summary,
  #reservar .booking-actions,
  #reservar aside {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }
}

/* Tablet/m�vil: una columna estable */
@media (max-width: 900px) {
  #reservar .booking-card,
  #reservar form,
  #reservar .booking-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #reservar .field,
  #reservar .field-wide,
  #reservar .field-full,
  #reservar .field.full,
  #reservar .booking-note,
  #reservar .booking-info,
  #reservar .booking-side,
  #reservar .booking-aside,
  #reservar .booking-summary,
  #reservar .booking-actions,
  #reservar aside {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Selects: se quedan nativos estilizados. Nada de custom dropdown roto. */
#reservar .premium-select__button,
#reservar .premium-select__list {
  display: none !important;
}

#reservar .premium-select {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

#reservar select,
#reservar .premium-select select,
#reservar .premium-select__native {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;

  appearance: auto !important;
  -webkit-appearance: auto !important;

  padding: 0 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 247, 239, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.07), rgba(255, 247, 239, 0.025)),
    rgba(23, 17, 18, 0.96) !important;
  color: #fff7ef !important;
  font: inherit !important;
  font-weight: 800 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

/* Quitar flechas falsas que sal�an como '?' */
#reservar .premium-select::after,
#reservar .field:has(select)::after {
  display: none !important;
  content: none !important;
}

/* Inputs coherentes */
#reservar input,
#reservar textarea {
  width: 100% !important;
  max-width: 100% !important;
}

/* El bot�n rojo no debe pisar columnas */
#reservar button,
#reservar .btn {
  max-width: 100% !important;
}



/* =========================================================
   RESERVA CLEAN FINAL — SECCIÓN RECONSTRUIDA
   Bloque aislado, estable, sin custom selects rotos.
   ========================================================= */

#reservar.booking-clean,
#reservar.booking-clean * {
  box-sizing: border-box !important;
}

#reservar.booking-clean {
  position: relative !important;
  overflow: hidden !important;
}

#reservar .booking-clean-card {
  width: min(1120px, 100%) !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 46px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr) !important;
  gap: clamp(26px, 4vw, 56px) !important;
  align-items: start !important;
  border-radius: 38px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 28, 45, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.060), rgba(255, 247, 239, 0.018)),
    rgba(15, 12, 13, 0.96) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 247, 239, 0.06) !important;
}

#reservar .booking-clean-copy {
  min-width: 0 !important;
}

#reservar .booking-clean-copy h2 {
  margin: 0 0 18px !important;
  color: #fff7ef !important;
  font-size: clamp(2.15rem, 4vw, 4.25rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance !important;
}

#reservar .booking-clean-copy p {
  max-width: 440px !important;
  color: rgba(244, 239, 234, 0.72) !important;
  font-size: 1.04rem !important;
  line-height: 1.65 !important;
}

#reservar .booking-clean-points {
  margin-top: 24px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#reservar .booking-clean-points span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 239, 0.055) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  color: rgba(255, 247, 239, 0.82) !important;
  font-size: 0.86rem !important;
  font-weight: 850 !important;
}

#reservar .booking-clean-form {
  min-width: 0 !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 22px 24px !important;
  align-items: start !important;
}

#reservar .field {
  min-width: 0 !important;
  width: 100% !important;
  position: relative !important;
  display: block !important;
}

#reservar .field-full {
  grid-column: 1 / -1 !important;
}

#reservar label {
  display: block !important;
  margin: 0 0 10px !important;
  color: #fff7ef !important;
  font-weight: 900 !important;
  font-size: 0.98rem !important;
}

#reservar input,
#reservar select,
#reservar textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 247, 239, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.065), rgba(255, 247, 239, 0.020)),
    rgba(23, 18, 19, 0.96) !important;
  color: #fff7ef !important;
  font: inherit !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

#reservar select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  cursor: pointer !important;
}

#reservar textarea {
  min-height: 118px !important;
  padding-top: 16px !important;
  resize: vertical !important;
  line-height: 1.45 !important;
}

#reservar input::placeholder,
#reservar textarea::placeholder {
  color: rgba(255, 247, 239, 0.38) !important;
}

#reservar input:focus,
#reservar select:focus,
#reservar textarea:focus {
  outline: none !important;
  border-color: rgba(229, 106, 120, 0.72) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.30) !important;
}

#reservar select option {
  background: #130e10 !important;
  color: #fff7ef !important;
}

#reservar .booking-clean-actions {
  grid-column: 1 / -1 !important;
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-top: 2px !important;
}

#reservar .booking-clean-actions .btn {
  flex: 1 1 220px !important;
  min-height: 58px !important;
  justify-content: center !important;
  text-align: center !important;
}

#reservar .booking-clean-note {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 15px 16px !important;
  border-radius: 20px !important;
  background: rgba(255, 247, 239, 0.045) !important;
  border: 1px solid rgba(255, 247, 239, 0.08) !important;
  color: rgba(244, 239, 234, 0.66) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}

/* Neutralizar restos de selects custom SOLO dentro de reserva */
#reservar .premium-select__button,
#reservar .premium-select__list,
#reservar .premium-select::after,
#reservar .field:has(select)::after {
  display: none !important;
  content: none !important;
}

#reservar .premium-select {
  display: block !important;
  position: static !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

#reservar .premium-select__native,
#reservar .premium-select select {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 100% !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;
}

@media (max-width: 900px) {
  #reservar .booking-clean-card {
    grid-template-columns: 1fr !important;
    border-radius: 30px !important;
  }

  #reservar .booking-clean-copy p {
    max-width: none !important;
  }

  #reservar .booking-clean-form {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #reservar .field,
  #reservar .field-full,
  #reservar .booking-clean-actions,
  #reservar .booking-clean-note {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  #reservar .booking-clean-card {
    padding: 20px 14px !important;
    border-radius: 26px !important;
  }

  #reservar .booking-clean-copy h2 {
    font-size: clamp(2rem, 11vw, 3.1rem) !important;
  }

  #reservar input,
  #reservar select,
  #reservar textarea {
    min-height: 56px !important;
    border-radius: 22px !important;
    font-size: 16px !important;
  }

  #reservar .booking-clean-actions {
    flex-direction: column !important;
  }

  #reservar .booking-clean-actions .btn {
    width: 100% !important;
    flex-basis: auto !important;
  }
}

/* =========================================================
   HOTFIX QA � RESERVA WEB EN DOS COLUMNAS + SELECT PREMIUM ESTABLE
   Recupera estructura elegante en desktop:
   izquierda explicaci�n, derecha formulario.
   Selects bonitos sin custom dropdown roto.
   ========================================================= */

/* Desktop/tablet ancho: copy a la izquierda, formulario a la derecha */
@media (min-width: 760px) {
  #reservar .booking-clean-card {
    width: min(1180px, calc(100% - 36px)) !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 0.82fr) minmax(480px, 1.18fr) !important;
    gap: clamp(34px, 5vw, 72px) !important;
    align-items: start !important;
  }

  #reservar .booking-clean-copy {
    grid-column: 1 !important;
    position: sticky !important;
    top: 110px !important;
    align-self: start !important;
  }

  #reservar .booking-clean-form {
    grid-column: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 22px 26px !important;
    align-items: start !important;
    width: 100% !important;
  }

  #reservar .booking-clean-copy h2 {
    font-size: clamp(2.25rem, 3.8vw, 4.2rem) !important;
    max-width: 430px !important;
  }

  #reservar .booking-clean-copy p {
    max-width: 390px !important;
  }

  #reservar .booking-clean-points {
    max-width: 390px !important;
  }
}

/* Port�til estrecho: sigue en dos columnas, pero m�s compacto */
@media (min-width: 760px) and (max-width: 1050px) {
  #reservar .booking-clean-card {
    grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.28fr) !important;
    gap: 32px !important;
  }

  #reservar .booking-clean-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3.2rem) !important;
  }
}

/* M�vil real: una columna */
@media (max-width: 759px) {
  #reservar .booking-clean-card,
  #reservar .booking-clean-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #reservar .booking-clean-copy,
  #reservar .booking-clean-form {
    grid-column: 1 / -1 !important;
    position: static !important;
  }
}

/* Select premium estable: nativo estilizado, sin dropdown custom */
#reservar .field {
  position: relative !important;
}

#reservar select,
#reservar .premium-select select,
#reservar .premium-select__native {
  appearance: none !important;
  -webkit-appearance: none !important;

  width: 100% !important;
  min-height: 60px !important;
  padding: 0 58px 0 20px !important;

  border-radius: 26px !important;
  border: 1px solid rgba(255, 247, 239, 0.18) !important;

  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.075), rgba(255, 247, 239, 0.025)),
    rgba(23, 18, 19, 0.96) !important;

  color: #fff7ef !important;
  font: inherit !important;
  font-size: 1rem !important;
  font-weight: 850 !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.22) !important;

  cursor: pointer !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Flecha premium sin caracteres raros */
#reservar .field:has(select)::after {
  content: "" !important;
  position: absolute !important;
  right: 22px !important;
  bottom: 24px !important;
  width: 9px !important;
  height: 9px !important;
  border-right: 2px solid rgba(255, 247, 239, 0.88) !important;
  border-bottom: 2px solid rgba(255, 247, 239, 0.88) !important;
  transform: rotate(45deg) !important;
  pointer-events: none !important;
  z-index: 4 !important;
}

/* Si el JS ha envuelto alg�n select, no debe romper nada */
#reservar .premium-select {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

#reservar .premium-select__button,
#reservar .premium-select__list,
#reservar .premium-select::after {
  display: none !important;
  content: none !important;
}

/* Evitar textos cortados demasiado feos */
#reservar select option {
  background: #130e10 !important;
  color: #fff7ef !important;
}

/* Botones abajo limpios */
#reservar .booking-clean-actions {
  grid-column: 1 / -1 !important;
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

#reservar .booking-clean-actions .btn {
  flex: 1 1 240px !important;
  min-height: 60px !important;
  border-radius: 999px !important;
}

/* Nota final discreta */
#reservar .booking-clean-note {
  grid-column: 1 / -1 !important;
}


/* =========================================================
   RESERVA FINAL — CHIPS PREMIUM + CALENDARIO REAL
   Sin selects nativos. Sin dropdowns feos. Sin solapes.
   ========================================================= */

#reservar.booking-final,
#reservar.booking-final * {
  box-sizing: border-box !important;
}

#reservar .booking-final-card {
  width: min(1180px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 46px) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(480px, 1.18fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: start !important;
  border-radius: 38px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 28, 45, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.060), rgba(255, 247, 239, 0.018)),
    rgba(15, 12, 13, 0.96) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 247, 239, 0.06) !important;
}

#reservar .booking-final-copy {
  grid-column: 1 !important;
  position: sticky !important;
  top: 110px !important;
  min-width: 0 !important;
}

#reservar .booking-final-copy h2 {
  margin: 0 0 18px !important;
  max-width: 430px !important;
  color: #fff7ef !important;
  font-size: clamp(2.25rem, 3.8vw, 4.2rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance !important;
}

#reservar .booking-final-copy p {
  max-width: 390px !important;
  color: rgba(244, 239, 234, 0.72) !important;
  font-size: 1.04rem !important;
  line-height: 1.65 !important;
}

#reservar .booking-final-points {
  margin-top: 24px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#reservar .booking-final-points span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 239, 0.055) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  color: rgba(255, 247, 239, 0.82) !important;
  font-size: 0.86rem !important;
  font-weight: 850 !important;
}

#reservar .booking-final-form {
  grid-column: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 22px 26px !important;
  width: 100% !important;
  min-width: 0 !important;
}

#reservar .field {
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
}

#reservar .field-full {
  grid-column: 1 / -1 !important;
}

#reservar label {
  display: block !important;
  margin: 0 0 10px !important;
  color: #fff7ef !important;
  font-weight: 900 !important;
  font-size: 0.98rem !important;
}

#reservar input[type="text"],
#reservar textarea,
#reservar .date-chip-button {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 247, 239, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.065), rgba(255, 247, 239, 0.020)),
    rgba(23, 18, 19, 0.96) !important;
  color: #fff7ef !important;
  font: inherit !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

#reservar textarea {
  min-height: 118px !important;
  padding-top: 16px !important;
  resize: vertical !important;
  line-height: 1.45 !important;
}

#reservar input::placeholder,
#reservar textarea::placeholder {
  color: rgba(255, 247, 239, 0.38) !important;
}

#reservar .native-date-picker {
  position: absolute !important;
  left: 18px !important;
  bottom: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#reservar .date-chip-button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  cursor: pointer !important;
  text-align: left !important;
}

#reservar .date-chip-button small {
  flex: 0 0 auto !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 239, 0.07) !important;
  color: rgba(255, 247, 239, 0.72) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

#reservar .booking-chip-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#reservar .booking-option-chip {
  min-height: 48px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 247, 239, 0.14) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.060), rgba(255, 247, 239, 0.018)),
    rgba(23, 18, 19, 0.92) !important;
  color: rgba(255, 247, 239, 0.78) !important;
  font: inherit !important;
  font-size: 0.93rem !important;
  font-weight: 850 !important;
  cursor: pointer !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.16) !important;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

#reservar .booking-option-chip:hover {
  transform: translateY(-1px) !important;
  color: #fff7ef !important;
  border-color: rgba(255, 247, 239, 0.28) !important;
}

#reservar .booking-option-chip.is-selected {
  color: #fff7ef !important;
  border-color: rgba(229, 106, 120, 0.72) !important;
  background:
    radial-gradient(circle at 0% 50%, rgba(197, 28, 45, 0.30), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.080), rgba(255, 247, 239, 0.024)),
    rgba(42, 22, 25, 0.96) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

#reservar .booking-option-chip.is-selected::before {
  content: "•";
  margin-right: 8px;
  color: #ee7580;
}

#reservar .booking-final-actions {
  grid-column: 1 / -1 !important;
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

#reservar .booking-final-actions .btn {
  flex: 1 1 240px !important;
  min-height: 60px !important;
  border-radius: 999px !important;
  justify-content: center !important;
  text-align: center !important;
}

#reservar .booking-final-note {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 15px 16px !important;
  border-radius: 20px !important;
  background: rgba(255, 247, 239, 0.045) !important;
  border: 1px solid rgba(255, 247, 239, 0.08) !important;
  color: rgba(244, 239, 234, 0.66) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}

/* Neutralizar restos de selects antiguos dentro de reserva */
#reservar select,
#reservar .premium-select,
#reservar .premium-select__button,
#reservar .premium-select__list {
  display: none !important;
}

@media (max-width: 900px) {
  #reservar .booking-final-card {
    grid-template-columns: 1fr !important;
    border-radius: 30px !important;
  }

  #reservar .booking-final-copy,
  #reservar .booking-final-form {
    grid-column: 1 / -1 !important;
    position: static !important;
  }

  #reservar .booking-final-form {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #reservar .field,
  #reservar .field-full,
  #reservar .booking-final-actions,
  #reservar .booking-final-note {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  #reservar .booking-final-card {
    width: min(100%, calc(100% - 20px)) !important;
    padding: 20px 14px !important;
    border-radius: 26px !important;
  }

  #reservar .booking-final-copy h2 {
    font-size: clamp(2rem, 11vw, 3.1rem) !important;
  }

  #reservar .booking-option-chip {
    min-height: 46px !important;
    padding: 0 14px !important;
    font-size: 0.9rem !important;
  }

  #reservar .booking-final-actions {
    flex-direction: column !important;
  }

  #reservar .booking-final-actions .btn {
    width: 100% !important;
    flex-basis: auto !important;
  }
}


/* =========================================================
   RESERVA FINAL — POPUPS PREMIUM + CALENDARIO + SÁBADO INTELIGENTE
   ========================================================= */

#reservar.booking-popup-final,
#reservar.booking-popup-final * {
  box-sizing: border-box !important;
}

#reservar .booking-popup-card {
  width: min(1180px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 46px) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(480px, 1.18fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: start !important;
  border-radius: 38px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 28, 45, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.060), rgba(255, 247, 239, 0.018)),
    rgba(15, 12, 13, 0.96) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 247, 239, 0.06) !important;
}

#reservar .booking-popup-copy {
  grid-column: 1 !important;
  position: sticky !important;
  top: 110px !important;
  min-width: 0 !important;
}

#reservar .booking-popup-copy h2 {
  margin: 0 0 18px !important;
  max-width: 430px !important;
  color: #fff7ef !important;
  font-size: clamp(2.25rem, 3.8vw, 4.2rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-wrap: balance !important;
}

#reservar .booking-popup-copy p {
  max-width: 390px !important;
  color: rgba(244, 239, 234, 0.72) !important;
  font-size: 1.04rem !important;
  line-height: 1.65 !important;
}

#reservar .booking-popup-points {
  margin-top: 24px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#reservar .booking-popup-points span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 239, 0.055) !important;
  border: 1px solid rgba(255, 247, 239, 0.10) !important;
  color: rgba(255, 247, 239, 0.82) !important;
  font-size: 0.86rem !important;
  font-weight: 850 !important;
}

#reservar .booking-popup-form {
  grid-column: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 22px 26px !important;
  width: 100% !important;
  min-width: 0 !important;
}

#reservar .field {
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
}

#reservar .field-full {
  grid-column: 1 / -1 !important;
}

#reservar label {
  display: block !important;
  margin: 0 0 10px !important;
  color: #fff7ef !important;
  font-weight: 900 !important;
  font-size: 0.98rem !important;
}

#reservar input[type="text"],
#reservar textarea,
#reservar .booking-picker-button {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 247, 239, 0.16) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.065), rgba(255, 247, 239, 0.020)),
    rgba(23, 18, 19, 0.96) !important;
  color: #fff7ef !important;
  font: inherit !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

#reservar textarea {
  min-height: 118px !important;
  padding-top: 16px !important;
  resize: vertical !important;
  line-height: 1.45 !important;
}

#reservar input::placeholder,
#reservar textarea::placeholder {
  color: rgba(255, 247, 239, 0.38) !important;
}

#reservar .booking-picker-button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  text-align: left !important;
  cursor: pointer !important;
}

#reservar .booking-picker-button span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#reservar .booking-picker-button small {
  flex: 0 0 auto !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 239, 0.07) !important;
  color: rgba(255, 247, 239, 0.72) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

#reservar .booking-native-date {
  position: absolute !important;
  left: 18px !important;
  bottom: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#reservar .booking-time-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#reservar .booking-time-chip,
#reservar .booking-modal__option {
  min-height: 48px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 247, 239, 0.14) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.060), rgba(255, 247, 239, 0.018)),
    rgba(23, 18, 19, 0.92) !important;
  color: rgba(255, 247, 239, 0.78) !important;
  font: inherit !important;
  font-size: 0.93rem !important;
  font-weight: 850 !important;
  cursor: pointer !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 239, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.16) !important;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

#reservar .booking-time-chip:hover,
#reservar .booking-modal__option:hover {
  transform: translateY(-1px) !important;
  color: #fff7ef !important;
  border-color: rgba(255, 247, 239, 0.28) !important;
}

#reservar .booking-time-chip.is-selected,
#reservar .booking-modal__option.is-selected {
  color: #fff7ef !important;
  border-color: rgba(229, 106, 120, 0.72) !important;
  background:
    radial-gradient(circle at 0% 50%, rgba(197, 28, 45, 0.30), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.080), rgba(255, 247, 239, 0.024)),
    rgba(42, 22, 25, 0.96) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

#reservar .booking-time-chip.is-selected::before,
#reservar .booking-modal__option.is-selected::before {
  content: "•";
  margin-right: 8px;
  color: #ee7580;
}

#reservar .booking-time-chip.is-hidden {
  display: none !important;
}

#reservar .booking-time-helper {
  margin: 10px 0 0 !important;
  color: rgba(244, 239, 234, 0.52) !important;
  font-size: 0.86rem !important;
  line-height: 1.4 !important;
}

#reservar .booking-popup-actions {
  grid-column: 1 / -1 !important;
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

#reservar .booking-popup-actions .btn {
  flex: 1 1 240px !important;
  min-height: 60px !important;
  border-radius: 999px !important;
  justify-content: center !important;
  text-align: center !important;
}

#reservar .booking-popup-note {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 15px 16px !important;
  border-radius: 20px !important;
  background: rgba(255, 247, 239, 0.045) !important;
  border: 1px solid rgba(255, 247, 239, 0.08) !important;
  color: rgba(244, 239, 234, 0.66) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}

/* Modal selector */
#reservar .booking-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

#reservar .booking-modal.is-open {
  display: flex !important;
}

#reservar .booking-modal__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

#reservar .booking-modal__panel {
  position: relative !important;
  z-index: 2 !important;
  width: min(560px, 100%) !important;
  max-height: min(720px, calc(100vh - 40px)) !important;
  overflow: auto !important;
  padding: 24px !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.20), transparent 36%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.075), rgba(255, 247, 239, 0.025)),
    #100c0d !important;
  border: 1px solid rgba(255, 247, 239, 0.14) !important;
  box-shadow: 0 34px 100px rgba(0,0,0,0.62) !important;
}

#reservar .booking-modal__head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

#reservar .booking-modal__head h3 {
  margin: 0 !important;
  color: #fff7ef !important;
  font-size: clamp(1.8rem, 5vw, 2.6rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

#reservar .booking-modal__close {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,247,239,.14) !important;
  background: rgba(255,247,239,.06) !important;
  color: #fff7ef !important;
  font-size: 1.6rem !important;
  cursor: pointer !important;
}

#reservar .booking-modal__options {
  display: grid !important;
  gap: 10px !important;
}

#reservar .booking-modal__option {
  width: 100% !important;
  justify-content: flex-start !important;
  text-align: left !important;
  min-height: 56px !important;
}

/* Neutralizar restos antiguos */
#reservar select,
#reservar .premium-select,
#reservar .premium-select__button,
#reservar .premium-select__list {
  display: none !important;
}

@media (max-width: 900px) {
  #reservar .booking-popup-card {
    grid-template-columns: 1fr !important;
    border-radius: 30px !important;
  }

  #reservar .booking-popup-copy,
  #reservar .booking-popup-form {
    grid-column: 1 / -1 !important;
    position: static !important;
  }

  #reservar .booking-popup-form {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #reservar .field,
  #reservar .field-full,
  #reservar .booking-popup-actions,
  #reservar .booking-popup-note {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  #reservar .booking-popup-card {
    width: min(100%, calc(100% - 20px)) !important;
    padding: 20px 14px !important;
    border-radius: 26px !important;
  }

  #reservar .booking-popup-copy h2 {
    font-size: clamp(2rem, 11vw, 3.1rem) !important;
  }

  #reservar .booking-time-chip {
    min-height: 46px !important;
    padding: 0 14px !important;
    font-size: 0.9rem !important;
  }

  #reservar .booking-popup-actions {
    flex-direction: column !important;
  }

  #reservar .booking-popup-actions .btn {
    width: 100% !important;
    flex-basis: auto !important;
  }
}


/* =========================================================
   FIX FINAL — FECHA SELECCIONADA CLARA
   ========================================================= */

#reservar .booking-picker-button.has-date,
#reservar .date-chip-button.has-date,
#reservar #bookingDateButton.has-date {
  border-color: rgba(229, 106, 120, 0.78) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.26), transparent 40%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.085), rgba(255, 247, 239, 0.026)),
    rgba(42, 22, 25, 0.96) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

#reservar #bookingDateButton.has-date span,
#reservar .booking-picker-button.has-date span,
#reservar .date-chip-button.has-date span {
  color: #fff7ef !important;
  font-weight: 950 !important;
}

#reservar #bookingDateButton.has-date small,
#reservar .booking-picker-button.has-date small,
#reservar .date-chip-button.has-date small {
  background: rgba(229, 106, 120, 0.18) !important;
  color: #ffd9dd !important;
}

#reservar .booking-time-chip.is-hidden {
  display: none !important;
}


/* =========================================================
   BOOKING FINAL OVERRIDE — FECHA CLARA EN PANTALLA
   ========================================================= */

#reservar #bookingDatePicker {
  position: absolute !important;
  inset: auto !important;
  left: 18px !important;
  bottom: 8px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0.01 !important;
  pointer-events: auto !important;
}

#reservar #bookingDateButton.has-date {
  border-color: rgba(229, 106, 120, 0.85) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.095), rgba(255, 247, 239, 0.030)),
    rgba(48, 22, 26, 0.98) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.30) !important;
}

#reservar #bookingDateButton.has-date #bookingDateLabel {
  color: #fff7ef !important;
  font-weight: 950 !important;
}

#reservar #bookingDateButton.has-date small {
  background: rgba(229, 106, 120, 0.22) !important;
  color: #ffd9dd !important;
}

#reservar #bookingDateButton.has-date::before {
  content: "Día seleccionado";
  position: absolute;
  left: 18px;
  top: -24px;
  color: rgba(238, 117, 128, 0.92);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#reservar .booking-time-chip.is-hidden {
  display: none !important;
}


/* =========================================================
   CALENDARIO PREMIUM ANJU — FINAL
   ========================================================= */

#reservar #bookingDatePicker,
#reservar .booking-native-date,
#reservar .native-date-picker {
  display: none !important;
}

#reservar #bookingDateButton.has-date {
  border-color: rgba(229, 106, 120, 0.85) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.095), rgba(255, 247, 239, 0.030)),
    rgba(48, 22, 26, 0.98) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.30) !important;
}

#reservar #bookingDateButton.has-date #bookingDateLabel {
  color: #fff7ef !important;
  font-weight: 950 !important;
}

#reservar #bookingDateButton.has-date small {
  background: rgba(229, 106, 120, 0.22) !important;
  color: #ffd9dd !important;
}

.anju-calendar {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.anju-calendar.is-open {
  display: flex;
}

.anju-calendar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.anju-calendar__panel {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.075), rgba(255, 247, 239, 0.025)),
    #100c0d;
  border: 1px solid rgba(255, 247, 239, 0.14);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 247, 239, 0.08);
}

.anju-calendar__head {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  text-align: center;
}

.anju-calendar__head .eyebrow {
  margin: 0 0 5px;
  color: #ee7580;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.anju-calendar__head h3 {
  margin: 0;
  color: #fff7ef;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.anju-calendar__nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 239, 0.12);
  background: rgba(255, 247, 239, 0.055);
  color: #fff7ef;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.anju-calendar__week,
.anju-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.anju-calendar__week {
  margin-bottom: 9px;
}

.anju-calendar__week span {
  color: rgba(255, 247, 239, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.anju-calendar__empty {
  min-height: 42px;
}

.anju-calendar__day {
  min-height: 42px;
  border-radius: 15px;
  border: 1px solid rgba(255, 247, 239, 0.08);
  background: rgba(255, 247, 239, 0.045);
  color: rgba(255, 247, 239, 0.82);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.anju-calendar__day:hover {
  transform: translateY(-1px);
  color: #fff7ef;
  border-color: rgba(255, 247, 239, 0.24);
  background: rgba(255, 247, 239, 0.075);
}

.anju-calendar__day.is-today {
  border-color: rgba(229, 106, 120, 0.45);
}

.anju-calendar__day.is-selected {
  color: #fff7ef;
  border-color: rgba(229, 106, 120, 0.85);
  background:
    radial-gradient(circle at 0% 50%, rgba(197, 28, 45, 0.35), transparent 45%),
    rgba(42, 22, 25, 0.96);
  box-shadow: 0 0 0 3px rgba(197, 28, 45, 0.13);
}

.anju-calendar__day.is-saturday {
  color: #ffd9dd;
}

.anju-calendar__day.is-sunday {
  opacity: 0.45;
}

.anju-calendar__foot {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.anju-calendar__today,
.anju-calendar__close {
  flex: 1;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 239, 0.12);
  background: rgba(255, 247, 239, 0.055);
  color: #fff7ef;
  font-weight: 900;
  cursor: pointer;
}

.anju-calendar__today {
  background:
    linear-gradient(180deg, rgba(197, 28, 45, 0.90), rgba(141, 12, 25, 0.96));
  border-color: rgba(255, 247, 239, 0.18);
}

#reservar .booking-time-chip.is-hidden {
  display: none !important;
}

@media (max-width: 480px) {
  .anju-calendar__panel {
    padding: 18px;
    border-radius: 26px;
  }

  .anju-calendar__day,
  .anju-calendar__empty {
    min-height: 39px;
  }

  .anju-calendar__head h3 {
    font-size: 1.35rem;
  }
}

/* =========================================================
   HOTFIX QA � QUITAR ETIQUETA D�A SELECCIONADO
   La fecha visible ya confirma la selecci�n. Menos ruido visual.
   ========================================================= */

#reservar #bookingDateButton.has-date::before,
#reservar .booking-picker-button.has-date::before,
#reservar .date-chip-button.has-date::before {
  display: none !important;
  content: none !important;
}


/* =========================================================
   FIX CALENDARIO — DÍAS PASADOS DESACTIVADOS
   ========================================================= */

.anju-calendar__day.is-disabled,
.anju-calendar__day.is-past,
.anju-calendar__day:disabled {
  opacity: 0.22 !important;
  cursor: not-allowed !important;
  color: rgba(255, 247, 239, 0.28) !important;
  background: rgba(255, 247, 239, 0.025) !important;
  border-color: rgba(255, 247, 239, 0.045) !important;
  box-shadow: none !important;
  transform: none !important;
}

.anju-calendar__day.is-disabled:hover,
.anju-calendar__day.is-past:hover,
.anju-calendar__day:disabled:hover {
  transform: none !important;
  color: rgba(255, 247, 239, 0.28) !important;
  border-color: rgba(255, 247, 239, 0.045) !important;
  background: rgba(255, 247, 239, 0.025) !important;
}


/* =========================================================
   FIX CALENDARIO — DOMINGOS CERRADOS
   ========================================================= */

.anju-calendar__day.is-sunday-closed,
.anju-calendar__day.is-sunday-closed:hover {
  opacity: 0.18 !important;
  cursor: not-allowed !important;
  color: rgba(255, 247, 239, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.018), rgba(255, 247, 239, 0.010)) !important;
  border-color: rgba(255, 247, 239, 0.04) !important;
  box-shadow: none !important;
  transform: none !important;
  position: relative !important;
}

.anju-calendar__day.is-sunday-closed::after {
  content: "×";
  position: absolute;
  right: 6px;
  top: 4px;
  color: rgba(229, 106, 120, 0.72);
  font-size: 0.7rem;
  font-weight: 950;
}


/* =========================================================
   FIX CALENDARIO — OCULTAR MAÑANA PARA HOY DESPUÉS DE LAS 15:00
   ========================================================= */

#reservar .booking-time-chip.is-hidden-by-hour {
  display: none !important;
}


/* =========================================================
   SERVICIO FINAL — OPCIONES RICAS EN POPUP
   ========================================================= */

#reservar .booking-modal__option-rich {
  min-height: 68px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 13px 16px !important;
  border-radius: 22px !important;
}

#reservar .booking-modal__option-rich strong {
  color: #fff7ef !important;
  font-size: 1.03rem !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#reservar .booking-modal__option-rich small {
  color: rgba(255, 247, 239, 0.58) !important;
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
  font-weight: 750 !important;
}

#reservar .booking-modal__option-rich:hover small {
  color: rgba(255, 247, 239, 0.76) !important;
}


/* =========================================================
   PROFESIONAL FINAL — ASIGNADO POR SERVICIO
   ========================================================= */

#reservar [data-open-booking-modal="staff"].is-auto-selected {
  border-color: rgba(229, 106, 120, 0.78) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.085), rgba(255, 247, 239, 0.026)),
    rgba(48, 22, 26, 0.98) !important;
  box-shadow:
    0 0 0 4px rgba(197, 28, 45, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.30) !important;
}

#reservar [data-open-booking-modal="staff"].is-auto-selected span {
  color: #fff7ef !important;
  font-weight: 950 !important;
}

#reservar [data-open-booking-modal="staff"].is-auto-selected small {
  background: rgba(229, 106, 120, 0.20) !important;
  color: #ffd9dd !important;
}

#reservar .booking-staff-hint {
  display: none;
  margin: 9px 0 0;
  color: rgba(255, 247, 239, 0.58);
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 750;
}

#reservar .booking-staff-hint.is-visible {
  display: block;
}

#reservar .booking-modal__info {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 247, 239, 0.10);
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 28, 45, 0.18), transparent 38%),
    rgba(255, 247, 239, 0.045);
  color: rgba(255, 247, 239, 0.76);
}

#reservar .booking-modal__info strong {
  display: block;
  margin-bottom: 8px;
  color: #fff7ef;
  font-size: 1.25rem;
  font-weight: 950;
}

#reservar .booking-modal__info p {
  margin: 6px 0 0;
  color: rgba(255, 247, 239, 0.68);
  font-size: 0.95rem;
  line-height: 1.45;
}




/* Instagram integrado — visible sin competir con llamada/reserva */
.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(193, 27, 43, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.058), rgba(255, 247, 239, 0.018));
  border: 1px solid rgba(255, 247, 239, 0.13);
  box-shadow: none;
  font-weight: 850;
  font-size: 0.88rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.header-instagram:hover,
.header-instagram:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(208, 91, 100, 0.42);
  outline: none;
}

.header-instagram svg,
.mobile-instagram svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.mobile-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(193, 27, 43, 0.20), transparent 42%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.058), rgba(255, 247, 239, 0.018));
  border: 1px solid rgba(255, 247, 239, 0.13);
  font-weight: 850;
}

@media (max-width: 920px) {
  .header-instagram {
    display: inline-flex;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
  }

  .header-instagram span {
    display: none;
  }

  .header-actions {
    display: flex !important;
    gap: 10px;
    margin-left: auto;
  }

  .header-actions .btn-header {
    display: none;
  }

  .menu-toggle {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .brand-with-logo {
    grid-template-columns: 42px auto;
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-main {
    font-size: 1.45rem;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .header-instagram {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}


/* HOTFIX ENCUADRE FOTOS REALES ANJU */
/* Fotos reales: menos zoom, más rostro, menos sensación de imagen cortada */
.real-work-card {
  min-height: 440px;
}

.real-work-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center 28%;
  transform: none !important;
}

/* Caballero: centrar cabeza/rostro y evitar corte agresivo */
.real-work-card img[src*="cliente1"],
.real-work-card img[src*="cliente10"],
.real-work-card img[src*="trabajando_maquinilla"],
.real-work-caballero img {
  object-position: center 24% !important;
}

/* Rizo / textura: subir encuadre para que el pelo y cara respiren */
.real-work-card img[src*="cliente3"],
.real-work-card img[src*="cliente4"],
.real-work-card img[src*="cliente5"],
.real-work-card img[src*="cliente6"],
.real-work-card img[src*="cliente7"],
.real-work-card img[src*="cliente8"],
.real-work-card img[src*="cliente9"],
.real-work-textura img,
.real-work-rizo img {
  object-position: center 20% !important;
}

/* Caja de texto algo más ligera para no comerse tanto la foto */
.real-work-card figcaption {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 20px 22px;
  border-radius: 20px;
}

/* En móvil, cartas más altas para que no parezcan recortadas */
@media (max-width: 760px) {
  .real-work-card {
    min-height: 500px;
  }

  .real-work-card img {
    min-height: 500px;
    object-position: center 22%;
  }

  .real-work-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .real-work-card {
    min-height: 470px;
  }

  .real-work-card img {
    min-height: 470px;
  }
}


#reservar,
#reservar .booking-card,
#reservar .booking-layout,
#reservar .booking-grid,
#reservar .reservation-card,
#reservar .contact-card,
#reservar form {
    scroll-margin-top: 110px;
}

/* HOTFIX MENU MÓVIL PREMIUM ANJU */
@media (max-width: 920px) {
  .site-header .header-inner {
    min-height: 78px;
    gap: 10px;
  }

  .site-header .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-with-logo {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 9px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-main {
    font-size: 1.58rem;
    line-height: 0.92;
  }

  .brand-sub {
    display: block;
    max-width: 175px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.56rem;
    letter-spacing: 0.135em;
    line-height: 1.15;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .header-actions .btn-header {
    display: none !important;
  }

  .header-instagram {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    margin-left: 0;
    border-radius: 50%;
    color: var(--white) !important;
    background:
      radial-gradient(circle at 35% 25%, rgba(208, 91, 100, 0.22), transparent 48%),
      linear-gradient(180deg, rgba(255,247,239,0.065), rgba(255,247,239,0.018)),
      rgba(12, 10, 10, 0.86) !important;
    border: 1px solid rgba(255,247,239,0.13) !important;
    box-shadow: none !important;
  }

  .header-instagram span {
    display: none !important;
  }

  .header-instagram svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:
      linear-gradient(180deg, rgba(255,247,239,0.060), rgba(255,247,239,0.018)),
      rgba(12, 10, 10, 0.86) !important;
    border: 1px solid rgba(255,247,239,0.13) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .menu-toggle.active {
    background:
      linear-gradient(180deg, rgba(255,247,239,0.085), rgba(255,247,239,0.024)),
      rgba(12, 10, 10, 0.92) !important;
    border-color: rgba(208, 91, 100, 0.34) !important;
  }

  .menu-toggle span {
    margin: 3px auto;
    background: var(--white) !important;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 18px 24px;
    background:
      radial-gradient(circle at 12% 0%, rgba(158, 17, 29, 0.13), transparent 36%),
      linear-gradient(180deg, rgba(12, 10, 10, 0.985), rgba(5, 5, 5, 0.995)) !important;
    border-top: 1px solid rgba(255,247,239,0.075) !important;
    box-shadow: 0 24px 54px rgba(0,0,0,0.42);
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .mobile-menu > a:not(.mobile-instagram) {
    color: var(--white) !important;
    font-size: 1.06rem;
    font-weight: 850;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,247,239,0.075);
  }

  .mobile-menu > a:not(.mobile-instagram):hover,
  .mobile-menu > a:not(.mobile-instagram):focus-visible {
    color: #ffffff !important;
  }

  /* Instagram ya está arriba como icono. En el menú duplicaba y ensuciaba. */
  .mobile-instagram {
    display: none !important;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    margin-top: 4px;
  }

  .mobile-menu-actions .btn {
    width: 100%;
    min-height: 54px;
    border-radius: var(--radius-pill);
    font-weight: 900;
    opacity: 1 !important;
    color: var(--white) !important;
    box-shadow: none !important;
  }

  .mobile-menu-actions .btn-primary {
    background:
      linear-gradient(135deg, #811019 0%, #a91422 58%, #bd2c38 100%) !important;
    border: 1px solid rgba(255,247,239,0.10) !important;
  }

  .mobile-menu-actions .btn-secondary {
    color: var(--white) !important;
    background:
      linear-gradient(180deg, rgba(255,247,239,0.065), rgba(255,247,239,0.022)),
      #171112 !important;
    border: 1px solid rgba(255,247,239,0.14) !important;
  }
}

@media (max-width: 480px) {
  .site-header .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .brand-with-logo {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-main {
    font-size: 1.38rem;
  }

  .brand-sub {
    max-width: 145px;
    font-size: 0.49rem;
    letter-spacing: 0.105em;
  }

  .header-instagram,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    flex-basis: 42px;
  }
}

@media (max-width: 380px) {
  .brand-sub {
    display: none !important;
  }

  .brand-main {
    font-size: 1.42rem;
  }
}

/* =========================================================
   ANJU HERO MOBILE LIFT — 3 BARRAS/X + PRIMER IMPACTO
   Mejora el primer pantallazo móvil sin romper estructura.
   ========================================================= */

.menu-toggle {
  position: relative !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.menu-toggle span {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 22px !important;
  height: 2px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 238, 0.96) !important;
  transform-origin: center !important;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease,
    width 0.24s ease,
    background 0.24s ease !important;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -8px) !important;
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) !important;
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 6px) !important;
}

.menu-toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0 !important;
  width: 8px !important;
}

.menu-toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 999px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 247, 238, 0.10), transparent 58%),
      rgba(255, 247, 238, 0.045) !important;
    border: 1px solid rgba(255, 247, 238, 0.18) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 12px 26px rgba(0, 0, 0, 0.20) !important;
  }

  .menu-toggle.active {
    background:
      radial-gradient(circle at 50% 0%, rgba(201, 87, 97, 0.16), transparent 58%),
      rgba(255, 247, 238, 0.060) !important;
    border-color: rgba(255, 247, 238, 0.22) !important;
  }

  .site-header {
    min-height: 72px !important;
  }

  .header-inner {
    min-height: 72px !important;
  }

  .hero {
    position: relative !important;
    overflow: hidden !important;
    padding-top: 28px !important;
    padding-bottom: 54px !important;
  }

  .hero::before {
    content: "";
    position: absolute;
    right: -88px;
    top: 136px;
    width: 210px;
    height: 270px;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.06), rgba(5,5,5,0.60)),
      radial-gradient(circle at 20% 10%, rgba(184, 50, 61, 0.18), transparent 42%),
      url("./img/hero.jpg") center / cover no-repeat;
    opacity: 0.28;
    transform: rotate(4deg);
    border: 1px solid rgba(255, 247, 238, 0.14);
    box-shadow: 0 24px 54px rgba(0,0,0,0.34);
    pointer-events: none;
    z-index: 0;
  }

  .hero-copy,
  .hero-visual {
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-logo-pill {
    margin-bottom: 16px !important;
    padding: 7px 12px 7px 7px !important;
    background:
      linear-gradient(180deg, rgba(255,247,238,0.075), rgba(255,247,238,0.025)),
      rgba(8,7,7,0.76) !important;
    border-color: rgba(255,247,238,0.14) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18) !important;
  }

  .hero-logo-pill img {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-logo-pill span {
    color: rgba(255,247,238,0.84) !important;
    letter-spacing: 0.18em !important;
  }

  .hero .eyebrow {
    margin-bottom: 14px !important;
    color: #df707a !important;
  }

  .hero-copy h1 {
    max-width: 96% !important;
    margin-bottom: 18px !important;
    font-size: clamp(2.85rem, 12.6vw, 4.08rem) !important;
    line-height: 0.91 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-copy h1 span {
    color: #e6b8af !important;
  }

  .hero-description {
    max-width: 94% !important;
    margin-bottom: 22px !important;
    color: rgba(255,247,238,0.78) !important;
    font-size: 1.01rem !important;
    line-height: 1.72 !important;
  }

  .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
    margin-top: 2px !important;
    margin-bottom: 16px !important;
  }

  .hero-trust .trust-pill {
    width: 100% !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 10px !important;
    border-radius: 15px !important;
    color: rgba(255,247,238,0.84) !important;
    background:
      linear-gradient(180deg, rgba(255,247,238,0.070), rgba(255,247,238,0.022)),
      rgba(13, 11, 12, 0.80) !important;
    border-color: rgba(255,247,238,0.12) !important;
    box-shadow: none !important;
    font-size: 0.84rem !important;
    text-align: center !important;
  }

  .hero-trust .trust-pill:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  .microcopy {
    max-width: 94% !important;
    color: rgba(255,247,238,0.56) !important;
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
  }

  .photo-showcase {
    margin-top: -2px !important;
    border-radius: 28px !important;
    transform: translateY(-2px) !important;
  }
}

@media (max-width: 390px) {
  .hero::before {
    right: -112px;
    top: 132px;
    width: 205px;
    height: 260px;
    opacity: 0.22;
  }

  .hero-copy h1 {
    font-size: clamp(2.62rem, 12.4vw, 3.62rem) !important;
  }

  .hero-description {
    max-width: 100% !important;
  }

  .hero-trust {
    gap: 8px !important;
  }

  .hero-trust .trust-pill {
    font-size: 0.80rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* ANJU_HERO_MOBILE_LIFT_END */


/* ANJU_LOCAL_STABLE_POLISH_START */

/* Header Instagram estable */
.header-instagram,
.mobile-header-instagram {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff7ee !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 247, 238, 0.10), transparent 58%),
    rgba(255, 247, 238, 0.045) !important;
  border: 1px solid rgba(255, 247, 238, 0.17) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 26px rgba(0,0,0,0.18) !important;
}

.header-instagram {
  gap: 9px !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  font-weight: 850 !important;
}

.header-instagram svg,
.mobile-header-instagram svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  flex-shrink: 0 !important;
}

.header-instagram span {
  color: #fff7ee !important;
  font-size: 0.9rem !important;
  line-height: 1 !important;
}

.mobile-header-instagram {
  display: none !important;
}

/* Menú: 3 barras cerrado / X abierto */
.menu-toggle {
  position: relative !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.menu-toggle span {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 247, 238, 0.96) !important;
  transform-origin: center !important;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease,
    width 0.24s ease !important;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -8px) !important;
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) !important;
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 6px) !important;
}

.menu-toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0 !important;
  width: 8px !important;
}

.menu-toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* Footer cuadrado y estable */
.site-footer {
  overflow: hidden !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.55fr) minmax(220px, 0.65fr) !important;
  gap: clamp(34px, 6vw, 88px) !important;
  align-items: start !important;
}

.site-footer .footer-brand-logo {
  width: 82px !important;
  height: 82px !important;
  border-radius: 22px !important;
  object-fit: cover !important;
  margin-bottom: 22px !important;
}

.site-footer .footer-logo {
  margin-bottom: 20px !important;
  color: #fff7ee !important;
  font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
  line-height: 0.95 !important;
}

.site-footer h4 {
  margin-bottom: 16px !important;
  color: #fff7ee !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.site-footer ul {
  list-style: none !important;
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 247, 238, 0.66) !important;
  line-height: 1.65 !important;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff7ee !important;
}

/* Móvil header limpio */
@media (max-width: 920px) {
  .site-header .header-inner {
    min-height: 72px !important;
    gap: 8px !important;
  }

  .site-header .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .header-actions {
    display: none !important;
  }

  .mobile-header-instagram {
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
    margin-left: auto !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
    border-radius: 999px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 247, 238, 0.10), transparent 58%),
      rgba(255, 247, 238, 0.045) !important;
    border: 1px solid rgba(255, 247, 238, 0.17) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      0 12px 26px rgba(0,0,0,0.18) !important;
  }

  .mobile-menu {
    background:
      radial-gradient(circle at 12% 0%, rgba(158, 17, 29, 0.13), transparent 36%),
      linear-gradient(180deg, rgba(12, 10, 10, 0.985), rgba(5, 5, 5, 0.995)) !important;
    border-top: 1px solid rgba(255, 247, 238, 0.075) !important;
    box-shadow: 0 24px 54px rgba(0,0,0,0.42) !important;
  }

  .mobile-menu > a {
    color: #fff7ee !important;
    font-weight: 850 !important;
  }

  .mobile-menu-actions .btn {
    opacity: 1 !important;
    color: #fff7ee !important;
  }

  .mobile-menu-actions .btn-secondary {
    background:
      linear-gradient(180deg, rgba(255,247,239,0.065), rgba(255,247,239,0.022)),
      #171112 !important;
    border: 1px solid rgba(255,247,239,0.14) !important;
  }
}

/* Footer móvil */
@media (max-width: 760px) {
  .site-footer {
    padding-top: 42px !important;
    padding-bottom: 96px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .site-footer .footer-brand-logo {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 18px !important;
  }

  .site-footer .footer-logo {
    font-size: 2.35rem !important;
    margin-bottom: 14px !important;
  }

  .site-footer h4 {
    margin-bottom: 10px !important;
  }

  .site-footer ul {
    gap: 8px !important;
  }
}

@media (max-width: 390px) {
  .mobile-header-instagram,
  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    flex-basis: 42px !important;
  }

  .mobile-header-instagram svg {
    width: 17px !important;
    height: 17px !important;
  }

  .menu-toggle span {
    width: 20px !important;
  }
}

/* ANJU_LOCAL_STABLE_POLISH_END */

/* ANJU_DESKTOP_HEADER_STABILITY_START */

/* Evita que Chrome rompa el claim del logo y descuadre el header */
.header-inner {
  flex-wrap: nowrap !important;
}

.brand {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}

.brand-copy {
  min-width: 0 !important;
}

.brand-main,
.brand-sub {
  white-space: nowrap !important;
}

.brand-sub {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.desktop-nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  justify-content: center !important;
}

.desktop-nav a {
  white-space: nowrap !important;
}

.header-actions {
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

/* Escritorio normal: menos aire para que todo respire */
@media (min-width: 1181px) and (max-width: 1540px) {
  .container.header-inner {
    width: min(1480px, calc(100% - 38px)) !important;
  }

  .header-inner {
    min-height: 78px !important;
    gap: 16px !important;
  }

  .brand-with-logo {
    grid-template-columns: 48px auto !important;
    gap: 10px !important;
  }

  .brand-logo {
    width: 48px !important;
    height: 48px !important;
  }

  .brand-main {
    font-size: 1.72rem !important;
    line-height: 0.92 !important;
  }

  .brand-sub {
    max-width: 230px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
    line-height: 1.12 !important;
  }

  .desktop-nav {
    gap: 18px !important;
  }

  .desktop-nav a {
    font-size: 0.92rem !important;
  }

  .header-actions {
    gap: 8px !important;
  }

  .header-actions .btn-header {
    min-height: 44px !important;
    padding: 0 16px !important;
    font-size: 0.92rem !important;
  }

  .header-instagram {
    min-height: 44px !important;
    padding: 0 14px !important;
    font-size: 0.92rem !important;
  }
}

/* Escritorio medio: Instagram se queda como icono para no apretar el logo */
@media (min-width: 1181px) and (max-width: 1380px) {
  .container.header-inner {
    width: min(1360px, calc(100% - 30px)) !important;
  }

  .header-inner {
    gap: 12px !important;
  }

  .desktop-nav {
    gap: 14px !important;
  }

  .desktop-nav a {
    font-size: 0.86rem !important;
  }

  .brand-main {
    font-size: 1.58rem !important;
  }

  .brand-sub {
    max-width: 190px !important;
    font-size: 0.56rem !important;
    letter-spacing: 0.15em !important;
  }

  .header-instagram {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
  }

  .header-instagram span {
    display: none !important;
  }

  .header-actions .btn-header {
    padding: 0 14px !important;
    font-size: 0.88rem !important;
  }
}

/* Antes de que el header se rompa, pasamos a modo menú */
@media (max-width: 1180px) {
  .desktop-nav,
  .header-actions {
    display: none !important;
  }

  .site-header .header-inner {
    min-height: 72px !important;
    gap: 8px !important;
  }

  .site-header .brand {
    flex: 1 1 auto !important;
  }

  .mobile-header-instagram {
    display: inline-flex !important;
    margin-left: auto !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }
}

/* Evita que enlaces con # queden escondidos bajo el header */
html {
  scroll-padding-top: 96px !important;
}

#inicio,
#servicios,
#equipo,
#opiniones,
#reservar,
#contacto {
  scroll-margin-top: 96px !important;
}

/* Hero desktop más estable en Chrome cuando el viewport es medio */
@media (min-width: 1181px) and (max-width: 1540px) {
  .hero {
    padding-top: 56px !important;
  }

  .hero-grid {
    gap: 48px !important;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 5.85vw, 6.15rem) !important;
    line-height: 0.91 !important;
  }

  .hero-description {
    max-width: 660px !important;
  }

  .photo-showcase {
    min-height: 520px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 490px !important;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .hero-grid {
    grid-template-columns: 0.96fr 1fr !important;
    gap: 38px !important;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 5.45vw, 5.35rem) !important;
  }

  .hero-description {
    font-size: 1.02rem !important;
    line-height: 1.78 !important;
  }

  .hero-ctas .btn-large {
    min-height: 54px !important;
    padding: 0 22px !important;
  }

  .photo-showcase {
    min-height: 480px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 450px !important;
  }
}

/* ANJU_DESKTOP_HEADER_STABILITY_END */

/* ANJU_HEADER_FINAL_STABILITY_START */

/*
  Objetivo:
  - El claim "Color · Corte · Textura" nunca parte en 3 líneas.
  - Chrome y Edge deben verse iguales.
  - Desktop no debe verse más ampliado que local.
  - En anchos medios pasamos antes a menú móvil para no forzar el header.
*/

.site-header {
  min-height: auto !important;
}

.header-inner {
  flex-wrap: nowrap !important;
  min-height: 78px !important;
  gap: 18px !important;
}

.container.header-inner {
  width: min(1520px, calc(100% - 48px)) !important;
}

.brand {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.brand-with-logo {
  display: inline-grid !important;
  grid-template-columns: 50px minmax(0, auto) !important;
  align-items: center !important;
  gap: 11px !important;
}

.brand-logo {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px !important;
}

.brand-copy {
  display: grid !important;
  min-width: 0 !important;
  max-width: none !important;
  line-height: 1 !important;
}

.brand-main {
  display: block !important;
  white-space: nowrap !important;
  font-size: 1.82rem !important;
  line-height: 0.9 !important;
  letter-spacing: -0.055em !important;
}

.brand-sub {
  display: block !important;
  width: max-content !important;
  max-width: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 0.63rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.155em !important;
  text-transform: uppercase !important;
}

.desktop-nav {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  justify-content: center !important;
  gap: clamp(16px, 1.55vw, 28px) !important;
}

.desktop-nav a {
  white-space: nowrap !important;
  font-size: clamp(0.86rem, 0.82vw, 0.98rem) !important;
}

.header-actions {
  flex: 0 0 auto !important;
  gap: 9px !important;
}

.header-actions .btn-header,
.header-instagram {
  min-height: 46px !important;
  height: 46px !important;
  font-size: 0.92rem !important;
}

.header-actions .btn-header {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.header-instagram {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Escritorio medio: compactar sin deformar marca */
@media (min-width: 1181px) and (max-width: 1450px) {
  .container.header-inner {
    width: min(1400px, calc(100% - 34px)) !important;
  }

  .header-inner {
    min-height: 74px !important;
    gap: 13px !important;
  }

  .brand-with-logo {
    grid-template-columns: 46px minmax(0, auto) !important;
    gap: 9px !important;
  }

  .brand-logo {
    width: 46px !important;
    height: 46px !important;
  }

  .brand-main {
    font-size: 1.55rem !important;
  }

  .brand-sub {
    font-size: 0.52rem !important;
    letter-spacing: 0.105em !important;
  }

  .desktop-nav {
    gap: 14px !important;
  }

  .desktop-nav a {
    font-size: 0.84rem !important;
  }

  .header-actions .btn-header {
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: 0.86rem !important;
  }

  .header-instagram {
    width: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
  }

  .header-instagram span {
    display: none !important;
  }
}

/* Antes de romper el header, pasamos a header móvil */
@media (max-width: 1180px) {
  .container.header-inner {
    width: min(var(--container), calc(100% - 24px)) !important;
  }

  .header-inner {
    min-height: 74px !important;
    gap: 8px !important;
  }

  .desktop-nav,
  .header-actions {
    display: none !important;
  }

  .brand {
    flex: 1 1 auto !important;
    max-width: calc(100% - 104px) !important;
  }

  .brand-with-logo {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .brand-logo {
    width: 44px !important;
    height: 44px !important;
  }

  .brand-copy {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .brand-main {
    font-size: 1.55rem !important;
    line-height: 0.9 !important;
  }

  .brand-sub {
    width: auto !important;
    max-width: 190px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-size: 0.52rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.05 !important;
  }

  .mobile-header-instagram {
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
    margin-left: auto !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
  }
}

/* Móvil estrecho: mejor ocultar descriptor que enseñarlo feo */
@media (max-width: 390px) {
  .brand-with-logo {
    grid-template-columns: 42px minmax(0, 1fr) !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 42px !important;
  }

  .brand-main {
    font-size: 1.48rem !important;
  }

  .brand-sub {
    max-width: 168px !important;
    font-size: 0.48rem !important;
    letter-spacing: 0.055em !important;
  }

  .mobile-header-instagram,
  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    flex-basis: 42px !important;
  }
}

@media (max-width: 350px) {
  .brand-sub {
    display: none !important;
  }
}

/* Hero desktop: escala estable y menos sensación de zoom en producción */
@media (min-width: 1181px) {
  .hero {
    min-height: calc(100vh - 78px) !important;
    padding-top: clamp(42px, 5vh, 70px) !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr) !important;
    gap: clamp(42px, 5vw, 72px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(4.45rem, 5.85vw, 6.75rem) !important;
    line-height: 0.9 !important;
  }

  .hero-description {
    max-width: 680px !important;
    font-size: clamp(1.02rem, 1.02vw, 1.15rem) !important;
  }

  .photo-showcase {
    min-height: clamp(500px, 42vw, 580px) !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: clamp(470px, 39vw, 540px) !important;
  }
}

/* Hero en escritorio medio: evita titulares gigantes y cortes raros */
@media (min-width: 1181px) and (max-width: 1450px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.86fr) !important;
    gap: 38px !important;
  }

  .hero-copy h1 {
    font-size: clamp(3.75rem, 5.35vw, 5.55rem) !important;
  }

  .photo-showcase {
    min-height: 470px !important;
  }

  .photo-showcase .hero-logo-img {
    min-height: 440px !important;
  }
}

/* Scroll de anclas sin tapar contenido por header */
html {
  scroll-padding-top: 92px !important;
}

#inicio,
#servicios,
#equipo,
#opiniones,
#reservar,
#contacto,
#trabajos-reales {
  scroll-margin-top: 92px !important;
}

/* ANJU_HEADER_FINAL_STABILITY_END */
