/* =====================================================
   HAIRCUT PELUQUEROS - STYLES
   Palette: Deep black · Soft cream · Champagne gold · Rose
===================================================== */

:root {
  /* Paleta tonos vainilla */
  --bg: #2b2418;            /* vainilla muy oscura (marrón cálido) */
  --bg-soft: #3a3224;       /* vainilla oscura */
  --cream: #fdf8ea;         /* vainilla crema pura */
  --cream-2: #f4e9c8;       /* vainilla clara */
  --gold: #d4b97a;          /* vainilla dorada */
  --gold-2: #ead89f;        /* vainilla pálida brillante */
  --gold-deep: #a88a4a;     /* vainilla tostada */
  --rose: #e8d5a0;          /* vainilla miel suave */
  --rose-deep: #c4a770;     /* vainilla miel tostada */
  --ink: #2b2418;           /* marrón vainilla oscuro para texto */
  --ink-soft: #504530;      /* marrón vainilla medio */
  --muted: #897a5d;         /* vainilla apagado */
  --line: rgba(212, 185, 122, 0.25);
  --easing: cubic-bezier(.7,.02,.23,1);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', -apple-system, system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Selection */
::selection { background: var(--gold); color: #fff; }

/* Cursor custom deshabilitado — se usa el cursor nativo del sistema */
.cursor-dot, .cursor-ring { display: none !important; }

a, button, .mas-item, .card, .tech-card, .burger,
.nav-links a, .call-float, .ig-badge {
  cursor: pointer;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #2b2418 0%, #3a3224 100%);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity .8s ease, visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-brand { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.loader-brand-main {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--cream);
  letter-spacing: 4px;
  font-weight: 500;
  animation: fadeUp 1.2s var(--easing);
}
.loader-brand-sub {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--gold);
  margin-top: 4px;
  animation: fadeUp 1.4s var(--easing);
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.loader-bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform-origin: left;
  animation: loadbar 1.5s ease forwards;
}
@keyframes loadbar {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 0;
  z-index: 500;
  transition: all .4s var(--easing);
}
.nav.scrolled {
  background: rgba(253,248,234,.94); /* vainilla cream */
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,185,122,.35);
  box-shadow: 0 4px 24px rgba(43,36,24,.06);
}
.nav.scrolled .nav-logo .logo-main { color: var(--ink); }
.nav.scrolled .nav-logo .logo-sub { color: var(--gold-deep); }
.nav.scrolled .nav-links a:not(.btn-cta) { color: var(--ink); }
.nav.scrolled .nav-links a:not(.btn-cta):hover { color: var(--gold-deep); }
.nav.scrolled .nav-links a:not(.btn-cta)::after { background: var(--gold-deep); }
.nav.scrolled .btn-cta {
  color: var(--gold-deep) !important;
  border-color: var(--gold-deep);
}
.nav.scrolled .btn-cta::before { background: var(--gold-deep); }
.nav.scrolled .btn-cta:hover { color: var(--cream) !important; }
.nav.scrolled .burger span { background: var(--ink); }
.nav-inner {
  width: min(1300px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; flex-direction: column; color: var(--cream); }
.logo-main {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}
.nav-links a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--easing);
}
.nav-links a:not(.btn-cta):hover { color: var(--gold); }
.nav-links a:not(.btn-cta):hover::after { width: 100%; }
.btn-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transition: color .3s !important;
}
.btn-cta::before {
  content:'';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform .4s var(--easing);
  z-index: -1;
}
.btn-cta:hover { color: var(--bg) !important; }
.btn-cta:hover::before { transform: translateY(0); }

.burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  margin-left: auto;
  transition: all .3s;
}
.burger span:nth-child(2) { width: 18px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); width: 24px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% -5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.12);
  filter: grayscale(.15) brightness(.5);
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  0% { transform: scale(1.12); }
  100% { transform: scale(1.22) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(234,216,159,.22), transparent 60%),
    linear-gradient(180deg, rgba(43,36,24,.55) 0%, rgba(43,36,24,.88) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  box-sizing: border-box;
}
.hero-pre {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.02;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-2);
  font-size: 1.1em;
  letter-spacing: 2px;
}
.hero-title .accent {
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 14px;
  background: var(--gold);
  opacity: .25;
  z-index: -1;
  transform: skewX(-10deg);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1.1s var(--easing) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .3s; }
