/* ===========================================================
   EROS PROJECT · Estudio de Barbería y Salón · Barcelona
   Estilo compartido · v2.0
   =========================================================== */

:root{
  --noir:#0A0A0A;
  --noir-soft:#141414;
  --noir-elevated:#1A1A1A;
  --bone:#FAFAFA;
  --bone-muted:rgba(250,250,250,.55);
  --bone-line:rgba(250,250,250,.08);
  --gold:#C9A86A;
  --gold-soft:#D9BE8B;
  --gold-deep:#A88848;
  --gold-line:rgba(201,168,106,.22);
  --ff-display:'Fraunces',Georgia,serif;
  --ff-ui:'Inter',system-ui,sans-serif;
  --container:1280px;
  --container-wide:1440px;
  --pad-x:clamp(20px,5vw,80px);
  --pad-y:clamp(80px,12vh,160px);
  --ease:cubic-bezier(.2,.8,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;scroll-padding-top:90px}
body{
  font-family:var(--ff-ui);
  font-size:16px;
  line-height:1.6;
  background:var(--noir);
  color:var(--bone);
  overflow-x:clip;
}
::selection{background:var(--gold);color:var(--noir)}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:var(--noir)}
::-webkit-scrollbar-thumb{background:rgba(201,168,106,.3);border:2px solid var(--noir);border-radius:0}
::-webkit-scrollbar-thumb:hover{background:var(--gold)}
img,svg{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;background:none;border:none;cursor:pointer;color:inherit}

.container{max-width:var(--container);margin:0 auto;padding-inline:var(--pad-x)}
.container--wide{max-width:var(--container-wide);margin:0 auto;padding-inline:var(--pad-x)}

/* ============ TIPOGRAFÍA ============ */
.eyebrow{
  font-family:var(--ff-ui);
  font-size:11px;
  font-weight:500;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}
.eyebrow::before{content:"";width:32px;height:1px;background:var(--gold)}
.eyebrow--center{justify-content:center}
.eyebrow--center::before{display:none}

.h1{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(48px,7.5vw,112px);
  line-height:.98;
  letter-spacing:-.025em;
}
.h2{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(36px,5vw,72px);
  line-height:1.05;
  letter-spacing:-.018em;
  margin-bottom:24px;
}
.h2 em{font-style:italic;color:var(--gold);font-weight:300}
.h3{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(20px,1.6vw,26px);
  line-height:1.3;
  letter-spacing:-.005em;
}
em{font-style:italic}

/* ============ BOTONES ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:17px 34px;
  font-family:var(--ff-ui);
  font-weight:500;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  background:var(--gold);
  color:var(--noir);
  border:1px solid var(--gold);
  position:relative;
  overflow:hidden;
  transition:background .4s var(--ease),color .4s var(--ease),transform .4s var(--ease),box-shadow .4s var(--ease);
  white-space:nowrap;
  cursor:pointer;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.18) 50%,transparent 70%);
  transform:translateX(-100%);
  transition:transform .8s var(--ease);
  pointer-events:none;
}
.btn:hover{background:var(--gold-soft);transform:translateY(-2px);box-shadow:0 12px 28px -10px rgba(201,168,106,.45)}
.btn:hover::before{transform:translateX(100%)}
.btn--ghost{background:transparent;color:var(--bone);border-color:rgba(250,250,250,.3)}
.btn--ghost:hover{background:var(--bone);color:var(--noir);border-color:var(--bone);transform:translateY(-2px);box-shadow:0 12px 28px -10px rgba(250,250,250,.15)}
.btn--sm{padding:12px 24px;font-size:12px}

section{padding-block:var(--pad-y);position:relative}

/* ============ HEADER ============ */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:20px var(--pad-x);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:transparent;
  transition:background .4s var(--ease),padding .4s var(--ease),border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.scrolled,
.site-header.dark{
  background:rgba(10,10,10,.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding-block:14px;
  border-bottom-color:var(--bone-line);
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--ff-display);
  font-weight:400;
  font-size:22px;
  letter-spacing:.06em;
  color:var(--bone);
  line-height:1;
}
.logo img{
  height:42px;
  width:auto;
  display:block;
  transition:transform .4s var(--ease);
}
.logo:hover img{transform:scale(1.06)}
.logo em{color:var(--gold);font-style:italic;font-weight:300}
.logo__text{display:inline-block}
@media (max-width:480px){
  .logo img{height:36px}
  .logo__text{font-size:18px}
}
.nav{display:flex;gap:36px;align-items:center}
.nav a{
  font-size:13px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--bone);
  position:relative;
  padding-block:8px;
  transition:color .3s var(--ease);
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:2px;
  height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s var(--ease);
}
.nav a:hover,
.nav a[aria-current="page"]{color:var(--gold)}
.nav a:hover::after,
.nav a[aria-current="page"]::after{transform:scaleX(1)}
.nav-actions{display:flex;align-items:center;gap:20px}
.menu-toggle{display:none;width:32px;height:32px;flex-direction:column;justify-content:center;gap:6px}
.menu-toggle span{display:block;width:24px;height:1px;background:var(--bone);transition:transform .3s var(--ease)}
.menu-toggle.is-open span:nth-child(1){transform:translateY(4px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){transform:translateY(-3px) rotate(-45deg)}

/* ============ HERO ============ */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:80px;
}
.hero--compact{min-height:70vh}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{
  width:100%;height:110%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.9) contrast(1.08) brightness(.95);
  animation:heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{
  from{transform:scale(1.08) translateY(0)}
  to{transform:scale(1) translateY(-1%)}
}
.hero__bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:radial-gradient(ellipse at 70% 50%,transparent 0%,rgba(10,10,10,.4) 70%,rgba(10,10,10,.85) 100%);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(10,10,10,.55) 0%,rgba(10,10,10,.3) 40%,rgba(10,10,10,.5) 70%,rgba(10,10,10,.95) 100%);
}
.hero__content{position:relative;z-index:1;width:100%}
.hero__title{margin-bottom:32px;max-width:14ch;position:relative}
.hero__title em{color:var(--gold);font-style:italic;font-weight:300}
.hero__title::before{
  content:"";
  position:absolute;
  left:-32px;top:0;
  width:2px;
  height:0;
  background:linear-gradient(180deg,var(--gold) 0%,transparent 100%);
  animation:heroLineGrow 2s var(--ease) .8s forwards;
}
@keyframes heroLineGrow{to{height:100%}}
@media (max-width:768px){.hero__title::before{left:-16px}}
.hero__sub{
  font-size:clamp(17px,1.4vw,20px);
  color:rgba(250,250,250,.78);
  max-width:54ch;
  margin-bottom:40px;
  line-height:1.55;
}
.hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:60px}
.hero__meta{
  position:absolute;
  bottom:60px;
  left:var(--pad-x);
  right:var(--pad-x);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  pointer-events:none;
}
.hero__rating{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:13px;
  letter-spacing:.08em;
  color:var(--bone-muted);
  pointer-events:auto;
}
.hero__rating strong{color:var(--bone);font-weight:500}
.hero__rating-divider{width:1px;height:14px;background:var(--bone-line)}
.hero__addr{
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:300;
  font-size:14px;
  color:var(--bone-muted);
  text-align:right;
  pointer-events:auto;
}

