:root {
  --bg: #070705;
  --bg-alt: #0C0B08;
  --bg-alt2: #12100B;
  --text: #F2ECE1;
  --text-muted: #C2B8A6;
  --text-muted2: #ADA391;
  --text-muted3: #A39984;
  --border: #211B12;
  --border-strong: #2F2616;
  --border-btn: #4A3B22;
  --border-btn2: #3A2E1B;
  --gold: #C9A24A;
  --gold-light: #E8CE8B;
  --gold-lighter: #F4E3B5;
  --gold-grad: linear-gradient(135deg, #B8903C 0%, #E8CE8B 48%, #C9A24A 100%);
  --sel-bg: rgba(201, 162, 74, 0.10);
  --font-display: 'Cinzel', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --header-h: 72px;
  --pad-x: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold-lighter); }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn-lg { min-height: 56px; padding: 16px 34px; font-size: 13.5px; }
.btn-gold {
  background: var(--gold-grad);
  background-size: 160% 160%;
  color: #0A0906;
  box-shadow: 0 10px 30px -12px rgba(201, 162, 74, .7);
}
.btn-gold:hover { color: #0A0906; transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(232, 206, 139, .8); background-position: 100% 0; }
.btn-ghost {
  border-color: rgba(232, 206, 139, .45);
  color: var(--text);
  background: rgba(7, 7, 5, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-lighter); background: rgba(201, 162, 74, .12); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad-x);
  padding-top: env(safe-area-inset-top);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 5, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand-logo { width: 36px; height: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.2em; color: var(--gold-light); }
.brand-sub { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.62em; color: var(--text-muted); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav-link {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .85;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--gold-light); opacity: 1; }
.nav-link:hover::after { transform: scaleX(1); }
.btn-nav { min-height: 42px; padding: 10px 22px; font-size: 12px; }

@media (max-width: 900px) {
  .nav-link { display: none; } /* ponytail: one-page site, the Reservar CTA is the only nav that matters on mobile */
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #000 url("assets/media/hero-poster.jpg") center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(7,7,5,.25) 0%, rgba(7,7,5,.7) 70%, rgba(7,7,5,.92) 100%),
    linear-gradient(180deg, rgba(7,7,5,.7) 0%, rgba(7,7,5,.1) 22%, rgba(7,7,5,.35) 60%, var(--bg) 100%);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 28px) var(--pad-x) 140px;
}
.hero-emblem {
  width: clamp(92px, 11vw, 150px);
  height: auto;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  filter: drop-shadow(0 8px 30px rgba(201, 162, 74, .35));
  animation: evoRise 1.2s var(--ease) both;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(52px, 10vw, 138px);
  line-height: .95;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero-title em,
.section-title em,
.band-title em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .06em;
}
.hero-copy {
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: #E4DCCD;
  margin: 0 0 36px;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-fade { animation: evoRise 1s var(--ease) both; animation-delay: var(--d, 0s); }

.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(232, 206, 139, .18);
  background: linear-gradient(180deg, rgba(7,7,5,0), rgba(7,7,5,.6));
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 10px 24px;
  text-align: center;
}
.strip-item + .strip-item { border-left: 1px solid rgba(232, 206, 139, .12); }
.strip-item strong { font-family: var(--font-serif); font-weight: 500; font-size: clamp(20px, 2.2vw, 30px); color: var(--gold-light); line-height: 1.1; }
.strip-item span { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 700px) {
  .hero-inner { padding-bottom: 170px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item { padding: 14px 8px 14px 22px; align-items: flex-start; text-align: left; } /* left-aligned so the floating WhatsApp button never covers a label */
  .strip-item:nth-child(3) { border-left: none; }
  .strip-item:nth-child(n+3) { border-top: 1px solid rgba(232, 206, 139, .12); }
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow-lines { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold-light); margin-bottom: 22px; }
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); opacity: .7; flex-shrink: 0; }
@media (max-width: 480px) {
  .eyebrow-lines { font-size: 11px; letter-spacing: .24em; text-wrap: balance; line-height: 1.8; }
  .eyebrow-line { display: none; }
}

.section { padding: clamp(80px, 10vw, 140px) var(--pad-x); }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.section-note { max-width: 38ch; font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; }
.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.75; color: var(--text-muted); margin: 28px 0 0; max-width: 54ch; }
.center-row { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- Manifesto ---------- */
.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.manifesto-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 999px 999px 4px 4px; /* arch, echoes the mirror in the hero */
  border: 1px solid var(--border-btn2);
}
.manifesto-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.manifesto-media:hover img { transform: scale(1.04); }
.pillars { list-style: none; margin: 44px 0 0; padding: 0; display: grid; gap: 0; }
.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border-strong);
}
.pillar:last-child { border-bottom: 1px solid var(--border-strong); }
.pillar-num { font-family: var(--font-display); font-size: 20px; color: var(--gold); padding-top: 2px; }
.pillar h3 { font-family: var(--font-serif); font-weight: 600; font-size: 26px; margin: 0 0 4px; }
.pillar p { margin: 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; }