.hero-title .line:nth-child(2) > span { animation-delay: .5s; }
.hero-title .line:nth-child(3) > span { animation-delay: .7s; }
@keyframes slideUp {
  to { transform: translateY(0); }
}
.hero-sub {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 30px;
  color: rgba(253,248,234,.8);
  font-weight: 300;
  line-height: 1.7;
}
.hero-rotator {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  padding: 10px 22px;
  border: 1px solid rgba(212,185,122,.35);
  border-radius: 40px;
  backdrop-filter: blur(6px);
  background: rgba(43,36,24,.35);
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
}
.hero-rotator > span:first-child {
  flex: 0 1 auto;
  text-align: center;
  line-height: 1.3;
}
.rot-words {
  position: relative;
  flex: 1 1 220px;
  min-width: min(220px, 100%);
  max-width: 100%;
  min-height: 52px;
  height: 52px;
  overflow: hidden;
  display: block;
  color: var(--gold-2);
  font-weight: 500;
  text-align: center;
}
.rot-words span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  padding: 4px 14px 0;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
  opacity: 0;
  animation: rotWord 12s linear infinite;
}
.rot-words span:nth-child(1) { animation-delay: 0s; }
.rot-words span:nth-child(2) { animation-delay: 2s; }
.rot-words span:nth-child(3) { animation-delay: 4s; }
.rot-words span:nth-child(4) { animation-delay: 6s; }
.rot-words span:nth-child(5) { animation-delay: 8s; }
.rot-words span:nth-child(6) { animation-delay: 10s; }
@keyframes rotWord {
  0% { transform: translateY(100%); opacity: 0; }
  4% { transform: translateY(0); opacity: 1; }
  16% { transform: translateY(0); opacity: 1; }
  20% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(-100%); opacity: 0; }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--easing);
  font-weight: 600;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg);
  box-shadow: 0 12px 34px rgba(212,185,122,.35), inset 0 0 0 1px rgba(255,255,255,.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212,185,122,.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary i { transition: transform .3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid rgba(253,248,234,.4);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(253,248,234,.08);
  border-color: var(--gold);
  color: var(--gold);
}

.animate-fade-in { opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: 1.1s; }
.delay-4 { animation-delay: 1.3s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.7s; }
@keyframes fadeIn { to { opacity: 1; } }

/* Floating shapes */
.float-shape {
  position: absolute;
  color: rgba(212,185,122,.25);
  font-size: 24px;
  animation: float 8s ease-in-out infinite;
}
.shape-1 { top: 18%; left: 12%; animation-delay: 0s; font-size: 32px; }
.shape-2 { top: 28%; right: 16%; animation-delay: 2s; color: rgba(232,213,160,.3); }
.shape-3 { bottom: 24%; left: 18%; animation-delay: 4s; font-size: 18px; }
.shape-4 { bottom: 32%; right: 12%; animation-delay: 1s; font-size: 28px; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(253,248,234,.6);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--cream);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* Instagram badge */
.ig-badge {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  padding: 8px 16px;
  border: 1px solid rgba(212,185,122,.35);
  border-radius: 40px;
  background: rgba(43,36,24,.35);
  backdrop-filter: blur(4px);
  transition: all .3s;
}
.ig-badge:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Marquee ===== */
.marquee {
  background: var(--bg);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.marquee-track span {
  margin: 0 22px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section shared ===== */
section.services, section.beauty, section.techniques, section.gallery, section.brands, section.contact, section.about {
  padding: 120px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.section-head.small { margin-bottom: 30px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-2); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-title em {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.1em;
  font-weight: 400;
}
.section-title.light { color: var(--cream); }
.section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Background big text */
.section-bg-text {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 600;
  color: rgba(212,185,122,.05);
  pointer-events: none;
  letter-spacing: -4px;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
  padding: 140px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-width: 0;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.about-img:hover img {
  transform: scale(1.08);
}
.img-main {
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
}
.img-sec {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  z-index: 2;
  border: 8px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: -20px;
  right: 0;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  /* Oro plano: sin relieve 3D */
  background: linear-gradient(168deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: var(--bg);
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(168, 138, 74, .32);
  z-index: 3;
}
/* Brillo tipo diamante: facetas de luz que giran (conic), sin volumen */
.about-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 68deg,
    rgba(255,255,255,.35) 80deg,
    rgba(255,255,255,.95) 88deg,
    rgba(255,255,255,.35) 96deg,
    transparent 108deg,
    transparent 168deg,
    rgba(255,255,255,.25) 176deg,
    rgba(255,255,255,.85) 184deg,
    rgba(255,255,255,.25) 192deg,
    transparent 202deg,
    transparent 258deg,
    rgba(255,255,255,.2) 268deg,
    rgba(255,255,255,.75) 276deg,
    rgba(255,255,255,.2) 284deg,
    transparent 294deg,
    transparent 360deg
  );
  mix-blend-mode: overlay;
  opacity: .9;
  animation: diamondShine 7s linear infinite;
  pointer-events: none;
}
/* Rayo fino que cruza (destello tipo talla) */
.about-badge::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    118deg,
    transparent 44%,
    rgba(255,255,255,.15) 49.2%,
    rgba(255,255,255,.75) 50%,
    rgba(255,255,255,.15) 50.8%,
    transparent 56%
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  animation: diamondGlint 4.2s ease-in-out infinite;
  pointer-events: none;
}
.about-badge .badge-num,
.about-badge .badge-lbl {
  position: relative;
  z-index: 1;
}
.about-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.35));
}
.about-badge .badge-lbl {
  font-size: 11.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0;
  max-width: 100%;
  padding: 0 6px;
  flex-shrink: 0;
  font-weight: 600;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25));
}
@keyframes diamondShine {
  to { transform: rotate(360deg); }
}
@keyframes diamondGlint {
  0%, 12% { opacity: 0; transform: translate(-8%, -6%); }
  18% { opacity: .95; }
  28%, 100% { opacity: 0; transform: translate(18%, 14%); }
}
@media (prefers-reduced-motion: reduce) {
  .about-badge::before,
  .about-badge::after {
    animation: none;
  }
  .about-badge::before {
    opacity: .55;
    transform: rotate(40deg);
  }
  .about-badge::after { opacity: 0; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

.about-text .section-title { text-align: left; }
.about-text .lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 400;
}
.about-text p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat {
  text-align: center;
  min-width: 100px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--cream);
}
.subcat {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.subcat-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.subcat-title span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
}
.subcat-title i {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold-deep);
  font-size: 18px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cards-compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  position: relative;
  padding: 36px 28px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all .5s var(--easing);
  border: 1px solid transparent;
  transform-style: preserve-3d;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--easing);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(212,185,122,.08), transparent 40%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(24,19,15,.12);
  border-color: rgba(212,185,122,.3);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,185,122,.15), rgba(232,213,160,.15));
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all .5s var(--easing);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 10px 30px rgba(212,185,122,.4);
}
.card h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Dark variant for belleza */
.beauty {
  background: linear-gradient(180deg, #2b2418 0%, #3a3224 100%);
  color: var(--cream);
}
.beauty .section-title { color: var(--cream); }
.beauty .section-eyebrow { color: var(--gold-2); }
.beauty .section-desc { color: rgba(253,248,234,.6); }
.beauty .subcat-title { border-bottom-color: rgba(212,185,122,.15); }
.beauty .subcat-title span { color: var(--cream); }
.beauty .subcat-title i { color: var(--gold-2); }
.beauty .section-bg-text { color: rgba(212,185,122,.04); }

.card-dark {
  background: #3a3224;
  border: 1px solid rgba(212,185,122,.18);
}
.card-dark h4 { color: var(--cream); }
.card-dark p { color: rgba(253,248,234,.65); }
.card-dark .card-icon {
  background: rgba(212,185,122,.1);
  color: var(--gold-2);
}
.card-dark:hover {
  background: #4a4030;
  border-color: rgba(234,216,159,.45);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

/* ===== TECHNIQUES ===== */
.techniques {
  background: linear-gradient(180deg, #2b2418 0%, #3a3224 100%);
  color: var(--cream);
  padding: 140px 0;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.tech-card {
  position: relative;
  padding: 50px 40px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(212,185,122,.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all .6s var(--easing);
}
.tech-card:hover {
  background: linear-gradient(135deg, rgba(212,185,122,.08), rgba(232,213,160,.05));
  border-color: var(--gold);
  transform: translateY(-4px);
}
.tech-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.tech-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--cream);
}
.tech-card p {
  color: rgba(253,248,234,.65);
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.tech-bg-icon {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 180px;
  color: rgba(212,185,122,.04);
  transition: all .6s var(--easing);
  pointer-events: none;
}
.tech-card:hover .tech-bg-icon {
  color: rgba(212,185,122,.1);
  transform: scale(1.1) rotate(-8deg);
}

/* ===== GALLERY (masonry) ===== */
.gallery {
  background: var(--cream);
  padding: 140px 0;
}
.masonry {
  column-count: 3;
  column-gap: 20px;
}
.mas-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border-radius: 4px;
}
.mas-item img {
  width: 100%;
  transition: transform 1s var(--easing);
  display: block;
}
.mas-item::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(.7);
  color: #fff;
  font-size: 24px;
  z-index: 2;
  opacity: 0;
  transition: all .5s;
}
.mas-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(14,12,11,.5));
  opacity: 0;
  transition: opacity .5s;
  z-index: 1;
}
.mas-item:hover::before { opacity: 1; }
.mas-item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.mas-item:hover img { transform: scale(1.1); }

