/* House Des Barbers — global styles */
:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #18181c;
  --line: #26262b;
  --ink: #ededef;
  --ink-dim: #8a8a90;
  --ink-mute: #5a5a60;
  --gold: #c9a66b;
  --gold-hi: #e8c78a;
  --gold-lo: #8a6d3a;
  --red: #c0392b;
  --blue: #2d4a7c;
  --white: #f7f5ef;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; overflow-x: hidden; }
body {
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.display { font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: 0.02em; text-transform: uppercase; }
.script { font-family: 'Allura', cursive; font-style: italic; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', monospace; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: overlay;
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { height: 34px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); transition: color .2s; position: relative; }
.nav-link:hover { color: var(--ink); }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-link:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent; cursor: pointer;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(100%); transition: transform .35s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-primary::before { background: var(--gold-hi); }
.btn-primary:hover { color: var(--bg); }
.btn-ghost { border-color: var(--line); color: var(--ink-dim); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--bg); border-color: var(--ink); }

/* Hero */
.hero {
  min-height: 100svh; position: relative; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,166,107,0.12), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 90%, rgba(201,166,107,0.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(64px, 9.5vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.hero h1 .script {
  font-family: 'Allura', cursive; text-transform: none; font-style: italic;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold), var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 1.05em; line-height: 1.1; display: inline-block;
  margin-left: 0.05em;
  padding-bottom: 0.15em;
}
.section-head h2 .script,
.hero-card-2 .title .script {
  line-height: 1.1;
  padding-bottom: 0.1em;
  display: inline-block;
}
.hero p.lede { color: var(--ink-dim); font-size: 18px; line-height: 1.6; max-width: 460px; margin-top: 28px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-meta-item .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.hero-meta-item .v { font-family: 'Bebas Neue'; font-size: 32px; color: var(--white); margin-top: 4px; letter-spacing: 0.04em; }

/* Hero right — stacked image + info cards */
.hero-visual { position: relative; height: 620px; }
.hero-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 20px;
  backdrop-filter: blur(10px);
}
.hero-card-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=900&auto=format&fit=crop') center/cover;
}
.hero-card-1 { top: 0; left: 0; width: 70%; height: 520px; padding: 0; overflow: hidden; }
.hero-card-1 .overlay { position: absolute; left: 24px; bottom: 24px; right: 24px; z-index: 2; }
.hero-card-1 .overlay h3 { font-family: 'Bebas Neue'; font-size: 32px; color: var(--white); letter-spacing: 0.04em; }
.hero-card-1 .overlay p { color: var(--ink-dim); font-size: 12px; margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }

