@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:   #0C0C0C;
  --dark2:  #161616;
  --dark3:  #1F1F1F;
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  --cream:  #F5F0E8;
  --muted:  rgba(245,240,232,.5);
  --border: 1px solid rgba(201,168,76,.2);
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--cream); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.65; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 90px; display: flex; align-items: center;
  padding: 0 3rem; gap: 2rem;
  background: rgba(12,12,12,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .4s, border-bottom .4s;
}
#navbar.scrolled {
  background: rgba(12,12,12,.75);
  border-bottom: var(--border);
}
.nav-logo { flex: 0 0 auto; }
.nav-logo img { height: 110px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  flex: 0 0 auto;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 2px;
  padding: 10px 26px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.ham {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all .3s; }
.ham.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.active span:nth-child(2) { opacity: 0; }
.ham.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
#mobMenu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 99;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
#mobMenu.open { display: flex; }
.mob-link {
  font-size: 24px; font-family: 'Playfair Display', serif; color: var(--cream);
  text-decoration: none; letter-spacing: .04em; transition: color .2s;
}
.mob-link:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center 40%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,.45) 0%, rgba(12,12,12,.65) 55%, rgba(12,12,12,1) 100%);
}
.hero-inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 800px; padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: .5;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.08;
  color: var(--cream); letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; color: var(--muted);
  margin-bottom: 2.5rem; display: block;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--dark);
  border: none; padding: 14px 36px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none;
  border-radius: 2px; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,240,232,.3); padding: 14px 36px;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none;
  border-radius: 2px; display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: var(--gold); opacity: .5;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.6)} }

/* ── TRUST BAR ── */
.trust-bar {
  background: #242320; border-top: 1px solid rgba(201,168,76,.12); border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 1.5rem 3rem;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: 0 3rem;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.trust-item strong { color: var(--cream); font-size: 22px; font-family: 'Playfair Display', serif; font-weight: 700; display: block; }
.trust-sep { width: 1px; height: 32px; background: rgba(201,168,76,.2); }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.sec-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.sec-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--cream); letter-spacing: -.02em; line-height: 1.15; margin-bottom: .75rem;
}
.sec-title em { color: var(--gold); font-style: italic; }
.sec-sub { font-size: 14px; color: var(--muted); max-width: 520px; line-height: 1.8; margin-bottom: 3rem; }

/* ── MARQUEE BRANDS ── */
.marquee-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 1rem 0; overflow: hidden;
}
.marquee-eyebrow {
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,240,232,.25); text-align: center; margin-bottom: .75rem;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap; flex-shrink: 0;
  animation: marqueeScroll 55s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.m-brand { color: rgba(245,240,232,.4); transition: color .3s; }
.m-brand:hover { color: rgba(201,168,76,.8); }
.m-sep { color: rgba(201,168,76,.2); font-size: .8rem; }
.pl-serif { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.pl-italic { font-style: italic; }
.pl-caps { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }

/* ── SERVICIOS ── */
#servicios { background: var(--dark); }
.svc-grid { display: flex; flex-direction: column; }
/* Tabs */
.svc-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.svc-tab {
  background: none; border: 1px solid rgba(245,240,232,.15); color: var(--muted);
  padding: 9px 22px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; cursor: pointer; border-radius: 50px;
  transition: all .2s;
}
.svc-tab:hover { border-color: var(--gold); color: var(--gold); }
.svc-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }

/* Cards grid */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card-photo {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.svc-card-photo.hidden { display: none; }
.svc-card-bg {
  position: absolute; inset: 0; background-size: cover;
  filter: grayscale(100%);
  transition: transform .6s ease, filter .5s ease;
}
.svc-card-photo:hover .svc-card-bg { transform: scale(1.05); filter: grayscale(60%); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,.92) 0%, rgba(12,12,12,.3) 60%, rgba(12,12,12,.1) 100%);
}
.svc-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
}
.svc-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 10px; margin-bottom: .75rem; border-radius: 2px;
}
.svc-card-name {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin-bottom: .35rem; line-height: 1.2;
}
.svc-card-price { font-size: 13px; color: rgba(245,240,232,.6); margin-bottom: 1rem; }
.svc-card-btn {
  background: none; border: 1px solid rgba(245,240,232,.4); color: var(--cream);
  padding: 8px 18px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; cursor: pointer; border-radius: 2px;
  transition: background .2s, border-color .2s;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s, background .2s;
}
.svc-card-photo:hover .svc-card-btn { opacity: 1; transform: translateY(0); }
.svc-card-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.svc-num, .svc-info, .svc-card-left, .svc-desc, .svc-divider { display: none; }

/* ── EQUIPO ── */
#equipo { background: var(--dark2); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-img-wrap {
  position: relative; overflow: hidden; margin-bottom: 1.25rem;
  border: var(--border);
}
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  filter: grayscale(20%) contrast(1.05);
  display: block;
  transition: filter .4s, transform .5s;
}
.team-img-wrap:hover .team-photo { filter: grayscale(0%) contrast(1.1); transform: scale(1.04); }
.team-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(12,12,12,.9) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.team-img-wrap:hover .team-hover { opacity: 1; transform: translateY(0); }
.team-res-btn {
  background: var(--gold); color: var(--dark); border: none;
  padding: 10px 18px; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; cursor: pointer; border-radius: 2px; width: 100%;
  transition: background .2s;
}
.team-res-btn:hover { background: var(--gold2); }
.team-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--dark3); border: 1px solid rgba(201,168,76,.1);
  display: flex; align-items: flex-end; justify-content: flex-start;
  margin-bottom: 1.25rem; padding: 1.25rem;
  font-family: 'Playfair Display', serif; font-size: 3rem; font-style: italic;
  color: rgba(201,168,76,.15); line-height: 1; font-weight: 700;
}
.team-name {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin-bottom: .25rem;
}
.team-role { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.team-exp { font-size: 12px; color: var(--muted); }

/* ── EXPERIENCE STRIP ── */
.exp-strip {
  background: var(--gold); padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: center;
}
.exp-strip-inner {
  max-width: 1100px; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.exp-strip-text {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic; color: var(--dark); font-weight: 400;
}
.exp-strip-cta {
  background: var(--dark); color: var(--gold);
  border: none; padding: 12px 30px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none;
  border-radius: 2px; white-space: nowrap;
  transition: background .2s;
}
.exp-strip-cta:hover { background: var(--dark2); }

/* ── RESEÑAS ── */
#resenas { background: var(--dark2); padding: 5rem 0 4rem; overflow: hidden; }
.resenas-header { text-align: center; padding: 0 2rem 3rem; }
.resenas-title-script {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold); line-height: 1; margin-bottom: .2rem;
}
.resenas-title-bold {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream); letter-spacing: .05em; line-height: 1; margin-bottom: 1rem;
}
.resenas-stars-row { font-size: 12px; color: var(--gold); letter-spacing: .1em; }

.resenas-track { display: flex; overflow: hidden; margin-bottom: 1rem; }
.resenas-inner {
  display: flex; gap: 1rem; flex-shrink: 0;
  animation: marqueeScroll 40s linear infinite;
}
.resenas-reverse { animation-direction: reverse; }
.resenas-track:hover .resenas-inner { animation-play-state: paused; }

.rc {
  flex-shrink: 0; width: 320px;
  background: var(--dark3); border: 1px solid rgba(201,168,76,.12);
  padding: 1.5rem; border-radius: 4px;
  font-size: 13px; color: rgba(201,168,76,.8); letter-spacing: .05em;
}
.rc p { color: rgba(245,240,232,.65); font-style: italic; font-size: 13px; line-height: 1.75; margin: .6rem 0 1rem; font-family: 'Cormorant Garamond', serif; font-size: 15px; }
.rc span { font-size: 11px; font-weight: 600; color: var(--cream); letter-spacing: .08em; text-transform: uppercase; }