/* ============ SECTION HEAD ============ */
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:60px;
  margin-bottom:80px;
  flex-wrap:wrap;
}
.section-head--center{
  justify-content:center;
  text-align:center;
  flex-direction:column;
  align-items:center;
}
.section-head__title{max-width:18ch}
.section-head__lead{max-width:42ch;color:var(--bone-muted);font-size:16px;line-height:1.65}

/* ============ ÁREAS (HOME) ============ */
.areas{background:var(--noir)}
.areas__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.area-card{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  border:1px solid var(--bone-line);
  background:var(--noir-soft);
  text-decoration:none;
  color:var(--bone);
  display:block;
  transition:border-color .4s var(--ease);
}
.area-card:hover{border-color:var(--gold)}
.area-card__media{position:absolute;inset:0}
.area-card__media img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.85) contrast(1.05) brightness(.85);
  transition:transform 1.4s var(--ease),filter .8s var(--ease);
}
.area-card:hover .area-card__media img{transform:scale(1.05);filter:saturate(1) contrast(1.08) brightness(.95)}
.area-card__media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,10,10,.2) 0%,rgba(10,10,10,.55) 60%,rgba(10,10,10,.95) 100%);
  transition:background .4s var(--ease);
}
.area-card__content{
  position:absolute;
  inset:auto 0 0 0;
  padding:clamp(28px,4vw,56px);
  z-index:2;
}
.area-card__eyebrow{
  font-family:var(--ff-ui);
  font-size:11px;
  font-weight:500;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.area-card__title{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(36px,4.2vw,64px);
  line-height:1;
  letter-spacing:-.02em;
  margin-bottom:16px;
}
.area-card__title em{font-style:italic;color:var(--gold);font-weight:300}
.area-card__desc{
  font-size:15px;
  line-height:1.55;
  color:rgba(250,250,250,.75);
  max-width:42ch;
  margin-bottom:24px;
}
.area-card__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  transition:gap .3s var(--ease);
}
.area-card:hover .area-card__cta{gap:18px}
.area-card__badge{
  position:absolute;
  top:24px;right:24px;
  z-index:3;
  padding:8px 16px;
  font-size:10px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--bone);
  background:rgba(10,10,10,.55);
  border:1px solid var(--bone-line);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.area-card__badge--soon{color:var(--gold);border-color:var(--gold-line)}

/* ============ HOME SERVICES (INICIO) ============ */
.home-services{display:flex;flex-direction:column;gap:96px}
.home-services__group{padding-block:0;position:relative}
.svc-pin{display:flex;flex-direction:column;gap:36px}
.home-services__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:40px;
  padding-bottom:24px;
  border-bottom:1px solid var(--bone-line);
}
.home-services__title{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(28px,3.2vw,40px);
  line-height:1.1;
  letter-spacing:-.015em;
  color:var(--bone);
}
.home-services__title em{font-style:italic;color:var(--gold);font-weight:300}
.home-services__sub{
  font-size:14px;
  color:var(--bone-muted);
  letter-spacing:.04em;
  max-width:32ch;
  text-align:right;
}
.svc-rail{
  position:relative;
}
.svc-grid{
  display:grid;
  gap:20px;
}
.svc-grid--5{grid-template-columns:repeat(5,1fr)}
.svc-grid--4{grid-template-columns:repeat(4,1fr)}
.svc-card{
  position:relative;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:var(--bone);
  background:linear-gradient(180deg,var(--noir-soft) 0%,var(--noir) 100%);
  border:1px solid var(--bone-line);
  overflow:hidden;
  isolation:isolate;
  transition:border-color .4s var(--ease),transform .5s var(--ease),box-shadow .5s var(--ease);
}
.svc-card::before{
  content:"";
  position:absolute;
  top:0;left:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft));
  z-index:5;
  transition:width .6s var(--ease);
}
.svc-card:hover{
  border-color:var(--gold-line);
  transform:translateY(-6px);
  box-shadow:0 24px 60px -20px rgba(0,0,0,.6),0 0 0 1px var(--gold-line);
}
.svc-card:hover::before{width:100%}
.svc-card__media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}
.svc-card__media img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.92) contrast(1.06);
  transition:transform 1.6s var(--ease),filter .8s var(--ease);
}
.svc-card:hover .svc-card__media img{transform:scale(1.08);filter:saturate(1.05) contrast(1.1)}
.svc-card__media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,10,10,0) 50%,rgba(10,10,10,.55) 100%);
  pointer-events:none;
}
.svc-card__num{
  position:absolute;
  top:20px;left:20px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  padding:8px 14px;
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:300;
  font-size:14px;
  letter-spacing:.04em;
  color:var(--gold-soft);
  background:rgba(10,10,10,.7);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--gold-line);
}
.svc-card__body{
  padding:22px 22px 22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
  position:relative;
}
.svc-card__icon-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}
.svc-card__icon-wrap::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg,var(--gold-line),transparent);
}
.svc-card__icon{
  width:28px;
  height:28px;
  color:var(--gold);
  stroke-width:1.1;
  flex-shrink:0;
}
.svc-card__name{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(19px,1.5vw,24px);
  line-height:1.15;
  letter-spacing:-.012em;
  color:var(--bone);
}
.svc-card__name em{font-style:italic;color:var(--gold);font-weight:300}
.svc-card__desc{
  font-size:13px;
  line-height:1.55;
  color:var(--bone-muted);
  flex:1;
}
.svc-card__arrow{
  margin-top:6px;
  font-size:10px;
  font-weight:500;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  align-self:stretch;
  padding:12px 0 0;
  border-top:1px solid var(--bone-line);
  transition:color .35s var(--ease),border-color .35s var(--ease);
}
.svc-card__arrow::after{
  content:"→";
  font-family:var(--ff-display);
  font-style:italic;
  font-size:16px;
  letter-spacing:0;
  color:var(--gold);
  transition:transform .35s var(--ease);
}
.svc-card:hover .svc-card__arrow{color:var(--gold-soft);border-top-color:var(--gold-line)}
.svc-card:hover .svc-card__arrow::after{transform:translateX(6px)}