/* ===== BRANDS ===== */
.brands {
  background: var(--bg-soft);
  padding: 60px 0;
  color: var(--cream);
}
.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-2);
}
.brand-dot { color: var(--gold); opacity: .4; }

/* ===== RESERVA ===== */
.reserve {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 140px 0;
  position: relative;
}
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.reserve-text .section-title { text-align: left; }
.reserve-text .lead {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 36px;
}
.reserve-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.btn-large {
  padding: 18px 30px !important;
  font-size: 12px !important;
  border-radius: 4px !important;
  justify-content: flex-start !important;
  text-align: left;
}
.btn-large i {
  font-size: 22px;
  margin-right: 12px;
}
.btn-large span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.btn-large small {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .8;
}
.btn-large strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: none;
}
.reserve-info {
  display: grid;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.r-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.r-info-item i {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212,185,122,.18);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}
.r-info-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.r-info-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.r-info-item small {
  color: var(--muted);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.reserve-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(43,36,24,.1);
}
.reserve-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) sepia(.1) contrast(1.04);
  transition: filter .5s;
}
.reserve-map:hover iframe { filter: none; }

@media (max-width: 900px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-map { min-height: 340px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  color: var(--cream);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(212,185,122,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.foot-brand .logo-main { color: var(--cream); font-size: 32px; }
.foot-brand .logo-sub { color: var(--gold); }
.foot-brand p {
  margin-top: 16px;
  color: rgba(253,248,234,.55);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.foot-links h5, .foot-social h5 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-links a, .foot-links span {
  display: block;
  color: rgba(253,248,234,.65);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color .3s;
}
.foot-links a:hover { color: var(--gold); }
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all .3s;
}
.socials a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(212,185,122,.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(253,248,234,.4);
  font-size: 12px;
  letter-spacing: 1px;
  width: min(1200px,92%);
  margin: 0 auto;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-credit {
  margin: 0;
  text-align: center;
}
.footer-bottom i { color: var(--rose-deep); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* ===== Botón flotante: teléfono fijo ===== */
.call-float {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 24px;
  z-index: 400;
  box-shadow: 0 10px 30px rgba(212,185,122,.45);
  transition: transform .3s;
}
.call-float:hover { transform: scale(1.1); }
.call-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-deep);
  animation: callPulse 2s ease-out infinite;
}
@keyframes callPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,12,11,.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 60px;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; animation: fadeIn .4s; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  animation: zoomIn .4s var(--easing);
}
@keyframes zoomIn {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: var(--cream);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .3s;
}
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Kérastase badge en hero ===== */
.ker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--gold-2);
  border-radius: 40px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(43,36,24,.4);
  backdrop-filter: blur(6px);
  margin-right: 8px;
}
.ker-badge i { font-size: 11px; }
.hero-pre .sep { margin: 0 10px; opacity: .6; }