@media (max-width: 860px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-media { max-width: 420px; width: 100%; margin: 0 auto; }
}

/* ---------- Marquee ---------- */
@keyframes evoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: evoMarquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 206, 139, .55);
}
.marquee-track span { padding-right: 34px; }
.marquee-track .dot { color: var(--gold); -webkit-text-stroke: 0; font-size: .6em; align-self: center; }

/* ---------- Services menu ---------- */
.menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 5vw, 80px); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  width: 100%;
  padding: 26px 4px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: padding .3s var(--ease);
}
.menu-item::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.menu-item:hover::before, .menu-item:focus-visible::before { transform: scaleX(1); }
.menu-item:hover { padding-left: 12px; }
.menu-name { font-family: var(--font-serif); font-weight: 600; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15; }
.menu-price { font-size: 19px; font-weight: 800; color: var(--gold-light); white-space: nowrap; align-self: baseline; }
.menu-desc { grid-column: 1; font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.menu-meta {
  grid-column: 2;
  justify-self: end;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-muted3);
  white-space: nowrap;
}
.menu-cta { color: var(--gold); opacity: 0; margin-left: 8px; transition: opacity .3s; }
.menu-item:hover .menu-cta { opacity: 1; }
@media (max-width: 760px) { .menu { grid-template-columns: 1fr; } .menu-cta { opacity: 1; } }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 22px); }
.work-item { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--border-strong); background: var(--bg); }
.work-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); transition: transform 1.2s var(--ease), filter .6s; }
.work-item:hover img { transform: scale(1.05); filter: none; }
.work-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(7,7,5,.9));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
@media (max-width: 700px) {
  .work-grid { grid-template-columns: repeat(3, 78%); overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--pad-x) * -1); padding: 0 var(--pad-x) 8px; scrollbar-width: none; }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-item { scroll-snap-align: center; }
}

/* ---------- Booking ---------- */
.booking-wrap { max-width: 880px; margin: 0 auto; }
.booking-head { text-align: center; margin-bottom: 44px; }
.booking-head .section-title { margin: 0 0 16px; }
.booking-head .section-note { margin: 0 auto; }

.steps-bar { display: flex; gap: 8px; margin-bottom: 28px; }
.step-item { flex: 1; min-width: 0; }
.step-bar-line { height: 2px; margin-bottom: 12px; border-radius: 2px; transition: background .3s; }
.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 560px) { .step-label { font-size: 10px; letter-spacing: .08em; } }

.booking-card {
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--bg-alt2), var(--bg));
  padding: clamp(22px, 3.5vw, 44px);
  border-radius: 6px;
  box-shadow: 0 30px 80px -40px rgba(201, 162, 74, .25);
}
.step-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; color: var(--gold); margin-bottom: 10px; }
.step-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 3.4vw, 38px); margin: 0 0 24px; line-height: 1.1; }
.step-note { font-size: 14px; color: var(--text-muted); margin: 0 0 22px; }

.option-list { display: flex; flex-direction: column; gap: 10px; }
.service-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 74px;
  transition: border-color .2s;
}
.service-pick:hover { border-color: var(--gold) !important; }
.service-pick-name { font-family: var(--font-serif); font-weight: 600; font-size: 23px; color: var(--text); }
.service-pick-desc { font-size: 14px; color: var(--text-muted2); margin-top: 3px; }
.service-pick-right { text-align: right; flex-shrink: 0; }
.service-pick-price { font-size: 17px; font-weight: 800; color: var(--gold-light); }
.service-pick-time { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--text-muted3); margin-top: 4px; }

.barber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.barber-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  border-radius: 4px;
  cursor: pointer;
  min-height: 124px;
  font-family: var(--font-sans);
  transition: border-color .2s;
}
.barber-pick:hover { border-color: var(--gold) !important; }
.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-light);
}
.barber-pick-name { font-size: 16px; font-weight: 700; color: var(--text); }
.barber-pick-role { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; color: var(--text-muted2); }

.day-scroller { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 26px; scrollbar-width: thin; }
.day-pick {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 4px;
  cursor: pointer;
  min-width: 74px;
  min-height: 78px;
  font-family: var(--font-sans);
}
.day-pick:hover { border-color: var(--gold) !important; }
.day-dow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--text-muted2); }
.day-num { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--text); line-height: 1; }
.day-mon { font-size: 10.5px; font-weight: 600; color: var(--text-muted3); }