@media (max-width:1200px){
  .svc-grid--5{grid-template-columns:repeat(3,1fr)}
  .svc-grid--4{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:768px){
  .svc-grid--5,.svc-grid--4{grid-template-columns:1fr;gap:16px;max-width:420px;margin:0 auto}
}
.home-services__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:40px;
  justify-content:flex-end;
}

@media (max-width:768px){
  .home-services{gap:72px}
  .home-services__head{flex-direction:column;align-items:flex-start;gap:12px}
  .home-services__sub{text-align:left}
  .svc-rail{overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
  .svc-rail::-webkit-scrollbar{display:none}
  .svc-grid{transform:none!important;gap:14px;padding-right:var(--pad-x)}
  .svc-card{flex:0 0 78vw;scroll-snap-align:start}
  .home-services__actions{justify-content:stretch;flex-direction:column}
  .home-services__actions .btn{width:100%}
}

/* ============ DIVISOR DECORATIVO ENTRE SECCIONES ============ */
.section-light{
  position:relative;
}
.section-light::before{
  content:"";
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:min(80%,720px);
  height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(168,136,72,.45) 30%,rgba(168,136,72,.45) 70%,transparent 100%);
}
.section-light::after{
  content:"";
  position:absolute;
  top:-32px;left:50%;
  transform:translateX(-50%);
  width:64px;
  height:64px;
  background-color:#FAFAFA;
  background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23A88848'%20stroke-width='1.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='6.5'%20cy='17.5'%20r='2.5'/%3E%3Ccircle%20cx='17.5'%20cy='17.5'%20r='2.5'/%3E%3Cpath%20d='M8.6%2015.6%20L19.5%204.7%20M15.4%2015.6%20L4.5%204.7'/%3E%3C/svg%3E");
  background-size:30px 30px;
  background-repeat:no-repeat;
  background-position:center;
  border:1px solid rgba(168,136,72,.35);
  border-radius:50%;
  z-index:3;
  box-shadow:0 6px 18px -8px rgba(168,136,72,.4);
}

