/* ============================================================
   AfterHour Barbershop
   Palette: warm ink · antique gold · bone
   ============================================================ */

:root {
  --ink:    #0C0B08;
  --ink-2:  #161310;
  --ink-3:  #201D18;
  --bone:   #EDE6D8;
  --bone-2: #9A8E7A;
  --bone-3: #5A5248;
  --gold:   #C4A26A;
  --gold-h: #D4B278;
  --border: rgba(237,230,216,0.09);
  --border-h: rgba(237,230,216,0.18);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Space Grotesk', system-ui, sans-serif;
  --ease:  cubic-bezier(0.25, 0, 0.1, 1);
}

/* ============================================================ Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

@media (hover: none) {
  body, button { cursor: auto; }
  .cursor { display: none !important; }
}

/* ============================================================ LOADER */
.loader {
  position: fixed; inset: 0; z-index: 9997;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
.loader.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-w {
  display: block;
  font-family: var(--serif);
  font-size: clamp(60px, 13vw, 140px);
  font-weight: 700; line-height: .88;
  letter-spacing: -.025em; color: var(--bone);
  opacity: 0; transform: translateY(24px);
  animation: loaderUp .9s var(--ease) forwards;
}
.loader-w:last-of-type { animation-delay: .18s; }
@keyframes loaderUp {
  to { opacity: 1; transform: translateY(0); }
}
.loader-line {
  margin: 22px auto 0; height: 1px; width: 0;
  background: var(--gold);
  animation: loaderLine 1s var(--ease) .4s forwards;
}
@keyframes loaderLine { to { width: 72px; } }

/* ============================================================ SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 900;
  height: 2px; width: 0%;
  background: var(--gold);
  pointer-events: none;
  transition: width .08s linear;
}

/* ============================================================ Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
  mix-blend-mode: difference;
  will-change: left, top;
}
.cursor.is-hovering  { width: 44px; height: 44px; background: var(--bone); }
.cursor.is-clicking  { transform: translate(-50%, -50%) scale(0.65); }

/* ============================================================ Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ============================================================ Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ============================================================ Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================ Section atoms */
.section-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400; line-height: 1.05;
  color: var(--bone);
}
.section-sub { margin-top: 16px; font-size: 16px; color: var(--bone-2); }
.section-header { margin-bottom: 64px; }

/* ============================================================ NAV */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 52px;
  transition: background .5s var(--ease), padding .5s var(--ease);
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(12,11,8,0.6) 0%, rgba(12,11,8,0) 100%);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  pointer-events: none; opacity: 1; transition: opacity .5s var(--ease);
}
.nav.is-scrolled::before { opacity: 0; }
.nav.is-scrolled {
  background: rgba(12,11,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 52px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--bone); }
.nav-links { display: flex; gap: 40px; }
.nav-link {
  font-size: 15px; font-weight: 500; letter-spacing: .04em;
  color: #CFC6B6; position: relative; transition: color .22s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .32s var(--ease);
}
.nav-link:hover { color: var(--bone); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  width: 26px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 1px; background: var(--bone);
  transition: transform .32s var(--ease), opacity .32s;
}
.nav-toggle.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0 0 0 auto;
  width: 280px; background: var(--ink-2);
  border-left: 1px solid var(--border);
  z-index: 799;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px; gap: 36px;
  transform: translateX(100%); transition: transform .42s var(--ease);
}
.nav-drawer.is-open { transform: translateX(0); }
.drawer-link { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--bone-2); transition: color .2s; }
.drawer-link:hover { color: var(--gold); }