.slot-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 12px; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; margin-bottom: 26px; }
.time-pick {
  padding: 12px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  min-height: 48px;
}
.time-pick:hover { border-color: var(--gold) !important; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--text-muted2); }
.field-input {
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px; /* 16px stops iOS zoom-on-focus */
  min-height: 52px;
}
.field-input::placeholder { color: #7D7465; }
.field-input:focus { border-color: var(--gold); outline: none; }

.summary-box { padding: 22px; background: var(--bg-alt); border: 1px solid var(--border-strong); border-radius: 4px; margin-bottom: 24px; }
.summary-title { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15.5px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .muted { color: var(--text-muted2); }
.summary-row .value { text-align: right; }
.summary-total { color: var(--gold-light); font-weight: 800; }

.wa-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--text-muted2); margin-bottom: 12px; }
.wa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.wa-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  background: var(--sel-bg);
  border: 1px solid var(--gold);
  border-radius: 4px;
  min-height: 66px;
  transition: background .2s;
}
.wa-target:hover { background: rgba(201, 162, 74, .2); }
.wa-target-name { font-size: 16px; font-weight: 800; color: var(--gold-light); }
.wa-target-phone { font-size: 12px; color: var(--text-muted2); }

.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-back { background: transparent; border: 1px solid var(--border-btn); color: var(--text-muted); }
.btn-back:hover { border-color: var(--gold); color: var(--gold-light); }
#next-btn { box-shadow: none; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.team-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px 26px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  transition: border-color .3s, transform .3s var(--ease);
}
.team-card:hover { border-color: var(--border-btn); transform: translateY(-4px); }
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(232,206,139,.18), transparent 70%);
}
.team-name { font-family: var(--font-serif); font-weight: 600; font-size: 28px; color: var(--text); line-height: 1.1; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--gold); margin-top: 6px; }
.team-phone {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}
.team-phone small { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted2); }

/* ---------- Band ---------- */
.band {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(7,7,5,.35), rgba(7,7,5,.85) 75%), linear-gradient(180deg, var(--bg), transparent 25%, transparent 75%, var(--bg));
}
.band-inner { padding: 80px var(--pad-x); display: flex; flex-direction: column; align-items: center; }
.band-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(48px, 8vw, 112px); line-height: 1; margin: 0 0 36px; text-shadow: 0 4px 30px rgba(0,0,0,.7); }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); border-top: 1px solid var(--border); }
.visit-info { padding: clamp(64px, 8vw, 120px) var(--pad-x); }
.visit-info .section-title { font-size: clamp(38px, 5vw, 64px); line-height: 1.05; margin: 0 0 14px; }
.visit-comuna { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; }
.visit-block { display: flex; flex-direction: column; gap: 32px; max-width: 460px; }
.visit-label { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted3); margin-bottom: 12px; }
.schedule-row { display: flex; justify-content: space-between; gap: 16px; font-size: 17px; padding: 10px 0; border-bottom: 1px solid var(--border-strong); }
.schedule-row .muted { color: var(--text-muted); }
.visit-fine { font-size: 14px; line-height: 1.6; color: var(--text-muted2); margin: 14px 0 0; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.visit-map { min-height: 420px; background: var(--bg-alt); display: flex; }
.visit-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(1) invert(.92) contrast(.9) sepia(.25);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 44px var(--pad-x) calc(44px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted3);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 34px; height: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-light); }
@media (max-width: 560px) { .site-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); } }

/* ---------- Floating WhatsApp CTA + barber picker ---------- */
.wa-widget {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: calc(clamp(14px, 3vw, 28px) + env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* the hidden menu still takes layout space; don't let it swallow page clicks */
}
.wa-float, .wa-menu.is-open { pointer-events: auto; }
.wa-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #1FAF54;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, background 0.18s ease;
}
.wa-float:hover { background: #24C960; transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float .wa-icon-close { display: none; }
.wa-float.is-open .wa-icon-logo { display: none; }
.wa-float.is-open .wa-icon-close { display: block; }

.wa-menu {
  width: min(84vw, 300px);
  padding: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-btn);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.wa-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-menu-head { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 12px; }
.wa-menu-list { display: flex; flex-direction: column; gap: 6px; }
.wa-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text);
}
.wa-menu-item:hover { background: var(--sel-bg); border-color: var(--gold); color: var(--text); }
.wa-menu-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-btn);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-light);
}
.wa-menu-info { display: flex; flex-direction: column; min-width: 0; }
.wa-menu-name { font-size: 15px; font-weight: 700; }
.wa-menu-phone { font-size: 12px; color: var(--text-muted2); margin-top: 2px; }
.wa-menu-foot {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 560px) {
  .wa-float { padding: 15px; }
  .wa-float > span { display: none; }
}

/* ---------- Motion ---------- */
@keyframes evoRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

section[id] { scroll-margin-top: calc(var(--header-h) - 1px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}