/* ============ SECTION LIGHT (contraste editorial) ============ */
section.section-light,
.section-light{
  background:#FAFAFA !important;
  color:#0A0A0A !important;
}
.section-light .eyebrow{color:#A88848}
.section-light .eyebrow::before{background:#A88848}
.section-light .h1,
.section-light .h2,
.section-light .h3{color:#0A0A0A}
.section-light .h2 em,
.section-light .h3 em,
.section-light .h1 em{color:#A88848}
.section-light .lead,
.section-light .section-head__lead,
.section-light .about__lead,
.section-light .home-services__sub,
.section-light .cortes__sub{color:rgba(10,10,10,.62)}
.section-light .btn--ghost{color:#0A0A0A;border-color:rgba(10,10,10,.22)}
.section-light .btn--ghost:hover{background:#0A0A0A;color:#F4EFE4;border-color:#0A0A0A}
.section-light .btn{background:#A88848;color:#F4EFE4;border-color:#A88848}
.section-light .btn:hover{background:#C9A86A;border-color:#C9A86A;color:#0A0A0A}

/* Reviews en light */
.section-light .review{
  border-color:rgba(10,10,10,.1);
  background:rgba(255,255,255,.55);
}
.section-light .review:hover{border-color:rgba(168,136,72,.4);background:rgba(168,136,72,.05)}
.section-light .review__text{color:#0A0A0A}
.section-light .review__author{color:rgba(10,10,10,.6)}
.section-light .review__stars{color:#A88848}

/* Stats en light */
.section-light .stat__num,
.section-light .about__stat-num{color:#0A0A0A}
.section-light .stat__num em,
.section-light .about__stat-num em{color:#A88848}
.section-light .stat__label,
.section-light .about__stat-label{color:rgba(10,10,10,.58)}
.section-light .resenas__stats,
.section-light .about__stats{border-color:rgba(10,10,10,.12)}

/* Team cards en light */
.section-light .member{padding:0;position:relative}
.section-light .member__photo{
  background:#E8E1D0;
  border:1px solid rgba(168,136,72,.18);
  margin-bottom:24px;
}
.section-light .member__photo img{
  filter:contrast(1.04) saturate(.98);
  mix-blend-mode:normal;
}
.section-light .member:hover .member__photo img{
  filter:contrast(1.08) saturate(1.05);
}
.section-light .member__photo::after{
  background:linear-gradient(180deg,transparent 60%,rgba(232,225,208,.4) 100%);
}
.section-light .member__role{display:none}
.section-light .member__name{
  color:#0A0A0A;
  font-size:24px;
  margin-bottom:8px;
}
.section-light .member__bio{
  color:rgba(10,10,10,.6);
  font-size:13.5px;
  line-height:1.6;
  margin-bottom:20px;
}
.section-light .member__cta{
  color:#A88848;
  padding-top:14px;
  border-top:1px solid rgba(168,136,72,.22);
  width:100%;
  justify-content:space-between;
}
.section-light .member__cta::after{
  content:"→";
  font-family:var(--ff-display);
  font-style:italic;
  font-size:16px;
  color:#A88848;
  transition:transform .3s var(--ease);
}
.section-light .member:hover .member__cta{color:#0A0A0A}
.section-light .member:hover .member__cta::after{transform:translateX(6px)}

/* About en light */
.section-light .about__feature{color:rgba(10,10,10,.62)}
.section-light .about__feature strong{color:#0A0A0A}
.section-light .about__feature-icon{color:#A88848}
.section-light .about__decor{-webkit-text-stroke-color:rgba(168,136,72,.32);opacity:.55}
.section-light .about__media-frame{border-color:rgba(168,136,72,.3)}
.section-light .about__media-stamp{
  background:rgba(255,255,255,.85);
  color:#0A0A0A;
  border-color:rgba(168,136,72,.3);
}
.section-light .about__media-stamp::before{background:#A88848}

/* Marquee about en light */
.section-light .about__marquee{
  border-color:rgba(10,10,10,.12);
}
.section-light .about__marquee-track{color:#0A0A0A}
.section-light .about__marquee-item em{color:#A88848}
.section-light .about__marquee-item::after{color:#A88848}

/* Section head light */
.section-light .section-head__title{color:#0A0A0A}

/* ============ ABOUT (SOBRE NOSOTROS) ============ */
.about{
  background:var(--noir-soft);
  position:relative;
  overflow:hidden;
  padding-bottom:0;
}
section.about.section-light{padding-bottom:0 !important}
.about__grid{
  display:grid;
  grid-template-columns:5fr 6fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:2;
}
.about__media{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
}
.about__media img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.05);
  will-change:transform;
  transition:transform .1s linear;
}
.about__media-frame{
  position:absolute;
  inset:18px;
  border:1px solid var(--gold-line);
  pointer-events:none;
  z-index:3;
}
.about__media-stamp{
  position:absolute;
  bottom:24px;right:24px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  background:rgba(10,10,10,.78);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--gold-line);
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:300;
  font-size:13px;
  letter-spacing:.04em;
  color:var(--gold-soft);
}
.about__media-stamp::before{
  content:"";
  width:6px;height:6px;
  border-radius:50%;
  background:var(--gold);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:.4;transform:scale(.9)}
  50%{opacity:1;transform:scale(1.15)}
}
.about__content{display:flex;flex-direction:column;gap:24px}
.about__lead{
  font-size:17px;
  line-height:1.65;
  color:var(--bone-muted);
  max-width:52ch;
}
.about__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  padding-block:28px;
  margin-block:8px;
  border-top:1px solid var(--bone-line);
  border-bottom:1px solid var(--bone-line);
}
.about__stat{display:flex;flex-direction:column;gap:6px}
.about__stat-num{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(32px,3.5vw,48px);
  line-height:1;
  color:var(--bone);
  letter-spacing:-.025em;
}
.about__stat-num em{font-style:italic;color:var(--gold);font-weight:300}
.about__stat-label{
  font-size:10px;
  font-weight:500;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--bone-muted);
}
.about__features{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about__feature{
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-size:14.5px;
  line-height:1.55;
  color:var(--bone-muted);
}
.about__feature-icon{
  flex-shrink:0;
  width:18px;height:18px;
  color:var(--gold);
  stroke-width:1.5;
  margin-top:3px;
}
.about__feature strong{color:var(--bone);font-weight:500}
.about__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:12px}
.about__decor{
  position:absolute;
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:300;
  font-size:clamp(140px,18vw,260px);
  line-height:.9;
  color:transparent;
  -webkit-text-stroke:1px var(--gold-line);
  opacity:.45;
  pointer-events:none;
  user-select:none;
  z-index:1;
}
.about__decor--01{top:-40px;right:-30px}
.about__decor--02{bottom:-80px;left:-40px}

.about__marquee{
  margin-top:96px;
  margin-bottom:0;
  overflow:hidden;
  border-top:1px solid var(--bone-line);
  border-bottom:0;
  padding-block:24px;
  position:relative;
  z-index:2;
}
.about__marquee-track{
  display:flex;
  gap:0;
  white-space:nowrap;
  animation:marquee 38s linear infinite;
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(28px,3.4vw,52px);
  color:var(--bone);
  letter-spacing:-.012em;
  line-height:1;
  will-change:transform;
}
.about__marquee-item{padding-inline:36px;display:inline-flex;align-items:center;gap:36px}
.about__marquee-item em{font-style:italic;color:var(--gold);font-weight:300}
.about__marquee-item::after{
  content:"·";
  color:var(--gold);
  font-size:1.2em;
  line-height:0;
  display:inline-block;
  transform:translateY(-2px);
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media (max-width:1024px){
  .about__grid{grid-template-columns:1fr;gap:40px}
  .about__media{aspect-ratio:4/5;max-width:520px;width:100%;margin:0 auto;order:2}
  .about__content{order:1}
  .about__decor{font-size:clamp(100px,16vw,180px);opacity:.35}
}
@media (max-width:768px){
  .about__stats{grid-template-columns:repeat(3,1fr);gap:14px;padding-block:20px}
  .about__stat-num{font-size:28px}
  .about__stat-label{font-size:9px;letter-spacing:.2em}
  .about__lead{font-size:15px}
  .about__features{display:none}
  .about__media-stamp{font-size:11px;padding:8px 12px;bottom:14px;right:14px}
  .about__media-frame{inset:10px}
  .about__marquee{margin-top:64px;padding-block:18px}
  .about__ctas{flex-direction:column;align-items:stretch;width:100%}
  .about__ctas .btn{width:100%}
}

/* ============ CARRUSEL CORTES (marquee infinito) ============ */
.cortes{
  background:var(--noir);
  padding-block:clamp(80px,12vh,140px);
  position:relative;
}
.cortes__head{
  max-width:var(--container);
  margin:0 auto 56px;
  padding-inline:var(--pad-x);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  flex-wrap:wrap;
}
.cortes__title{max-width:18ch}
.cortes__sub{
  font-size:15px;
  color:var(--bone-muted);
  max-width:42ch;
  letter-spacing:.02em;
}
.cortes-marquee{
  position:relative;
  overflow:hidden;
  width:100vw;
  margin-left:calc(50% - 50vw);
}
.cortes-marquee::before,
.cortes-marquee::after{
  content:"";
  position:absolute;
  top:0;bottom:0;
  width:140px;
  z-index:3;
  pointer-events:none;
}
.cortes-marquee::before{left:0;background:linear-gradient(90deg,var(--noir),transparent)}
.cortes-marquee::after{right:0;background:linear-gradient(-90deg,var(--noir),transparent)}
.cortes-marquee__track{
  display:flex;
  gap:18px;
  animation:cortesScroll 65s linear infinite;
  width:max-content;
  will-change:transform;
}
.cortes-marquee:hover .cortes-marquee__track{animation-play-state:paused}
.cortes-card{
  flex:0 0 clamp(220px,22vw,320px);
  aspect-ratio:3/4;
  overflow:hidden;
  position:relative;
  background:var(--noir-soft);
}
.cortes-card img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.05);
  transition:transform .8s var(--ease),filter .5s var(--ease);
}
.cortes-card:hover img{transform:scale(1.06);filter:saturate(1.05) contrast(1.1)}
.cortes-card::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,10,10,0) 60%,rgba(10,10,10,.5) 100%);
  pointer-events:none;
}
@keyframes cortesScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media (max-width:768px){
  .cortes__head{margin-bottom:32px;gap:18px}
  .cortes-card{flex:0 0 200px}
  .cortes-marquee::before,.cortes-marquee::after{width:60px}
}

/* ============ EQUIPO HOME ============ */
.equipo-home{background:var(--noir);position:relative}
.equipo-home__grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}
@media (max-width:1024px){.equipo-home__grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:768px){.equipo-home__grid{grid-template-columns:1fr;gap:24px;max-width:380px;margin:0 auto}}

/* ============ FAQ ACCORDION ============ */
.faq{background:var(--noir-soft)}
.faq__list{
  max-width:880px;
  margin:0 auto;
  border-top:1px solid var(--bone-line);
}
.faq__item{
  border-bottom:1px solid var(--bone-line);
}
.faq__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:28px 4px;
  text-align:left;
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(18px,1.8vw,22px);
  line-height:1.3;
  letter-spacing:-.005em;
  color:var(--bone);
  cursor:pointer;
  transition:color .3s var(--ease);
}
.faq__btn:hover{color:var(--gold)}
.faq__icon{
  flex-shrink:0;
  width:22px;height:22px;
  position:relative;
  transition:transform .35s var(--ease);
}
.faq__icon::before,
.faq__icon::after{
  content:"";
  position:absolute;
  background:var(--gold);
  transition:transform .35s var(--ease);
}
.faq__icon::before{
  top:50%;left:0;right:0;
  height:1px;
  transform:translateY(-50%);
}
.faq__icon::after{
  top:0;bottom:0;left:50%;
  width:1px;
  transform:translateX(-50%);
}
.faq__item[aria-expanded="true"] .faq__icon::after{transform:translateX(-50%) scaleY(0)}
.faq__answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s var(--ease);
}
.faq__answer-inner{
  padding:0 4px 28px;
  font-size:15px;
  line-height:1.65;
  color:var(--bone-muted);
  max-width:62ch;
}
.faq__answer-inner a{color:var(--gold);text-decoration:underline;text-underline-offset:3px}
.faq__item[aria-expanded="true"] .faq__answer{max-height:400px}

@media (max-width:768px){
  .faq__btn{padding:22px 4px;gap:16px}
}

/* ============ SERVICIOS (BARBER) ============ */
.servicios__inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.servicios__media{position:relative;aspect-ratio:4/5;overflow:hidden}
.servicios__media img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(1.04);
  transition:transform 1.2s var(--ease);
}
.servicios__media:hover img{transform:scale(1.04)}
.servicios__list{list-style:none;border-top:1px solid var(--bone-line)}
.servicios__list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--bone-line);
  font-family:var(--ff-display);
  font-size:22px;
  font-weight:400;
  letter-spacing:-.005em;
  transition:padding .35s var(--ease),color .35s var(--ease);
}
.servicios__list li:hover{padding-left:14px;color:var(--gold)}
.servicios__list li span{
  font-family:var(--ff-ui);
  font-size:11px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--bone-muted);
}
.servicios__cta{margin-top:40px;display:flex;gap:14px;flex-wrap:wrap}

/* ============ EQUIPO ============ */
.equipo{background:var(--noir-soft)}
.equipo__grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:32px;
}
.member{display:flex;flex-direction:column;text-align:left}
.member__photo{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  margin-bottom:22px;
  background:var(--noir);
}
.member__photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(10,10,10,.35) 100%);
  pointer-events:none;
  z-index:1;
}
.member__photo img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  filter:grayscale(.25) contrast(1.08) saturate(.9);
  transition:transform 1.4s var(--ease),filter .8s var(--ease);
}
.member:hover .member__photo img{transform:scale(1.08);filter:grayscale(0) contrast(1.1) saturate(1.05)}
.member__role{
  font-size:10px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}