@media (max-width: 820px) {
  .nav { padding: 22px 24px; }
  .nav.is-scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================ HERO */
.hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  background: #0A0906;
  overflow: hidden;
  animation: canvasBreathe 9s ease-in-out infinite;
}
@keyframes canvasBreathe { 0%,100% { opacity: 1; } 50% { opacity: 0.91; } }
.hc-texture {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(47deg,  transparent 0, transparent 2px, rgba(130,90,45,0.018) 2px, rgba(130,90,45,0.018) 4px),
    repeating-linear-gradient(-43deg, transparent 0, transparent 3px, rgba(100,65,30,0.012) 3px, rgba(100,65,30,0.012) 5px);
}
.hc-l1 {
  position: absolute; width: 90vw; height: 75vh; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(196,162,106,0.22) 0%, rgba(155,115,60,0.07) 42%, transparent 70%);
  top: -22%; left: -18%; filter: blur(90px);
  animation: hcDrift1 28s ease-in-out infinite; will-change: transform;
}
.hc-l2 {
  position: absolute; width: 65vw; height: 65vh; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(215,178,122,0.14) 0%, rgba(180,140,80,0.05) 50%, transparent 72%);
  bottom: -18%; right: -14%; filter: blur(75px);
  animation: hcDrift2 36s ease-in-out infinite; will-change: transform;
}
.hc-l3 {
  position: absolute; width: 38vw; height: 42vh; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200,168,112,0.10) 0%, transparent 65%);
  top: 18%; right: 8%; filter: blur(65px);
  animation: hcDrift3 22s ease-in-out infinite; will-change: transform;
}
@keyframes hcDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 30% { transform: translate(13vw, 9vh) scale(1.06); } 65% { transform: translate(5vw, -5vh) scale(0.97); } }
@keyframes hcDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 45% { transform: translate(-10vw, -12vh) scale(1.11); } 80% { transform: translate(-4vw, 5vh) scale(0.95); } }
@keyframes hcDrift3 { 0%,100% { transform: translate(0,0); opacity: .7; } 50% { transform: translate(-5vw, 7vh); opacity: 1; } }
.hc-specular {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,250,228,1);
  box-shadow: 0 0 10px 5px rgba(255,242,208,0.55), 0 0 35px 18px rgba(228,192,138,0.28), 0 0 90px 45px rgba(196,162,106,0.13);
  top: 40%; left: 57%; filter: blur(0.8px); z-index: 5;
  animation: specularDrift 20s ease-in-out infinite;
}
@keyframes specularDrift { 0%,100% { transform: translate(0,0); opacity: .65; } 20% { transform: translate(2.5vw,-3vh); opacity: 1; } 45% { transform: translate(-2vw,1.5vh); opacity: .4; } 72% { transform: translate(1.5vw,4.5vh); opacity: .88; } }
.hc-sweep {
  position: absolute; top: -80%; left: -80%; width: 260%; height: 260%;
  background: linear-gradient(106deg, transparent 38%, rgba(255,250,230,0.016) 44%, rgba(255,254,240,0.048) 50%, rgba(255,250,230,0.016) 56%, transparent 62%);
  animation: hcSweep 24s linear infinite; animation-delay: -7s; z-index: 4;
}
@keyframes hcSweep { 0% { transform: translateX(-100%); opacity: 0; } 2% { opacity: 1; } 18% { transform: translateX(72%); opacity: 0; } 100% { transform: translateX(72%); opacity: 0; } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(12,11,8,0.95) 0%, rgba(12,11,8,0.38) 45%, rgba(12,11,8,0.22) 100%),
    linear-gradient(to right, rgba(12,11,8,0.45) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 3; padding: 0 64px 90px; width: 100%; }