/* ── FAQ ── */
#faq { background: #242320; }
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid rgba(245,240,232,.08); }
.faq-item:first-child { border-top: 1px solid rgba(245,240,232,.08); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--cream);
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-family: 'Playfair Display', serif; font-weight: 600;
  cursor: pointer; text-align: left; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .3s; font-family: 'Inter', sans-serif; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 1.4rem; }

/* ── MAPA ── */
#ubicacion { background: var(--dark2); padding: 6rem 3rem; }
.mapa-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.mapa-datos { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.mapa-dato { display: flex; gap: 1rem; align-items: flex-start; }
.mapa-icon { display: none; }
.mapa-dato-title { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.mapa-dato-val { font-size: 14px; color: var(--muted); line-height: 1.7; }
.btn-maps {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  padding: 11px 28px; border-radius: 2px; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-maps:hover { background: var(--gold); color: var(--dark); }
.mapa-embed {
  height: 400px; border: var(--border); overflow: hidden;
  filter: grayscale(100%) invert(90%) contrast(90%);
  transition: filter .3s;
}
.mapa-embed:hover { filter: grayscale(0%) invert(0%) contrast(100%); }

/* ── RESERVAS MODAL ── */
#resBg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
#resBg.open { display: flex; }
.res-box {
  background: #111; border: 1px solid rgba(201,168,76,.2);
  width: 95vw; max-width: 1100px; height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  position: relative;
}
.res-close-btn {
  position: absolute; top: .75rem; right: 1.25rem; z-index: 10;
  background: none; border: none; color: rgba(245,240,232,.35);
  font-size: 1.75rem; line-height: 1; cursor: pointer; transition: color .2s;
}
.res-close-btn:hover { color: var(--cream); }
.res-hdr {
  text-align: center; padding: 1.25rem 2rem .9rem; flex-shrink: 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.res-logo-img { height: 38px; width: auto; margin-bottom: .35rem; }
.res-main-ttl {
  font-family: 'Playfair Display', serif; font-size: clamp(1rem,2.2vw,1.5rem);
  font-weight: 700; color: var(--cream); letter-spacing: -.01em;
}
.res-layout {
  display: grid; grid-template-columns: 1fr 290px;
  flex: 1; overflow: hidden;
}
.res-left {
  overflow-y: auto; padding: 1.5rem 1.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,.08);
}
.res-left::-webkit-scrollbar { width: 3px; }
.res-left::-webkit-scrollbar-thumb { background: rgba(201,168,76,.25); }
.res-right { overflow-y: auto; padding: 1.25rem; }
.step-block { margin-bottom: 2rem; }
.step-ttl {
  display: flex; align-items: center; gap: .5rem;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid rgba(201,168,76,.12);
}
/* Service picker */
.svc-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.svc-pick-card {
  background: var(--dark2); border: 1px solid rgba(245,240,232,.07);
  cursor: pointer; transition: border-color .2s;
  display: flex; flex-direction: column;
}
.svc-pick-card:hover { border-color: rgba(201,168,76,.35); }
.svc-pick-card.selected { border-color: var(--gold); }
.svc-pick-card img { width: 100%; height: 80px; object-fit: cover; filter: grayscale(50%); transition: filter .3s; }
.svc-pick-card:hover img, .svc-pick-card.selected img { filter: grayscale(0%); }
.spc-info { padding: .55rem .65rem .35rem; flex: 1; }
.spc-name { font-family: 'Playfair Display', serif; font-size: .85rem; font-weight: 600; color: var(--cream); margin-bottom: .12rem; }
.spc-meta { font-size: 10px; color: var(--muted); margin-bottom: .3rem; line-height: 1.4; }
.spc-price { font-size: .95rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.spc-btn {
  width: 100%; background: var(--dark3); border: none; border-top: 1px solid rgba(245,240,232,.07);
  color: rgba(245,240,232,.45); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; padding: 7px; cursor: pointer; transition: background .2s, color .2s;
}
.svc-pick-card:hover .spc-btn, .svc-pick-card.selected .spc-btn { background: var(--gold); color: var(--dark); }
/* Barber picker */
.barber-pick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.barber-pick-card {
  background: var(--dark2); border: 1px solid rgba(245,240,232,.07);
  cursor: pointer; transition: border-color .2s; text-align: center;
  display: flex; flex-direction: column;
}
.barber-pick-card:hover { border-color: rgba(201,168,76,.35); }
.barber-pick-card.selected { border-color: var(--gold); }
.barber-pick-card img { width: 100%; height: 130px; object-fit: cover; object-position: center 20%; filter: grayscale(35%); transition: filter .3s; }
.barber-pick-card:hover img, .barber-pick-card.selected img { filter: grayscale(0%); }
.bpc-name { font-family: 'Playfair Display', serif; font-size: .8rem; font-weight: 600; color: var(--cream); margin: .45rem .4rem .1rem; }
.bpc-role { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .12rem; }
.bpc-spec { font-size: 10px; color: var(--muted); margin: 0 .4rem .45rem; line-height: 1.4; }
.bpc-btn { margin-top: auto; font-size: 9px; }
.barber-pick-card:hover .bpc-btn, .barber-pick-card.selected .bpc-btn { background: var(--gold); color: var(--dark); }
/* Calendar & slots */
.datetime-pick { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.cal-wrapper { background: var(--dark2); border: 1px solid rgba(245,240,232,.07); padding: .75rem; }
.cal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: .65rem; }
.cal-nav-btn {
  background: none; border: 1px solid rgba(245,240,232,.12); color: var(--cream);
  width: 26px; height: 26px; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.cal-month { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); }
.cal-days-row { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; margin-bottom: .2rem; }
.cal-day-name { font-size: 8px; color: rgba(245,240,232,.35); padding: 2px 0; letter-spacing: .04em; text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 11px; border-radius: 2px; cursor: pointer; transition: background .15s, color .15s;
  color: rgba(245,240,232,.55);
}
.cal-day:hover:not(.cal-empty):not(.cal-past):not(.cal-closed) { background: rgba(201,168,76,.2); color: var(--gold); }
.cal-day.cal-today { color: var(--gold); font-weight: 700; }
.cal-day.cal-selected { background: var(--gold); color: var(--dark); font-weight: 700; }
.cal-day.cal-past, .cal-day.cal-closed { color: rgba(245,240,232,.18); cursor: not-allowed; }
.cal-empty { cursor: default; }
.slots-wrapper { background: var(--dark2); border: 1px solid rgba(245,240,232,.07); padding: .75rem; }
.slots-label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .65rem; }
.slots-placeholder { font-size: 11px; color: rgba(245,240,232,.3); padding: .4rem 0; }
.slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .35rem; }
.slot-btn {
  padding: 6px 3px; background: var(--dark3); border: 1px solid rgba(245,240,232,.07);
  color: rgba(245,240,232,.55); font-size: 11px; cursor: pointer;
  font-family: 'Inter', sans-serif; text-align: center; transition: all .15s;
  position: relative;
}
.slot-btn::after { content: '●'; font-size: 5px; color: #4CAF50; position: absolute; top: 3px; right: 3px; line-height: 1; }
.slot-btn.booked { color: rgba(245,240,232,.18); cursor: not-allowed; border-color: transparent; background: transparent; }
.slot-btn.booked::after { color: #c0392b; }
.slot-btn.selected { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700; }
.slot-btn.selected::after { display: none; }
.slot-btn:hover:not(.booked):not(.selected) { border-color: var(--gold); color: var(--gold); }
.slots-legend { display: flex; gap: 1rem; margin-top: .5rem; font-size: 9px; color: rgba(245,240,232,.3); }
.leg-avail::before { content: '● '; color: #4CAF50; }
.leg-busy::before { content: '● '; color: #c0392b; }
/* Form fields */
.res-label { display: block; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; margin-top: 1rem; }
.res-input, .res-select, .res-textarea {
  width: 100%; background: var(--dark3); border: 1px solid rgba(201,168,76,.18);
  color: var(--cream); padding: 10px 13px; font-size: 13px; font-family: 'Inter', sans-serif;
  outline: none; border-radius: 0; transition: border-color .2s;
}
.res-input:focus, .res-select:focus, .res-textarea:focus { border-color: var(--gold); }
.res-select option { background: var(--dark2); }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.res-textarea { resize: vertical; min-height: 80px; }
.res-error { color: #e05555; font-size: 11px; margin-top: .75rem; min-height: .9rem; }
/* Summary */
.res-summary-box { background: var(--dark2); border: 1px solid rgba(201,168,76,.15); padding: 1.1rem; }
.sum-title { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; padding-bottom: .55rem; border-bottom: 1px solid rgba(201,168,76,.12); }
.sum-rows { display: flex; flex-direction: column; gap: .55rem; margin-bottom: .9rem; }
.sum-row { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; font-size: 11px; }
.sum-row span:first-child { color: var(--muted); flex-shrink: 0; }
.sum-row span:last-child { color: var(--cream); text-align: right; font-size: 11px; }
.sum-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: .7rem; border-top: 1px solid rgba(245,240,232,.1); font-size: 13px; font-weight: 700; color: var(--cream); }
.sum-total-row span:last-child { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.sum-note { font-size: 10px; color: rgba(245,240,232,.25); text-align: center; margin-top: .7rem; line-height: 1.5; }
/* Success */
.res-ok { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 2rem; flex: 1; text-align: center; }
.res-ok-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.res-ok-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); margin-bottom: .6rem; }
.res-ok-sub { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 4rem 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { margin-bottom: 3rem; }
.footer-logo { text-align: center; margin-bottom: 0; }
.footer-logo img { height: 220px; width: auto; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(245,240,232,.08);
  margin-bottom: 3rem;
}
.footer-col-title {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); font-weight: 700; margin-bottom: 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(245,240,232,.15);
}
.footer-col p, .footer-col a {
  font-size: 13px; color: rgba(245,240,232,.45); text-decoration: none;
  display: block; margin-bottom: .55rem; line-height: 1.6; transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(245,240,232,.15); border-radius: 2px;
  color: rgba(245,240,232,.4); transition: color .2s, border-color .2s;
  margin-bottom: 0;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(245,240,232,.08); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom span, .footer-bottom a { font-size: 11px; color: rgba(245,240,232,.25); text-decoration: none; letter-spacing: .06em; }
.footer-bottom a:hover { color: var(--gold); }

/* ── WA FLOAT ── */
#waFloat {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4); transition: transform .2s;
}
#waFloat:hover { transform: scale(1.1); }

/* ── CURSOR ── */
*, *::before, *::after { cursor: none !important; }
#cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
}
#cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.5); border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.25,.46,.45,.94), height .35s cubic-bezier(.25,.46,.45,.94), transform .08s linear;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 14px; height: 14px; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 52px; height: 52px; }

/* ── FADE IN ── */
.fade { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94); }
.fade.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .ham { display: flex; }
  #navbar { padding: 0 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .svc-cards { grid-template-columns: 1fr; }
  .press-logos { gap: 1.5rem; justify-content: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resenas-grid { grid-template-columns: 1fr; }
  .mapa-inner { grid-template-columns: 1fr; }
  .mapa-embed { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-inner { gap: 1.5rem; }
  .trust-sep { display: none; }
  .exp-strip-inner { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  /* Modal responsive */
  .res-box { width: 100%; height: 100dvh; border-left: none; border-right: none; }
  .res-layout { grid-template-columns: 1fr; }
  .res-right { border-top: 1px solid rgba(201,168,76,.1); }
  .svc-pick-grid { grid-template-columns: repeat(2,1fr); }
  .barber-pick-grid { grid-template-columns: repeat(2,1fr); }
  .datetime-pick { grid-template-columns: 1fr; }
}