.member__name{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:22px;
  letter-spacing:-.005em;
  margin-bottom:6px;
  line-height:1.15;
}
.member__bio{
  font-size:13px;
  color:var(--bone-muted);
  line-height:1.55;
  margin-bottom:18px;
  flex:1;
}
.member__cta{
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:8px;
  align-self:flex-start;
  transition:gap .3s var(--ease);
}
.member__cta:hover{gap:14px;color:var(--gold-soft)}

/* ============ GALERIA ============ */
.galeria__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.galeria__item{overflow:hidden;position:relative;aspect-ratio:1;display:block}
.galeria__grid--bento .galeria__item:nth-child(1){grid-column:1/3;grid-row:1/3}
.galeria__item img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(1.03);
  transition:transform 1.2s var(--ease),filter .6s var(--ease);
}
.galeria__item:hover img{transform:scale(1.05);filter:saturate(1) contrast(1.08)}
.galeria__caption{
  position:absolute;
  inset:auto 0 0 0;
  padding:14px 16px;
  font-size:10px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--bone);
  background:linear-gradient(180deg,transparent 0%,rgba(10,10,10,.7) 60%,rgba(10,10,10,.9) 100%);
  z-index:2;
  pointer-events:none;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .4s var(--ease),transform .4s var(--ease);
}
.galeria__caption em{color:var(--gold);font-style:italic;font-weight:300}
.galeria__item:hover .galeria__caption{opacity:1;transform:translateY(0)}
@media (hover:none){
  .galeria__caption{opacity:1;transform:none}
}

/* ============ RESEÑAS ============ */
.resenas{background:var(--noir-soft);text-align:center}
.resenas__stats{
  display:flex;
  justify-content:center;
  gap:80px;
  flex-wrap:wrap;
  margin-bottom:80px;
  padding-block:48px;
  border-top:1px solid var(--bone-line);
  border-bottom:1px solid var(--bone-line);
}
.stat{display:flex;flex-direction:column;gap:8px}
.stat__num{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(48px,5vw,72px);
  line-height:1;
  color:var(--bone);
  letter-spacing:-.02em;
}
.stat__num em{color:var(--gold);font-style:italic;font-weight:300}
.stat__label{
  font-size:11px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--bone-muted);
}
.resenas__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  text-align:left;
}
.review{
  padding:36px 32px;
  border:1px solid var(--bone-line);
  background:rgba(255,255,255,.015);
  transition:border-color .35s var(--ease),background .35s var(--ease);
}
.review:hover{border-color:var(--gold-line);background:rgba(201,168,106,.03)}
.review__stars{color:var(--gold);font-size:14px;letter-spacing:.15em;margin-bottom:20px}
.review__text{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:18px;
  line-height:1.55;
  margin-bottom:24px;
  color:var(--bone);
}
.review__author{
  font-size:12px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--bone-muted);
}