.hero-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-address { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-3); }
.hero-eyebrow {
  display: block; margin-bottom: 18px;
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(88px, 15vw, 200px); font-weight: 700; line-height: .88;
  letter-spacing: -.02em; color: var(--bone);
  display: flex; flex-direction: column;
}
.hero-line { display: block; }
.hero-line--mark {
  font-family: var(--sans);
  font-size: clamp(20px, 3.1vw, 40px); font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-top: 14px; line-height: 1;
}
.hero-sub { margin-top: 28px; font-size: clamp(15px, 1.5vw, 18px); font-weight: 400; line-height: 1.65; color: var(--bone-2); max-width: 560px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(196,162,106,.5); color: var(--gold);
  transition: background .25s, color .25s, transform .2s;
}
.hero-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.hero-btn--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 0 6px 24px rgba(196,162,106,.22); }
.hero-btn--solid:hover { background: var(--gold-h); border-color: var(--gold-h); color: var(--ink); }
.hero-btn--wa { border-color: rgba(37,211,102,.45); color: #25D366; }
.hero-btn--wa:hover { background: #25D366; color: white; border-color: #25D366; }
.hero-btn--wa svg { width: 15px; height: 15px; fill: currentColor; }
.hero-proof { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; transition: opacity .2s; }
.hero-proof:hover { opacity: .78; }
.hero-proof-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.hero-proof-text { font-size: 13px; letter-spacing: .03em; color: var(--bone-2); }
.hero-proof-text strong { color: var(--bone); font-weight: 600; }
.hours-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); }
.hours-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bone-3); flex-shrink: 0; }
.hours-badge--open  { color: #72c271; }
.hours-badge--open .hours-dot  { background: #72c271; animation: dotPulse 2s ease infinite; }
.hours-badge--closed .hours-dot { background: #e07070; }
.hours-badge--closed { color: var(--bone-3); }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(114,194,113,.5); } 70% { box-shadow: 0 0 0 7px rgba(114,194,113,0); } 100% { box-shadow: 0 0 0 0 rgba(114,194,113,0); } }
.hero-scroll { position: absolute; right: 52px; bottom: 90px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.hero-scroll-label { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--bone-3); writing-mode: vertical-rl; }
@media (max-width: 768px) { .hero-content { padding: 0 24px 64px; } .hero-scroll { right: 24px; bottom: 64px; } }

/* ============================================================ STATEMENT */
.statement { padding: 120px 0; background: var(--ink-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.statement-text { font-family: var(--serif); font-size: clamp(20px, 2.8vw, 38px); font-weight: 400; line-height: 1.55; color: var(--bone); max-width: 820px; quotes: none; }
.statement-text em { color: var(--gold); font-style: italic; }

/* ============================================================ RITUAL */
.ritual { padding: 120px 0; }
.ritual-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.ritual-step {
  position: relative; padding: 44px 30px 52px;
  border-right: 1px solid var(--border);
  transition: background .45s var(--ease);
}
.ritual-step:last-child { border-right: none; }
.ritual-step:hover { background: var(--ink-2); }
.ritual-step::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .55s var(--ease);
}
.ritual-step:hover::before { width: 100%; }
.ritual-num { display: block; font-family: var(--serif); font-size: 14px; letter-spacing: .12em; color: var(--gold); margin-bottom: 26px; }
.ritual-title { font-family: var(--serif); font-size: clamp(22px, 2.3vw, 30px); font-weight: 400; color: var(--bone); margin-bottom: 14px; }
.ritual-text { font-size: 14px; line-height: 1.78; color: var(--bone-2); }
@media (max-width: 900px) {
  .ritual-steps { grid-template-columns: 1fr 1fr; }
  .ritual-step:nth-child(2) { border-right: none; }
  .ritual-step:nth-child(1), .ritual-step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .ritual-steps { grid-template-columns: 1fr; }
  .ritual-step { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 4px 40px; }
  .ritual-step:last-child { border-bottom: none; }
}

/* ============================================================ ATMOSPHERE */
.atmosphere { padding: 120px 0; background: var(--ink-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.atmos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.atmos-card {
  padding: 40px 34px 36px; background: var(--ink);
  border: 1px solid var(--border);
  transition: border-color .3s, transform .35s var(--ease);
}
.atmos-card:hover { border-color: var(--border-h); transform: translateY(-5px); }
.atmos-icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 26px; }
.atmos-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.atmos-title { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--bone); margin-bottom: 12px; }
.atmos-text { font-size: 14px; line-height: 1.78; color: var(--bone-2); margin-bottom: 18px; }
.atmos-tag { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.atmos-meter { height: 4px; border-radius: 2px; background: var(--ink-3); overflow: hidden; margin-bottom: 16px; }
.atmos-meter-fill { display: block; height: 100%; width: 0; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-h)); transition: width 1.5s var(--ease) .3s; }
.atmos-card.is-visible .atmos-meter-fill { width: 94%; }
@media (max-width: 860px) { .atmos-grid { grid-template-columns: 1fr; gap: 2px; } }

/* ============================================================ LOUNGE */
.lounge { padding: 120px 0; }
.lounge-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.lounge-copy .section-title { margin-bottom: 24px; }
.lounge-text { font-size: 16px; line-height: 1.85; color: var(--bone-2); max-width: 520px; margin-bottom: 18px; }
.lounge-feats { margin-top: 38px; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--border); }
.lounge-feat { display: flex; align-items: flex-start; gap: 20px; padding: 24px 4px; border-bottom: 1px solid var(--border); transition: padding-left .35s var(--ease); }
.lounge-feat:hover { padding-left: 14px; }
.lounge-feat-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.lounge-feat-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lounge-feat-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--bone); margin-bottom: 5px; }
.lounge-feat-text { font-size: 13.5px; line-height: 1.7; color: var(--bone-2); }