/* ===== Sección Kérastase ===== */
.kerastase {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.kera-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
  pointer-events: none;
}
.kera-decor-1 {
  width: 400px; height: 400px;
  background: var(--gold-2);
  top: -100px; right: -100px;
}
.kera-decor-2 {
  width: 300px; height: 300px;
  background: var(--rose);
  bottom: -80px; left: -80px;
  opacity: .3;
}
.kera-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kera-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400;
  line-height: 1;
  margin: 10px 0 28px;
  color: var(--ink);
  letter-spacing: -2px;
}
.kera-letterK {
  display: inline-block;
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-size: 1.2em;
  font-weight: 400;
  transform: translateY(6px);
  margin-right: 2px;
}
.kera-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 400;
}
.kera-lead strong { color: var(--gold-deep); font-weight: 600; }
.kera-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.kera-list {
  list-style: none;
  margin-bottom: 36px;
}
.kera-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.kera-list li:last-child { border-bottom: 0; }
.kera-list li i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.kera-brands {
  padding: 18px 22px;
  background: rgba(212,185,122,.12);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.kera-brands > span {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.kera-brands-list {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
}
.kera-brands-list .dot { opacity: .45; margin: 0 6px; }

.kera-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(43,36,24,.22);
}
.kera-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.kera-img:hover img { transform: scale(1.05); }
.kera-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 14px 40px rgba(43,36,24,.3);
  animation: spin 22s linear infinite;
  z-index: 2;
}
.kera-stamp i { font-size: 26px; margin-bottom: 4px; display: block; animation: spinRev 22s linear infinite; }
.kera-stamp span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: spinRev 22s linear infinite;
}