.hero-card-2 {
  bottom: 0; right: 0; width: 58%; min-height: 180px;
  background: linear-gradient(135deg, #18181c 0%, #0a0a0b 100%);
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card-2 .label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.hero-card-2 .title { font-family: 'Bebas Neue'; font-size: 28px; margin-top: 8px; color: var(--white); }
.hero-card-2 .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 12px #2ecc71; margin-right: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-card-3 {
  top: 40px; right: 0; width: 44%;
  text-align: center; padding: 18px;
}
.hero-card-3 .big { font-family: 'Bebas Neue'; font-size: 56px; line-height: 1; color: var(--gold); }
.hero-card-3 .sm { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; }

/* Barber pole marquee */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}
.marquee-track { display: flex; gap: 60px; animation: scroll 40s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Bebas Neue'; font-size: 36px; letter-spacing: 0.08em; color: var(--ink-dim); display: flex; align-items: center; gap: 60px; }
.marquee-item .star { color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Section header */
.section { padding: clamp(80px, 12vh, 140px) 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 60px; flex-wrap: wrap; }
.section-head .label { font-size: 11px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.section-head h2 {
  font-family: 'Bebas Neue'; font-size: clamp(44px, 6vw, 88px); line-height: 0.95;
  color: var(--white); letter-spacing: -0.005em;
}
.section-head h2 .script { font-family: 'Allura'; text-transform: none; color: var(--gold); font-size: 1em; margin: 0 0.1em; }
.section-head p { color: var(--ink-dim); max-width: 440px; line-height: 1.6; font-size: 15px; }

/* Services */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 60px 1.5fr 1fr auto; gap: 32px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: all .4s var(--ease);
  position: relative;
}
.service-row::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(ellipse at left, rgba(201,166,107,0.08), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.service-row:hover::before { opacity: 1; }
.service-row:hover { padding-left: 24px; }
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mute); }
.service-name { font-family: 'Bebas Neue'; font-size: 32px; color: var(--white); letter-spacing: 0.02em; }
.service-desc { color: var(--ink-dim); font-size: 13px; line-height: 1.5; }
.service-meta { display: flex; align-items: center; gap: 24px; }
.service-duration { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.service-price { font-family: 'Bebas Neue'; font-size: 36px; color: var(--gold); letter-spacing: 0.02em; min-width: 80px; text-align: right; }
.service-row:hover .service-name { color: var(--gold-hi); }
.service-book { opacity: 0; transform: translateX(-8px); transition: all .3s; color: var(--gold); font-size: 18px; }
.service-row:hover .service-book { opacity: 1; transform: translateX(0); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.barber-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  cursor: pointer; transition: all .4s var(--ease);
}
.barber-card:hover { transform: translateY(-6px); border-color: var(--gold-lo); }
.barber-img { position: absolute; inset: 0; filter: grayscale(0.4) contrast(1.05); transition: all .5s var(--ease); background-size: cover; background-position: center; }
.barber-card:hover .barber-img { filter: grayscale(0) contrast(1.1); transform: scale(1.04); }
.barber-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.barber-info { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; }
.barber-info .role { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.barber-info .name { font-family: 'Bebas Neue'; font-size: 28px; color: var(--white); letter-spacing: 0.02em; }
.barber-info .tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.barber-info .tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); padding: 3px 8px; border: 1px solid var(--line); background: rgba(0,0,0,0.5); }
.barber-num { position: absolute; top: 16px; left: 20px; font-family: 'JetBrains Mono'; font-size: 11px; color: var(--gold); z-index: 2; letter-spacing: 0.2em; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; background: var(--bg-2); background-size: cover; background-position: center; cursor: pointer; transition: all .4s var(--ease); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); transition: all .3s; }
.gallery-item:hover::after { background: rgba(0,0,0,0); }
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.g1 { grid-column: span 5; grid-row: span 3; }
.g2 { grid-column: span 4; grid-row: span 2; }
.g3 { grid-column: span 3; grid-row: span 2; }
.g4 { grid-column: span 4; grid-row: span 3; }
.g5 { grid-column: span 3; grid-row: span 3; }
.g6 { grid-column: span 5; grid-row: span 2; }
.g7 { grid-column: span 4; grid-row: span 2; }