.lounge-visual { position: relative; }
.lounge-screen {
  position: relative; aspect-ratio: 4 / 3; border-radius: 4px;
  background: radial-gradient(ellipse at 50% 38%, var(--ink-3) 0%, var(--ink) 72%);
  border: 1px solid var(--border-h);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  overflow: hidden;
}
.lounge-screen-glow {
  position: absolute; top: 30%; left: 50%; width: 70%; height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(196,162,106,0.22) 0%, transparent 70%);
  filter: blur(40px); animation: loungeGlow 5s ease-in-out infinite;
}
@keyframes loungeGlow { 0%,100% { opacity: .6; } 50% { opacity: 1; } }
.lounge-pad { position: relative; z-index: 1; width: 46%; color: var(--gold); filter: drop-shadow(0 0 16px rgba(196,162,106,.35)); }
.lounge-screen-label { position: relative; z-index: 1; font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-3); }
.lounge-screen::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,0.10) 3px, rgba(0,0,0,0.10) 4px);
  pointer-events: none; opacity: .5;
}
@media (max-width: 880px) {
  .lounge-inner { grid-template-columns: 1fr; gap: 48px; }
  .lounge-visual { order: -1; max-width: 460px; }
}

/* ============================================================ SERVICES */
.services { padding: 120px 0; }
.services-list { border-top: 1px solid var(--border); }
.service-row {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .35s var(--ease);
}
.service-row::before {
  content: ''; position: absolute; left: -48px; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transition: transform .35s var(--ease); transform-origin: center;
}
.service-row:hover { padding-left: 14px; }
.service-row:hover::before { transform: scaleY(1); }
.service-left  { display: flex; align-items: baseline; gap: 22px; }
.svc-num { font-size: 11px; color: var(--bone-3); min-width: 18px; }
.svc-name { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 28px); font-weight: 400; color: var(--bone); transition: color .22s; }
.service-row:hover .svc-name { color: var(--gold); }
.service-right { display: flex; align-items: center; gap: 28px; }
.svc-dur  { font-size: 12px; color: var(--bone-3); letter-spacing: .04em; }
.svc-price { font-size: 15px; font-weight: 600; color: var(--bone); min-width: 86px; text-align: right; }
.svc-btn {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(196,162,106,.3); padding: 8px 18px;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .25s, transform .25s, background .2s, color .2s; white-space: nowrap;
}
.service-row:hover .svc-btn { opacity: 1; transform: translateX(0); }
.svc-btn:hover { background: var(--gold); color: var(--ink); }
.svc-icon {
  flex: 0 0 36px; width: 36px; height: 36px;
  color: var(--bone-3);
  transition: color .3s var(--ease), transform .3s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 36px; height: 36px; }
.service-row:hover .svc-icon { color: var(--gold); transform: scale(1.12); }
@media (max-width: 640px) {
  .svc-dur { display: none; }
  .svc-btn { opacity: 1; transform: none; padding: 6px 12px; }
  .service-right { gap: 14px; }
  .service-row::before { left: -24px; }
  .svc-icon { display: none; }
}

/* ─ Service cursor-follow image preview ─ */
.svc-preview {
  position: fixed; top: 0; left: 0; z-index: 600;
  width: 300px; aspect-ratio: 4 / 3;
  margin: -110px 0 0 28px;           /* offset from cursor */
  border-radius: 10px; overflow: hidden;
  pointer-events: none;
  opacity: 0; transform: scale(.82) rotate(-3deg);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border: 1px solid var(--border-h);
  will-change: transform, opacity, left, top;
}
.svc-preview.is-active { opacity: 1; transform: scale(1) rotate(0deg); }
.svc-preview-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.12); transition: transform .6s var(--ease);
}
.svc-preview.is-active .svc-preview-img { transform: scale(1); }
@media (hover: none), (max-width: 820px) { .svc-preview { display: none; } }