@media (max-width: 900px) {
  .kera-grid { grid-template-columns: 1fr; gap: 40px; }
  .kerastase { padding: 80px 0; }
  .kera-img { aspect-ratio: 4/5; }
}

/* ===== Showcase inline (imagen PDF dentro de un subcat) ===== */
.pdf-inline-showcase {
  margin: 60px auto 80px;
  max-width: 900px;
  padding: 0 20px;
}
.pdf-inline-showcase .inline-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(43,36,24,.15), 0 0 0 1px rgba(212,185,122,.2);
  background: #fff;
}
.pdf-inline-showcase .inline-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--easing);
}
.pdf-inline-showcase:hover .inline-img img {
  transform: scale(1.02);
}
.pdf-inline-showcase .inline-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,185,122,.1), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
.pdf-inline-showcase:hover .inline-img::before { opacity: 1; }

/* ===== Banners intercalados (imágenes del PDF) ===== */
.pdf-banner {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 460px;
  max-height: 680px;
  overflow: hidden;
  background-color: var(--bg);
}
.pdf-banner-img {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 1.6s var(--easing);
}
.pdf-banner.visible .pdf-banner-img { transform: scale(1.04); }
.pdf-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,36,24,.05) 0%, rgba(43,36,24,.2) 100%);
  pointer-events: none;
}
.pdf-banner.contain .pdf-banner-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--cream);
}
.pdf-banner.contain::after { display: none; }
.pdf-banner.contain { background: var(--cream); }