/* Booking (inline big component) */
.booking-wrap { background: var(--bg-2); border: 1px solid var(--line); padding: 56px; }
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; }
.step-dots { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.step-dot { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.step-dot .circle { width: 28px; height: 28px; border: 1px solid var(--line); display: grid; place-items: center; font-family: 'JetBrains Mono'; font-size: 11px; color: var(--ink-mute); transition: all .3s; }
.step-dot.active { color: var(--gold); }
.step-dot.active .circle { border-color: var(--gold); color: var(--gold); background: rgba(201,166,107,0.1); }
.step-dot.done .circle { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.step-dot.done { color: var(--ink); }
.step-connector { flex: 1; height: 1px; background: var(--line); }
.step-connector.done { background: var(--gold); }

.step-panel h3 { font-family: 'Bebas Neue'; font-size: 44px; color: var(--white); letter-spacing: 0.01em; margin-bottom: 6px; }
.step-panel .sub { color: var(--ink-dim); font-size: 14px; margin-bottom: 32px; }

.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.chip {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 20px; border: 1px solid var(--line); background: var(--bg-3);
  cursor: pointer; transition: all .2s var(--ease);
  text-align: left;
}
.chip:hover { border-color: var(--ink-mute); background: #1c1c20; }
.chip.selected { border-color: var(--gold); background: rgba(201,166,107,0.08); }
.chip .n { font-family: 'Bebas Neue'; font-size: 20px; color: var(--white); letter-spacing: 0.02em; }
.chip .m { font-size: 11px; color: var(--ink-mute); margin-top: 2px; letter-spacing: 0.08em; text-transform: uppercase; }
.chip .p { font-family: 'Bebas Neue'; font-size: 22px; color: var(--gold); }

.barber-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.b-chip { padding: 16px; border: 1px solid var(--line); display: flex; align-items: center; gap: 14px; background: var(--bg-3); cursor: pointer; transition: all .2s; text-align: left; }
.b-chip:hover { border-color: var(--ink-mute); }
.b-chip.selected { border-color: var(--gold); background: rgba(201,166,107,0.08); }
.b-chip .avatar { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; filter: grayscale(0.3); }
.b-chip.selected .avatar { filter: grayscale(0); }
.b-chip .name { font-family: 'Bebas Neue'; font-size: 18px; letter-spacing: 0.03em; color: var(--white); }
.b-chip .role { font-size: 10px; letter-spacing: 0.15em; color: var(--ink-mute); text-transform: uppercase; margin-top: 2px; }

/* Calendar */
.cal { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 24px; scrollbar-width: thin; }
.cal::-webkit-scrollbar { height: 4px; }
.cal::-webkit-scrollbar-thumb { background: var(--line); }
.cal-day {
  flex: 0 0 72px; padding: 14px 0; text-align: center;
  border: 1px solid var(--line); background: var(--bg-3); cursor: pointer; transition: all .2s;
}
.cal-day:hover { border-color: var(--ink-mute); }
.cal-day.selected { border-color: var(--gold); background: rgba(201,166,107,0.08); }
.cal-day.disabled { opacity: 0.35; cursor: not-allowed; }
.cal-day .dow { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.cal-day .d { font-family: 'Bebas Neue'; font-size: 26px; color: var(--white); margin-top: 4px; }
.cal-day .mon { font-size: 9px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.cal-day.selected .d { color: var(--gold); }

.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot { padding: 12px; border: 1px solid var(--line); background: var(--bg-3); text-align: center; cursor: pointer; font-family: 'JetBrains Mono'; font-size: 13px; color: var(--ink); transition: all .2s; }
.slot:hover { border-color: var(--ink-mute); }
.slot.selected { border-color: var(--gold); background: rgba(201,166,107,0.08); color: var(--gold); }
.slot.unavailable { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.input-field { width: 100%; padding: 16px 18px; background: var(--bg-3); border: 1px solid var(--line); color: var(--ink); font-family: inherit; font-size: 14px; transition: border .2s; }
.input-field:focus { outline: none; border-color: var(--gold); }
.input-field::placeholder { color: var(--ink-mute); }
.input-label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }

/* Summary sidebar */
.summary { background: var(--bg-3); border: 1px solid var(--line); padding: 28px; position: sticky; top: 100px; }
.summary h4 { font-family: 'Bebas Neue'; font-size: 22px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.summary-row .k { color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.summary-row .v { color: var(--ink); text-align: right; }
.summary-row .v.empty { color: var(--ink-mute); font-style: italic; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 20px; margin-top: 12px; border-top: 1px dashed var(--gold-lo); }
.summary-total .k { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.summary-total .v { font-family: 'Bebas Neue'; font-size: 48px; color: var(--gold); letter-spacing: 0.02em; }

.step-nav { display: flex; justify-content: space-between; margin-top: 40px; }

/* Laser section */
.laser {
  position: relative;
  overflow: hidden;
  background: #06060a;
}
.laser::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(139, 92, 246, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 166, 107, 0.12), transparent 60%);
  pointer-events: none;
}
.laser-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.laser-viz {
  position: relative; aspect-ratio: 4/5; max-width: 480px; margin: 0 auto;
  background: linear-gradient(180deg, #0a0a14, #06060a);
  border: 1px solid var(--line);
  overflow: hidden;
}
.laser-viz::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 166, 107, 0.25), transparent 70%);
}
.laser-beam {
  position: absolute; left: 20%; right: 20%; top: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8c78a, #fff, #e8c78a, transparent);
  box-shadow: 0 0 12px #e8c78a, 0 0 24px rgba(201,166,107,0.6);
  animation: beam 3s ease-in-out infinite;
}
@keyframes beam {
  0%, 100% { top: 22%; opacity: 0.4; }
  50% { top: 78%; opacity: 1; }
}
.laser-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #e8c78a; box-shadow: 0 0 16px #e8c78a, 0 0 32px rgba(201,166,107,0.6);
  animation: dotpulse 2s ease-in-out infinite;
}
.laser-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,107,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,107,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
@keyframes dotpulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0.5} }
.laser-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 14px; border: 1px solid var(--gold-lo);
  background: rgba(10,10,11,0.8); backdrop-filter: blur(8px);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  z-index: 3;
}
.laser-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.laser-feat { padding: 20px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.laser-feat .num { font-family: 'Bebas Neue'; font-size: 32px; color: var(--gold); letter-spacing: 0.02em; }
.laser-feat .lbl { font-size: 11px; letter-spacing: 0.15em; color: var(--ink-dim); text-transform: uppercase; margin-top: 4px; }
.laser-feat p { font-size: 12px; color: var(--ink-mute); line-height: 1.5; margin-top: 8px; }
.laser-prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 32px; }
.laser-price {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink);
  transition: border-color .2s;
  cursor: pointer;
}
.laser-price:hover { border-color: var(--gold-lo); }
.laser-price .p { font-family: 'Bebas Neue'; font-size: 20px; color: var(--gold); letter-spacing: 0.02em; }