/* ============================================================ GALLERY */
.gallery { padding: 120px 0 0; }
.gallery-grid {
  margin-top: 64px; display: grid;
  grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 3px;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item { overflow: hidden; }
.g-inner {
  width: 100%; height: 100%;
  background: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.g-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover .g-inner img { transform: scale(1.04); }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; } .g-wide { grid-column: span 1; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } .g-tall { grid-row: span 1; } }

/* ============================================================ REVIEWS */
.reviews {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-headline {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.reviews-rating { display: flex; align-items: center; gap: 14px; padding-bottom: 6px; }
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-score { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--bone); line-height: 1; }
.rating-link { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); transition: color .2s; white-space: nowrap; }
.rating-link:hover { color: var(--gold); }
.reviews-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.review-card {
  background: var(--ink); border: 1px solid var(--border);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 20px;
  transition: border-color .3s var(--ease);
}
.review-card:hover { border-color: var(--border-h); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.review-text { font-family: var(--serif); font-style: italic; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.75; color: var(--bone-2); flex: 1; quotes: none; }
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ink-3); border: 1px solid var(--border-h); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--gold); flex-shrink: 0; letter-spacing: .05em; }
.review-meta { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-size: 14px; font-weight: 500; color: var(--bone); }
.review-via  { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); }
@media (max-width: 900px) { .reviews-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) {
  .reviews-track { grid-template-columns: 1fr; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 2px; padding-bottom: 16px; -webkit-overflow-scrolling: touch; }
  .reviews-track::-webkit-scrollbar { height: 2px; }
  .reviews-track::-webkit-scrollbar-track { background: var(--ink-2); }
  .reviews-track::-webkit-scrollbar-thumb { background: var(--border-h); }
  .review-card { min-width: 82vw; scroll-snap-align: start; }
  .reviews-headline { flex-direction: column; align-items: flex-start; }
}

/* ============================================================ BARBERS */
.barbers { padding: 120px 0; }
.barbers .section-header { margin-bottom: 80px; }
.barber { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; border-top: 1px solid var(--border); }
.barber--flip { direction: rtl; }
.barber--flip > * { direction: ltr; }
.barber-portrait { position: relative; background: var(--ink-2); overflow: hidden; }
.barber-img-bg {
  width: 100%; height: 100%; min-height: 580px;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border-right: 1px solid var(--border);
}
.barber--flip .barber-img-bg { border-right: none; border-left: 1px solid var(--border); }
.barber-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.barber:hover .barber-portrait img { transform: scale(1.03); }
.barber-story { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.barber-num { font-size: 11px; letter-spacing: .22em; color: var(--bone-3); text-transform: uppercase; }
.barber-name { font-family: var(--serif); font-size: clamp(48px, 7vw, 86px); font-weight: 400; line-height: .93; color: var(--bone); }
.barber-quote { font-family: var(--serif); font-style: italic; font-size: clamp(14px, 1.4vw, 18px); color: var(--gold); line-height: 1.6; padding-left: 18px; border-left: 2px solid var(--gold); max-width: 420px; }
.barber-bio { font-size: 15px; line-height: 1.8; color: var(--bone-2); max-width: 460px; }
.barber-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.barber-tags span { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-3); border: 1px solid var(--border); padding: 6px 14px; transition: border-color .2s, color .2s; }
.barber:hover .barber-tags span { border-color: rgba(196,162,106,.2); color: var(--bone-2); }
.btn-wa-barber {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
  padding: 11px 20px; align-self: flex-start;
  background: transparent; color: #25D366;
  border: 1px solid rgba(37,211,102,.35);
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .22s, border-color .22s, color .22s;
}
.btn-wa-barber svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.btn-wa-barber:hover { background: #25D366; color: white; border-color: #25D366; }
@media (max-width: 900px) {
  .barber { grid-template-columns: 1fr; min-height: auto; }
  .barber--flip { direction: ltr; }
  .barber-img-bg { min-height: 320px; border-right: none; border-left: none; border-bottom: 1px solid var(--border); }
  .barber--flip .barber-img-bg { border-left: none; }
  .barber-story { padding: 48px 24px; }
}

/* ============================================================ BOOKING */
.booking { padding: 120px 0; background: var(--ink-2); border-top: 1px solid var(--border); }
.booking-form { max-width: 740px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field--full { margin-bottom: 20px; }
.form-field label { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-3); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--ink); border: 1px solid var(--border); color: var(--bone);
  font-family: var(--sans); font-size: 15px; padding: 14px 16px;
  outline: none; border-radius: 0; appearance: none; -webkit-appearance: none;
  transition: border-color .22s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--bone-3); }