/* Showcase 2-up: imagen PDF + texto/descripcion */
.pdf-showcase {
  background: var(--cream);
  padding: 100px 0;
}
.pdf-showcase .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pdf-showcase.flip .container { grid-template-columns: 1fr 1.1fr; }
.pdf-showcase.flip .showcase-img { order: 2; }
.showcase-img {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(43,36,24,.12);
  position: relative;
  aspect-ratio: 3/2;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--easing);
}
.pdf-showcase:hover .showcase-img img { transform: scale(1.05); }
.showcase-text .section-eyebrow { margin-bottom: 12px; }
.showcase-text h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink);
}
.showcase-text h3 em {
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-size: 1.12em;
}
.showcase-text p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* PDF showcase dark variant — encima del fondo oscuro (belleza) */
.pdf-showcase.dark { background: #3a3224; color: var(--cream); }
.pdf-showcase.dark .showcase-text h3 { color: var(--cream); }
.pdf-showcase.dark .showcase-text p { color: rgba(253,248,234,.7); }
.pdf-showcase.dark .section-eyebrow { color: var(--gold-2); }

@media (max-width: 900px) {
  .pdf-showcase .container,
  .pdf-showcase.flip .container { grid-template-columns: 1fr; gap: 30px; }
  .pdf-showcase.flip .showcase-img { order: 0; }
  .pdf-banner { height: 50vh; min-height: 320px; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-rotator {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: auto;
    max-width: min(520px, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
    padding: 14px 24px;
    gap: 12px;
  }
  .hero-rotator > span:first-child {
    width: 100%;
  }
  .rot-words {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 52px;
    height: 52px;
    margin: 0 auto;
    overflow: hidden;
  }
  .rot-words span {
    font-size: 13px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--cream); /* vainilla cream */
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 22px;
    align-items: flex-start;
    transition: right .5s var(--easing);
    border-left: 1px solid rgba(212,185,122,.35);
    box-shadow: -20px 0 50px rgba(43,36,24,.12);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; color: var(--ink); }
  .nav-links a:not(.btn-cta):hover { color: var(--gold-deep); }
  .nav-links .btn-cta {
    color: var(--gold-deep) !important;
    border-color: var(--gold-deep);
  }
  .nav-links .btn-cta::before { background: var(--gold-deep); }
  .nav-links .btn-cta:hover { color: var(--cream) !important; }
  .burger { display: flex; }
  .burger.open span { background: var(--ink); }

  .hero-content {
    padding: 100px 20px 135px;
  }
  .hero-pre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    letter-spacing: 4px;
    line-height: 1.5;
  }
  .hero-pre .sep { display: none; }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  .footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .about-text,
  .about-text .section-title,
  .about-text .section-eyebrow,
  .about-text .lead,
  .about-text p {
    text-align: center;
  }
  .about-text .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 36em;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    display: grid;
  }
  /* El sello encima de «Sobre nosotros», fotos debajo */
  .about-visual {
    display: contents;
  }
  .about-badge {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    padding: 30px 26px;
    gap: 14px;
  }
  .about-text {
    order: 2;
  }
  .about-images {
    order: 3;
    height: 500px;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 0;
    box-sizing: border-box;
  }
  .about-badge .badge-num {
    font-size: 86px;
    line-height: 1;
  }
  .about-badge .badge-lbl {
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1.35;
    margin-top: 0;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 340px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  .masonry { column-count: 2; }

  .ig-badge { display: none; }

  section.services, section.beauty, section.techniques, section.gallery, section.contact, section.about { padding: 80px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 560px) {
  .masonry { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; align-items: center; gap: 24px; }
  .about-images { height: 420px; }

  .about-badge {
    width: 240px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    padding: 26px 20px;
    gap: 12px;
  }
  .about-badge .badge-num {
    font-size: 78px;
  }
  .about-badge .badge-lbl {
    font-size: 12px;
    letter-spacing: 1.6px;
    line-height: 1.35;
  }

  .hero-rotator {
    max-width: min(100%, calc(100vw - 16px));
    padding: 14px 20px;
  }
  .rot-words span {
    font-size: 12.5px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