@media (max-width: 960px) {
  .laser-inner { grid-template-columns: 1fr; }
  .laser-feats, .laser-prices { grid-template-columns: 1fr; }
}

/* Testimonials */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tm-card { background: var(--bg-2); border: 1px solid var(--line); padding: 32px; position: relative; transition: all .3s; }
.tm-card:hover { border-color: var(--gold-lo); transform: translateY(-4px); }
.tm-quote { font-family: 'Bebas Neue'; font-size: 56px; color: var(--gold); line-height: 0.5; margin-bottom: 16px; }
.tm-text { color: var(--ink); line-height: 1.7; font-size: 15px; }
.tm-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.tm-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3) center/cover; }
.tm-name { font-size: 13px; color: var(--ink); }
.tm-name small { color: var(--ink-mute); display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.tm-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 13px; margin-left: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-block { padding: 32px 0; border-bottom: 1px solid var(--line); display: flex; gap: 24px; align-items: flex-start; }
.contact-block:first-child { border-top: 1px solid var(--line); }
.contact-icon { width: 44px; height: 44px; border: 1px solid var(--gold-lo); display: grid; place-items: center; color: var(--gold); flex-shrink: 0; }
.contact-block .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.contact-block .val { font-family: 'Bebas Neue'; font-size: 22px; color: var(--white); letter-spacing: 0.03em; }
.contact-block .sub { color: var(--ink-dim); font-size: 13px; margin-top: 4px; }

.hours-grid { font-size: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-row .d { color: var(--ink); }
.hours-row .h { color: var(--gold); font-family: 'JetBrains Mono'; font-size: 13px; }
.hours-row.closed .h { color: var(--red); }
.hours-row.today { background: linear-gradient(90deg, rgba(201,166,107,0.08), transparent); padding-left: 12px; margin-left: -12px; }
.hours-row.today .d::before { content: '●'; color: #2ecc71; margin-right: 8px; font-size: 10px; }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; color: var(--ink-dim); }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 20px 0; }
.socials { display: flex; gap: 10px; }
.social { width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-dim); transition: all .2s; }
.social:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-mute); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Tweaks panel */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  background: var(--bg-2); border: 1px solid var(--gold-lo); padding: 20px;
  width: 280px; font-size: 13px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.tweaks-panel h4 { font-family: 'Bebas Neue'; font-size: 18px; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--gold); }
.tweak-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tweak-row label { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-dim); text-transform: uppercase; }
.tweak-swatches { display: flex; gap: 6px; }
.tweak-sw { width: 24px; height: 24px; border: 2px solid transparent; cursor: pointer; }
.tweak-sw.active { border-color: var(--white); }

@media (max-width: 960px) {
  .hero-inner, .booking-grid, .contact-grid, .team-grid, .tm-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-visual { height: 420px; }
  .chip-grid, .barber-chips { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr auto; }
  .service-desc { display: none; }
}