/* ============ CONTACTO ============ */
.contacto__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.contact-block{display:flex;flex-direction:column;gap:32px}
.contact-item{display:flex;flex-direction:column;gap:6px}
.contact-item__label{
  font-size:11px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
}
.contact-item__value{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:24px;
  line-height:1.3;
  color:var(--bone);
}
.contact-item__value a{transition:color .3s var(--ease)}
.contact-item__value a:hover{color:var(--gold)}
.contact-item__sub{font-size:14px;color:var(--bone-muted);margin-top:4px}
.contact-item__links{font-size:18px;display:flex;gap:20px;flex-wrap:wrap}
.contacto__cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:16px}
.contacto__map{
  aspect-ratio:1/1.1;
  overflow:hidden;
  border:1px solid var(--bone-line);
  background:#141414;
  position:relative;
  z-index:1;
}
.contacto__map iframe{width:100%;height:100%;border:0;filter:grayscale(.45) contrast(1.05)}
#erosMap{width:100%;height:100%;min-height:420px}
.section-light .contacto__map{border-color:rgba(168,136,72,.3);background:#E8E1D0}
.leaflet-container{font-family:var(--ff-ui);background:#141414}
.leaflet-control-attribution{font-size:9px;background:rgba(10,10,10,.7);color:rgba(250,250,250,.5)}
.leaflet-control-attribution a{color:var(--gold-soft)}
.leaflet-control-zoom a{
  background:rgba(10,10,10,.85);
  color:var(--gold);
  border:1px solid var(--gold-line);
}
.leaflet-control-zoom a:hover{background:var(--gold);color:var(--noir)}
.eros-map-pin{position:relative}
.eros-map-pin__dot{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:14px;height:14px;
  background:var(--gold);
  border:2px solid var(--bone);
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,.5);
  z-index:2;
}
.eros-map-pin__pulse{
  position:absolute;
  top:50%;left:50%;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--gold);
  opacity:.4;
  transform:translate(-50%,-50%);
  animation:erosPinPulse 2s ease-out infinite;
}
@keyframes erosPinPulse{
  0%{transform:translate(-50%,-50%) scale(.6);opacity:.7}
  100%{transform:translate(-50%,-50%) scale(2.4);opacity:0}
}
.leaflet-popup-content-wrapper{
  background:var(--noir);
  color:var(--bone);
  border:1px solid var(--gold-line);
  border-radius:0;
  box-shadow:0 8px 24px rgba(0,0,0,.6);
}
.leaflet-popup-content{
  font-family:var(--ff-ui);
  font-size:13px;
  line-height:1.5;
  margin:14px 18px;
}
.leaflet-popup-content strong{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:16px;
  color:var(--gold);
  display:block;
  margin-bottom:4px;
}
.leaflet-popup-tip{background:var(--noir);border:1px solid var(--gold-line)}
.leaflet-popup-close-button{color:var(--bone)!important;font-size:20px!important}