.form-field select option { background: var(--ink-2); }
.form-field textarea { resize: vertical; min-height: 96px; }
input.is-error, select.is-error { border-color: #d46464 !important; animation: shake .35s ease; }
@keyframes shake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
.btn-submit {
  display: inline-block; margin-top: 12px; padding: 18px 52px;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background .25s, transform .18s;
}
.btn-submit:hover { background: var(--gold-h); transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; pointer-events: none; }
.form-status { margin-top: 18px; font-size: 14px; min-height: 20px; color: #72c271; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================ MAP */
.map-wrap { border-bottom: 1px solid var(--border); }
.map-wrap iframe {
  width: 100%; height: 400px; border: none; display: block;
  filter: grayscale(1) invert(0.88) sepia(0.15) brightness(0.72) contrast(1.05);
  transition: filter 1s var(--ease);
}
.map-wrap:hover iframe { filter: grayscale(0.4) brightness(0.9); }

/* ============================================================ FOOTER */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--bone); display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--bone-3); line-height: 1.7; margin-bottom: 20px; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(37,211,102,.08); color: #25D366;
  border: 1px solid rgba(37,211,102,.25);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  transition: background .22s, border-color .22s;
}
.footer-wa svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.footer-wa:hover { background: #25D366; color: white; border-color: #25D366; }
.footer-heading { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-3); margin-bottom: 20px; }
.footer address { font-size: 14px; color: var(--bone-2); line-height: 1.9; margin-bottom: 12px; }
.footer-phone { font-size: 14px; color: var(--gold); transition: color .2s; }
.footer-phone:hover { color: var(--gold-h); }
.hours-list { display: flex; flex-direction: column; }
.hours-list li { display: flex; justify-content: space-between; font-size: 13px; color: var(--bone-2); padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-list li.is-today > span:first-child { color: var(--gold); font-weight: 500; }
.hours-list li > span:last-child { color: var(--bone-3); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-nav a { font-size: 13px; color: var(--bone-2); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--bone-3); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 12px; color: var(--bone-3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--bone-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================ LOGO MARK */
.nav-logo { display: flex; align-items: center; color: var(--gold); }
.nav-logo-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  transition: opacity .3s, transform .45s var(--ease);
}
.nav-logo:hover .nav-logo-mark { opacity: .7; transform: rotate(-12deg) scale(1.08); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .9;
}

/* ============================================================ BACK TO TOP */
.back-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 80;
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--ink-2); color: var(--bone-2);
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .22s, color .22s, transform .22s;
}
.back-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ============================================================ WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 88px; right: 28px; z-index: 80;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; border-radius: 50px;
  padding: 13px;
  max-width: 52px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: max-width .42s var(--ease), padding .42s var(--ease), box-shadow .25s;
  animation: waGlow 3.5s ease-in-out infinite;
}
.wa-float:hover {
  max-width: 260px;
  padding: 13px 20px 13px 14px;
  box-shadow: 0 6px 32px rgba(37,211,102,.5);
  animation: none;
}
@keyframes waGlow {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.6), 0 0 0 7px rgba(37,211,102,.1); }
}
.wa-float svg { width: 26px; height: 26px; fill: white; flex-shrink: 0; }
.wa-label {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: white; white-space: nowrap;
  opacity: 0; max-width: 0;
  transition: opacity .25s .12s, max-width .42s var(--ease);
  overflow: hidden;
}
.wa-float:hover .wa-label { opacity: 1; max-width: 200px; }
@media (max-width: 640px) {
  .wa-float { bottom: 80px; right: 20px; }
  .back-top { bottom: 28px; left: 20px; }
}