/* MAP CARD (alternativa al iframe) */
.map-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:48px 32px;
  background:linear-gradient(135deg,#141414 0%,#1A1A1A 100%);
  border:1px solid var(--gold-line);
  text-align:center;
  text-decoration:none;
  color:var(--bone);
  aspect-ratio:1/1.1;
  position:relative;
  overflow:hidden;
  transition:border-color .4s var(--ease),transform .4s var(--ease);
}
.section-light .map-card{
  background:linear-gradient(135deg,#F4EFE4 0%,#E8E1D0 100%);
  border-color:rgba(168,136,72,.3);
  color:#0A0A0A;
}
.map-card::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(90deg,rgba(201,168,106,.06) 1px,transparent 1px),
    linear-gradient(0deg,rgba(201,168,106,.06) 1px,transparent 1px);
  background-size:48px 48px;
  opacity:.7;
  z-index:0;
}
.section-light .map-card::before{
  background-image:
    linear-gradient(90deg,rgba(168,136,72,.1) 1px,transparent 1px),
    linear-gradient(0deg,rgba(168,136,72,.1) 1px,transparent 1px);
}
.map-card:hover{border-color:var(--gold);transform:translateY(-3px)}
.section-light .map-card:hover{border-color:#A88848}
.map-card__pin{
  width:88px;height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(201,168,106,.12);
  border:1px solid var(--gold);
  border-radius:50%;
  position:relative;
  z-index:1;
}
.section-light .map-card__pin{background:rgba(168,136,72,.08);border-color:#A88848}
.map-card__pin svg{width:38px;height:38px;color:var(--gold);stroke-width:1.4}
.section-light .map-card__pin svg{color:#A88848}
.map-card__pin::after{
  content:"";
  position:absolute;
  inset:-10px;
  border:1px solid rgba(201,168,106,.32);
  border-radius:50%;
  animation:mapPulse 2.6s ease-in-out infinite;
}
@keyframes mapPulse{
  0%,100%{transform:scale(.9);opacity:.3}
  50%{transform:scale(1.1);opacity:.7}
}
.map-card__info{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  z-index:1;
  position:relative;
}
.map-card__title{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(24px,2.4vw,32px);
  letter-spacing:-.012em;
  line-height:1.15;
}
.map-card__title em{font-style:italic;color:var(--gold);font-weight:300}
.section-light .map-card__title em{color:#A88848}
.map-card__sub{
  font-size:14px;
  color:var(--bone-muted);
  margin-bottom:6px;
}
.section-light .map-card__sub{color:rgba(10,10,10,.6)}
.map-card__cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
  padding:12px 24px;
  border:1px solid var(--gold-line);
  transition:gap .3s var(--ease),background .3s var(--ease),color .3s var(--ease);
}
.map-card:hover .map-card__cta{gap:16px;background:var(--gold);color:var(--noir)}
.section-light .map-card__cta{color:#A88848;border-color:rgba(168,136,72,.3)}
.section-light .map-card:hover .map-card__cta{background:#A88848;color:#F4EFE4}

/* ============ SALON SERVICE CARDS ============ */
.salon-services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.salon-service{
  position:relative;
  background:var(--noir-soft);
  border:1px solid var(--bone-line);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:border-color .35s var(--ease),transform .4s var(--ease);
}
.salon-service:hover{border-color:var(--gold);transform:translateY(-3px)}
.salon-service__media{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--noir);
}
.salon-service__media img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.95) contrast(1.04);
  transition:transform 1.2s var(--ease),filter .8s var(--ease);
}
.salon-service:hover .salon-service__media img{transform:scale(1.06);filter:saturate(1.05) contrast(1.08)}
.salon-service__body{
  padding:24px 22px 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.salon-service__title{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:22px;
  letter-spacing:-.005em;
  line-height:1.2;
  color:var(--bone);
}
.salon-service__title em{font-style:italic;color:var(--gold);font-weight:300}
.salon-service__desc{
  font-size:13px;
  color:var(--bone-muted);
  line-height:1.55;
  flex:1;
}
.salon-service__cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  font-family:var(--ff-ui);
  font-weight:500;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  background:transparent;
  color:var(--gold);
  border:1px solid var(--gold-line);
  transition:background .35s var(--ease),color .35s var(--ease),border-color .35s var(--ease);
}
.salon-service__cta:hover{background:var(--gold);color:var(--noir);border-color:var(--gold)}
@media (max-width:1024px){
  .salon-services{grid-template-columns:repeat(3,1fr);gap:20px}
}
@media (max-width:768px){
  .salon-services{grid-template-columns:1fr !important;gap:18px !important;max-width:440px !important;margin:0 auto !important}
  .salon-service{width:100%}
  .salon-service__body{padding:22px 20px 22px}
  .salon-service__title{font-size:22px}
}
.coming-soon{
  text-align:center;
  padding:80px 40px;
  border:1px solid var(--gold-line);
  background:rgba(201,168,106,.03);
  max-width:720px;
  margin:80px auto 0;
}
.coming-soon__eyebrow{
  font-family:var(--ff-ui);
  font-size:11px;
  font-weight:500;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:20px;
}
.coming-soon__title{
  font-family:var(--ff-display);
  font-weight:300;
  font-size:clamp(28px,3vw,40px);
  line-height:1.15;
  margin-bottom:16px;
}
.coming-soon__title em{font-style:italic;color:var(--gold)}
.coming-soon__text{color:var(--bone-muted);max-width:48ch;margin:0 auto 28px;line-height:1.6}

/* ============ BOTTOM NAV (mobile) ============ */
.bottom-nav{display:none}
@media (max-width:768px){
  .bottom-nav{
    display:flex;
    position:fixed;
    bottom:0;left:0;right:0;
    z-index:200;
    background:rgba(10,10,10,.96);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-top:1px solid rgba(201,168,106,.18);
    padding:6px 0 calc(8px + env(safe-area-inset-bottom));
    align-items:flex-end;
  }
  .bottom-nav__item{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    gap:4px;
    padding:8px 4px 4px;
    color:rgba(250,250,250,.55);
    font-size:10px;
    font-weight:500;
    letter-spacing:.12em;
    text-transform:uppercase;
    text-decoration:none;
    transition:color .3s var(--ease);
    min-height:54px;
  }
  .bottom-nav__item:hover,
  .bottom-nav__item:active,
  .bottom-nav__item[aria-current="page"]{color:var(--gold)}
  .bottom-nav__item svg{
    width:22px;height:22px;
    stroke-width:1.4;
    color:currentColor;
  }
  .bottom-nav__item--cta{
    color:var(--gold);
    position:relative;
  }
  .bottom-nav__cta-icon{
    width:58px;height:58px;
    background:var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px -6px rgba(201,168,106,.55);
    margin-top:-28px;
    margin-bottom:2px;
    border:3px solid #0A0A0A;
    transition:transform .3s var(--ease),background .3s var(--ease);
  }
  .bottom-nav__cta-icon svg{
    width:26px;height:26px;
    color:var(--noir);
    stroke-width:1.8;
  }
  .bottom-nav__item--cta:active .bottom-nav__cta-icon{transform:scale(.94)}
  .bottom-nav__cta-label{
    color:var(--gold);
    font-weight:600;
    margin-top:2px;
  }
  /* Espacio inferior para no tapar el footer */
  body{padding-bottom:82px}
  body{padding-bottom:calc(82px + env(safe-area-inset-bottom))}
}

/* ============ FOOTER ============ */
.site-footer{
  padding:80px var(--pad-x) 32px;
  border-top:1px solid var(--bone-line);
  background:var(--noir);
  color:var(--bone);
}
.site-footer__inner{
  max-width:var(--container);
  margin:0 auto;
}
.site-footer__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:60px;
  padding-bottom:60px;
  border-bottom:1px solid var(--bone-line);
}
.site-footer__col{display:flex;flex-direction:column;gap:18px}
.site-footer__brand-block{display:flex;flex-direction:column;gap:18px}
.site-footer__brand-logo{display:flex;align-items:center;gap:14px}
.site-footer__brand-logo img{height:46px;width:auto}
.site-footer__brand{font-family:var(--ff-display);font-size:22px;letter-spacing:.06em;line-height:1}
.site-footer__brand em{color:var(--gold);font-style:italic;font-weight:300}
.site-footer__tagline{
  font-family:var(--ff-display);
  font-style:italic;
  font-weight:300;
  font-size:17px;
  line-height:1.4;
  color:var(--bone-muted);
  max-width:30ch;
}
.site-footer__addr{
  font-size:14px;
  line-height:1.65;
  color:var(--bone-muted);
}
.site-footer__addr strong{color:var(--bone);font-weight:500;display:block;margin-bottom:4px}
.site-footer__heading{
  font-family:var(--ff-ui);
  font-size:11px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}
.site-footer__list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.site-footer__list a{
  font-size:14px;
  color:var(--bone-muted);
  transition:color .3s var(--ease);
}
.site-footer__list a:hover{color:var(--gold)}
.site-footer__contact-line{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:14px;
  line-height:1.5;
  color:var(--bone-muted);
}
.site-footer__contact-line strong{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:18px;
  color:var(--bone);
  letter-spacing:-.005em;
}
.site-footer__contact-line a{transition:color .3s var(--ease)}
.site-footer__contact-line a:hover{color:var(--gold)}
.site-footer__social{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:8px;
}
.site-footer__social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border:1px solid var(--bone-line);
  color:var(--bone);
  transition:border-color .3s var(--ease),color .3s var(--ease),background .3s var(--ease);
}
.site-footer__social a:hover{border-color:var(--gold);color:var(--gold);background:rgba(201,168,106,.05)}
.site-footer__social svg{width:16px;height:16px}
.site-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  padding-top:28px;
}
.site-footer__copy{
  font-size:12px;
  color:var(--bone-muted);
  letter-spacing:.04em;
}
.site-footer__copy em{font-style:normal;color:var(--gold);font-family:var(--ff-display)}
.site-footer__legal-links{display:flex;gap:24px;flex-wrap:wrap}
.site-footer__legal-links a{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--bone-muted);
  transition:color .3s var(--ease);
}
.site-footer__legal-links a:hover{color:var(--gold)}

@media (max-width:1024px){
  .site-footer__grid{grid-template-columns:1fr 1fr;gap:40px}
}
@media (max-width:600px){
  .site-footer__grid{grid-template-columns:1fr;gap:40px}
  .site-footer__bottom{flex-direction:column;align-items:flex-start;gap:14px;text-align:left}
}

/* ============ ANIMATIONS ============ */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.fade-up.is-in{opacity:1;transform:translateY(0)}
.fade-up[data-delay="1"]{transition-delay:.08s}
.fade-up[data-delay="2"]{transition-delay:.16s}
.fade-up[data-delay="3"]{transition-delay:.24s}
.fade-up[data-delay="4"]{transition-delay:.32s}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .fade-up{opacity:1;transform:none}
}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
  .equipo__grid{grid-template-columns:repeat(3,1fr)}
  .servicios__inner{gap:60px}
  .resenas__stats{gap:48px}
  .resenas__grid{grid-template-columns:1fr;max-width:680px;margin:0 auto}
  .salon-services{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:768px){
  :root{
    --pad-x:20px;
    --pad-y:clamp(64px,9vh,96px);
  }
  .site-header{padding:14px 20px;background:rgba(10,10,10,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom-color:var(--bone-line);z-index:1000}
  .logo{gap:10px;font-size:16px}
  .logo img{height:32px}
  .logo__text{font-size:16px}
  .nav{
    position:fixed!important;
    inset:0!important;
    background:rgba(8,8,8,.99)!important;
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    flex-direction:column!important;
    justify-content:center!important;
    align-items:center!important;
    gap:32px!important;
    padding:80px 24px 40px!important;
    transform:translateX(100%);
    transition:transform .45s var(--ease);
    z-index:998!important;
    width:100vw;
    height:100vh;
    height:100dvh;
    margin:0!important;
  }
  .nav.is-open{transform:translateX(0)}
  .nav a{
    font-family:var(--ff-display)!important;
    font-weight:400!important;
    font-size:32px!important;
    letter-spacing:-.01em!important;
    text-transform:none!important;
    color:var(--bone)!important;
    padding:8px 16px!important;
  }
  .nav a::after{display:none!important}
  .nav a:hover,
  .nav a[aria-current="page"]{color:var(--gold)!important}
  .nav-actions{gap:8px;z-index:999;position:relative}
  .nav-actions .btn--sm{padding:10px 18px;font-size:11px;letter-spacing:.14em}
  .menu-toggle{display:flex!important;z-index:1001;position:relative}
  .section-light::before,
  .section-light::after{display:none}
  .hero{min-height:90vh;padding-top:72px}
  .hero__bg img{filter:saturate(.85) contrast(1.05) brightness(.7)}
  .hero__bg::after{
    background:linear-gradient(180deg,rgba(10,10,10,.7) 0%,rgba(10,10,10,.55) 40%,rgba(10,10,10,.7) 70%,rgba(10,10,10,.98) 100%);
  }
  .hero__bg::before{
    background:radial-gradient(ellipse at 50% 50%,rgba(10,10,10,.3) 0%,rgba(10,10,10,.6) 80%,rgba(10,10,10,.9) 100%);
  }
  .hero__meta{
    position:absolute;
    left:0;right:0;
    bottom:0;
    flex-direction:column;
    align-items:stretch;
    margin:0;
    gap:0;
    padding:0;
  }
  .hero__rating{
    width:100%;
    flex-wrap:nowrap;
    overflow:hidden;
    padding:14px 0;
    border-top:1px solid rgba(201,168,106,.18);
    border-bottom:1px solid rgba(201,168,106,.18);
    background:rgba(10,10,10,.55);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    gap:0;
    font-size:13px;
    letter-spacing:.08em;
    white-space:nowrap;
    mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
  }
  .hero__rating-track{
    display:inline-flex;
    align-items:center;
    gap:28px;
    white-space:nowrap;
    animation:heroRatingMarquee 20s linear infinite;
    width:max-content;
  }
  .hero__rating-track > span{flex-shrink:0}
  .hero__rating-gap{color:var(--gold);opacity:.5;padding-inline:8px}
  .hero__rating-divider{display:none}
  @keyframes heroRatingMarquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
  }
  .hero__addr{display:none}
  .hero__ctas{margin-bottom:80px}
  .hero__ctas{margin-bottom:24px}
  .servicios__inner{grid-template-columns:1fr;gap:32px}
  .servicios__media{aspect-ratio:4/3;max-height:60vh}
  .equipo__grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .galeria__grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .galeria__item:nth-child(1){grid-column:1/-1;grid-row:auto}
  .resenas__stats{gap:24px;padding-block:32px;margin-bottom:40px}
  .contacto__grid{grid-template-columns:1fr;gap:32px}
  .salon-services{grid-template-columns:repeat(2,1fr);gap:12px}
  .section-head{margin-bottom:40px;gap:18px}
  .servicios__list li{font-size:17px;padding:16px 0}
  .servicios__list li span{font-size:10px}
  .h1{font-size:clamp(40px,12vw,68px)}
  .h2{font-size:clamp(28px,7vw,44px);margin-bottom:18px}
  .hero__title{margin-bottom:20px}
  .hero__sub{font-size:15px;margin-bottom:28px}
  .btn{padding:14px 24px;font-size:12px;letter-spacing:.16em}
  .btn--sm{padding:10px 18px;font-size:11px}
}

@media (max-width:480px){
  .hero{min-height:88vh}
  .hero__title{font-size:clamp(40px,12vw,60px);max-width:none}
  .hero__sub{max-width:none}
  .hero__ctas{flex-direction:column;align-items:stretch;gap:10px}
  .hero__ctas .btn{width:100%}
  .hero__rating{font-size:11px;letter-spacing:.06em}
  .equipo__grid{grid-template-columns:1fr;max-width:340px;margin:0 auto;gap:28px}
  .galeria__grid{grid-template-columns:1fr;gap:8px}
  .galeria__item:nth-child(1){grid-column:auto}
  .salon-services{grid-template-columns:1fr;max-width:360px;margin:0 auto;gap:14px}
  .resenas__grid{gap:18px}
  .review{padding:24px 22px}
  .review__text{font-size:16px}
  .stat__num{font-size:42px}
  .home-services{gap:64px}
  .home-services__title{font-size:28px}
  .home-services__sub{font-size:13px}
  .contact-item__value{font-size:20px}
  .faq__btn{font-size:17px;padding:22px 4px;gap:14px}
  .faq__answer-inner{font-size:14px;padding-bottom:24px}
}
