/* =================================================================
   MARGARETEN BARBER — Barbershop Wien
   Design system + section styles
   ================================================================= */

:root {
  /* Brand palette */
  --charcoal: #1E1E1E;
  --charcoal-90: #2a2a28;
  --charcoal-70: #44443f;
  --off-white: #F7F5F2;
  --paper: #FFFFFF;
  --brass: #B8934A;
  --brass-soft: #c9a866;
  --forest: #24342C;

  /* Neutrals (warm) */
  --ink: #1E1E1E;
  --ink-70: rgba(30, 30, 30, 0.70);
  --ink-55: rgba(30, 30, 30, 0.55);
  --ink-40: rgba(30, 30, 30, 0.40);
  --line: rgba(30, 30, 30, 0.10);
  --line-soft: rgba(30, 30, 30, 0.06);
  --cloud: #ECE8E2;
  --cloud-2: #E4DFD7;

  /* Light text on dark */
  --on-dark: #F7F5F2;
  --on-dark-70: rgba(247, 245, 242, 0.68);
  --on-dark-45: rgba(247, 245, 242, 0.42);
  --line-dark: rgba(247, 245, 242, 0.14);

  /* Type */
  --font-head: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radius / shadow */
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(30,30,30,.04), 0 6px 18px rgba(30,30,30,.05);
  --shadow-md: 0 4px 14px rgba(30,30,30,.05), 0 22px 48px rgba(30,30,30,.08);
  --shadow-lg: 0 8px 24px rgba(30,30,30,.07), 0 40px 80px rgba(30,30,30,.12);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 140px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* radius tweak */
body[data-radius="round"] { --r-sm: 14px; --r: 18px; --r-lg: 26px; }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* font tweak */
body[data-headfont="outfit"] { --font-head: 'Outfit', sans-serif; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
section[id], main[id] { scroll-margin-top: 150px; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: .7;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: .7;
}

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  color: var(--ink-70);
  font-size: 1.075rem;
  max-width: 52ch;
}
.section-head.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--charcoal); color: var(--on-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--off-white); color: var(--charcoal); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--on-dark); box-shadow: inset 0 0 0 1px var(--line-dark); }
.btn-ghost-dark:hover { box-shadow: inset 0 0 0 1px var(--on-dark); transform: translateY(-2px); }
.btn-brass { background: var(--brass); color: #1a140a; }
.btn-brass:hover { background: var(--brass-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn.full { width: 100%; }

/* link arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--ink); transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--brass); gap: 12px; }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background-color: var(--cloud);
  background-image: repeating-linear-gradient(135deg, rgba(30,30,30,.035) 0 1px, transparent 1px 13px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--ink-40);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(247,245,242,.6);
  backdrop-filter: blur(2px);
}
.ph.dark {
  background-color: #262624;
  background-image: repeating-linear-gradient(135deg, rgba(247,245,242,.04) 0 1px, transparent 1px 13px);
}
.ph.dark::after { color: var(--on-dark-45); border-color: var(--line-dark); background: rgba(20,20,18,.4); }

/* =================================================================
   NAVBAR
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 12px;
}
.nav.scrolled {
  background: rgba(247,245,242,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 8px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 125px; width: auto; object-fit: contain; transition: height .4s var(--ease); }
.nav.scrolled .brand-mark { height: 74px; }
.brand-mark.dark-logo { filter: invert(1) brightness(.18); }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem;
  letter-spacing: -0.01em; line-height: 1;
}
.brand-name span { color: var(--brass); }
.brand-sub {
  display: block; font-family: var(--mono); font-size: .56rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--ink-55);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-70);
  padding: 8px 12px; border-radius: 8px; transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--ink); background: rgba(30,30,30,.04); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: .9rem; font-weight: 500; color: var(--ink-70); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-phone:hover { color: var(--ink); }
.nav .btn { padding: 11px 19px; font-size: .91rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--off-white);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-head); font-weight: 600; font-size: 1.35rem;
  padding: 15px 6px; border-bottom: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; border-radius: 8px;
  transition: color .2s var(--ease), padding-left .25s var(--ease), background .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:not(.btn)::after {
  content: ""; width: 9px; height: 9px; flex-shrink: 0; margin-right: 2px;
  border-top: 2px solid var(--ink-40); border-right: 2px solid var(--ink-40);
  transform: rotate(45deg);
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.mobile-menu a:not(.btn):active {
  color: var(--brass); padding-left: 16px; background: rgba(184,147,74,.1);
}
.mobile-menu a:not(.btn):active::after { border-color: var(--brass); transform: rotate(45deg) translate(2px, -2px); }
.mobile-menu .btn { margin-top: 28px; }

/* staggered entrance */
.mobile-menu a { opacity: 0; }
.mobile-menu.open a { animation: menuItemIn .5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1) { animation-delay: .08s; }
.mobile-menu.open a:nth-child(2) { animation-delay: .14s; }
.mobile-menu.open a:nth-child(3) { animation-delay: .20s; }
.mobile-menu.open a:nth-child(4) { animation-delay: .26s; }
.mobile-menu.open a:nth-child(5) { animation-delay: .34s; }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Light nav treatment over the dark Hero B (transparent state only) */
body[data-hero="b"] .nav:not(.scrolled) .brand-name { color: var(--on-dark); }
body[data-hero="b"] .nav:not(.scrolled) .brand-sub { color: var(--on-dark-45); }
body[data-hero="b"] .nav:not(.scrolled) .brand-mark.dark-logo { filter: none; }
body[data-hero="b"] .nav:not(.scrolled) .nav-links a { color: var(--on-dark-70); }
body[data-hero="b"] .nav:not(.scrolled) .nav-links a:hover { color: var(--on-dark); background: rgba(247,245,242,.08); }
body[data-hero="b"] .nav:not(.scrolled) .nav-phone { color: var(--on-dark-70); }
body[data-hero="b"] .nav:not(.scrolled) .nav-phone:hover { color: var(--on-dark); }
body[data-hero="b"] .nav:not(.scrolled) .nav-toggle span { background: var(--on-dark); }
body[data-hero="b"] .nav:not(.scrolled) .btn-primary { background: var(--off-white); color: var(--charcoal); }
body[data-hero="b"] .nav:not(.scrolled) .btn-primary:hover { background: #fff; }

/* =================================================================
   HERO (shared)
   ================================================================= */
.hero { display: none; position: relative; }
body[data-hero="a"] .hero--a,
body[data-hero="b"] .hero--b,
body[data-hero="c"] .hero--c { display: block; }

.stat-row { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { font-size: .82rem; color: var(--ink-55); margin-top: 7px; letter-spacing: .01em; }
.stat .stars { color: var(--brass); letter-spacing: 1px; font-size: .95rem; }

.next-slot {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 18px; border-radius: 100px;
  background: rgba(184,147,74,.12);
  box-shadow: inset 0 0 0 1px rgba(184,147,74,.3);
  font-size: .9rem; font-weight: 500;
}
.next-slot .pulse { position: relative; width: 9px; height: 9px; }
.next-slot .pulse i { position: absolute; inset: 0; border-radius: 50%; background: var(--brass); }
.next-slot .pulse i::after { content:""; position:absolute; inset:0; border-radius:50%; background: var(--brass); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 70%,100%{transform:scale(2.6);opacity:0} }
.next-slot b { font-weight: 700; }
.next-slot.dark { background: rgba(184,147,74,.16); box-shadow: inset 0 0 0 1px rgba(184,147,74,.34); color: var(--on-dark); }

/* ---- HERO A: editorial split ---- */
.hero--a { padding-top: clamp(178px, 17vw, 220px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero-a-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-a-copy { max-width: 600px; }
.hero-a-copy h1 {
  font-size: clamp(2.7rem, 5.6vw, 5rem); font-weight: 800;
  margin: 22px 0 24px; line-height: 1.0;
}
.hero-a-copy h1 em { font-style: normal; color: var(--brass); }
.hero-a-copy .lede { font-size: 1.14rem; color: var(--ink-70); max-width: 46ch; }
.hero-a-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 30px; }
.hero-a-media { position: relative; }
.hero-a-media .ph { aspect-ratio: 4/4.7; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-a-media .float-card {
  position: absolute; left: -28px; bottom: 32px;
  background: var(--paper); border-radius: var(--r);
  padding: 16px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-a-media .float-card .av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.hero-a-media .float-card .stars { color: var(--brass); font-size: .8rem; letter-spacing: 1px; }
.hero-a-media .float-card p { font-size: .82rem; color: var(--ink-70); line-height: 1.4; margin-top: 2px; }
.hero-a-stats { margin-top: 12px; padding-top: 30px; border-top: 1px solid var(--line); }

/* ---- HERO B: booking embedded (dark) ---- */
.hero--b { background: var(--charcoal); color: var(--on-dark); padding-top: clamp(178px, 17vw, 220px); padding-bottom: var(--section-y); }
.hero-b-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero-b-copy h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); font-weight: 800; color: var(--on-dark); margin: 22px 0 22px; }
.hero-b-copy h1 em { font-style: normal; color: var(--brass); }
.hero-b-copy .lede { font-size: 1.12rem; color: var(--on-dark-70); max-width: 44ch; }
.hero-b-stats { margin-top: 38px; display: flex; gap: clamp(20px,4vw,44px); flex-wrap: wrap; }
.hero-b-stats .num { color: var(--on-dark); }
.hero-b-stats .lbl { color: var(--on-dark-45); }
.hero-b-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0;
  background-image: url('assets/hero-profile.jpg'); background-size: cover; background-position: 62% center; background-repeat: no-repeat; }
.hero-b-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--charcoal) 0%, rgba(30,30,30,.62) 32%, rgba(30,30,30,0) 64%); }
@media (max-width: 1024px) {
  .hero-b-bg { background-image: url('assets/hero-mobile.jpg?v=5'); background-position: center center; }
  .hero-b-bg::after { background: linear-gradient(180deg, rgba(30,30,30,.5) 0%, rgba(30,30,30,.12) 40%, rgba(30,30,30,.55) 100%); }
}

/* mini booking card (shared with hero B + quick) */
.booking-mini {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.booking-mini h3 { font-size: 1.18rem; }
.booking-mini .bm-sub { font-size: .86rem; color: var(--ink-55); margin-top: 4px; }
.bm-field { margin-top: 16px; }
.bm-field > label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 9px; }
.chip {
  font-size: .86rem; font-weight: 500; padding: 9px 14px; border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--line); transition: .2s var(--ease); color: var(--ink-70);
}
.chip:hover { box-shadow: inset 0 0 0 1px var(--ink-40); color: var(--ink); }
.chip.sel { background: var(--charcoal); color: var(--on-dark); box-shadow: none; }
.chip.sm { padding: 8px 11px; font-size: .82rem; }
.bm-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bm-price { font-size: .84rem; color: var(--ink-55); }
.bm-price b { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); font-weight: 700; }

/* ---- HERO C: minimal scandinavian ---- */
.hero--c { padding-top: clamp(196px, 19vw, 250px); padding-bottom: var(--section-y); text-align: center; }
.hero-c-inner { max-width: 980px; margin-inline: auto; }
.hero-c-inner h1 { font-size: clamp(2.9rem, 7vw, 6rem); font-weight: 800; margin: 26px 0 26px; letter-spacing: -0.035em; }
.hero-c-inner h1 em { font-style: normal; color: var(--brass); }
.hero-c-inner .lede { font-size: 1.18rem; color: var(--ink-70); max-width: 50ch; margin: 0 auto; }
.hero-c-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 34px 0 0; }
.hero-c-media { margin-top: clamp(48px, 7vw, 80px); }
.hero-c-media .ph { aspect-ratio: 16/7.4; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-c-stats { margin-top: 36px; display: flex; justify-content: center; gap: clamp(28px,5vw,64px); flex-wrap: wrap; }

/* marquee strip */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden; padding-block: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink-55); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "✦"; color: var(--brass); font-size: .7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =================================================================
   SERVICES
   ================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.svc-card {
  background: var(--paper); border-radius: var(--r); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card.feature { grid-column: span 1; background: var(--charcoal); color: var(--on-dark); }
.svc-num { font-family: var(--mono); font-size: .72rem; color: var(--ink-40); letter-spacing: .1em; }
.svc-card.feature .svc-num { color: var(--on-dark-45); }
.svc-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(184,147,74,.12); display: grid; place-items: center; margin: 20px 0 18px; color: var(--brass); }
.svc-ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.32rem; }
.svc-card p { font-size: .94rem; color: var(--ink-70); margin-top: 9px; flex-grow: 1; }
.svc-card.feature p { color: var(--on-dark-70); }
.svc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.svc-card.feature .svc-meta { border-color: var(--line-dark); }
.svc-dur { font-size: .84rem; color: var(--ink-55); display: inline-flex; align-items: center; gap: 6px; }
.svc-card.feature .svc-dur { color: var(--on-dark-70); }
.svc-price { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.svc-price small { font-weight: 500; font-size: .74rem; color: var(--ink-55); }
.svc-card.feature .svc-price small { color: var(--on-dark-45); }

/* =================================================================
   BOOKING WIDGET (SaaS-style)
   ================================================================= */
.booking { background: var(--charcoal); color: var(--on-dark); }
.book-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.book-intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); color: var(--on-dark); margin-top: 18px; }
.book-intro p { color: var(--on-dark-70); margin-top: 18px; font-size: 1.06rem; max-width: 40ch; }
.book-points { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.book-point { display: flex; gap: 13px; align-items: flex-start; }
.book-point .bp-ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--brass); margin-top: 1px; }
.book-point div b { font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.book-point div p { color: var(--on-dark-70); font-size: .88rem; margin-top: 2px; }

.book-widget { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.bw-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.bw-steps { display: flex; align-items: center; gap: 8px; }
.bw-step { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-40); font-weight: 500; }
.bw-step .dot { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; box-shadow: inset 0 0 0 1px var(--line); font-family: var(--font-head); }
.bw-step.active { color: var(--ink); }
.bw-step.active .dot { background: var(--charcoal); color: var(--on-dark); box-shadow: none; }
.bw-step.done .dot { background: var(--brass); color: #1a140a; box-shadow: none; }
.bw-sep { width: 18px; height: 1px; background: var(--line); }
.bw-secure { font-size: .76rem; color: var(--ink-40); display: inline-flex; align-items: center; gap: 6px; }

.bw-body { display: grid; grid-template-columns: 1.1fr 1fr; }
.bw-left { padding: 24px 26px; border-right: 1px solid var(--line); }
.bw-right { padding: 24px 26px; }
.bw-label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 12px; }

.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-opt { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: var(--r-sm); box-shadow: inset 0 0 0 1px var(--line); transition: .2s var(--ease); }
.svc-opt:hover { box-shadow: inset 0 0 0 1px var(--ink-40); }
.svc-opt.sel { box-shadow: inset 0 0 0 1.5px var(--charcoal); background: rgba(30,30,30,.025); }
.svc-opt .check { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); display: grid; place-items: center; flex-shrink: 0; transition: .2s; }
.svc-opt.sel .check { background: var(--charcoal); box-shadow: none; color: #fff; }
.svc-opt .check svg { width: 12px; height: 12px; opacity: 0; }
.svc-opt.sel .check svg { opacity: 1; }
.svc-opt .so-name { font-weight: 600; font-size: .95rem; }
.svc-opt .so-dur { font-size: .8rem; color: var(--ink-55); }
.svc-opt .so-price { margin-left: auto; font-family: var(--font-head); font-weight: 700; font-size: .98rem; }

.barber-row { display: flex; gap: 10px; }
.barber-opt { flex: 1; text-align: center; padding: 14px 8px; border-radius: var(--r-sm); box-shadow: inset 0 0 0 1px var(--line); transition: .2s var(--ease); cursor: pointer; }
.barber-opt:hover { box-shadow: inset 0 0 0 1px var(--ink-40); }
.barber-opt.sel { box-shadow: inset 0 0 0 1.5px var(--charcoal); }
.barber-opt .bo-av { width: 42px; height: 42px; border-radius: 50%; margin: 0 auto 8px; object-fit: cover; }
.barber-opt .bo-name { font-size: .84rem; font-weight: 600; }
.barber-opt .bo-role { font-size: .72rem; color: var(--ink-55); }

.cal { margin-top: 4px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head b { font-family: var(--font-head); font-size: .96rem; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button { width: 28px; height: 28px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; color: var(--ink-70); transition: .2s; }
.cal-nav button:hover { box-shadow: inset 0 0 0 1px var(--ink-40); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-grid .dow { font-size: .68rem; text-align: center; color: var(--ink-40); font-weight: 600; padding-bottom: 4px; }
.cal-day { aspect-ratio: 1; border-radius: 8px; display: grid; place-items: center; font-size: .84rem; font-weight: 500; transition: .15s; }
.cal-day.muted { color: var(--ink-40); }
.cal-day.avail:hover { background: rgba(30,30,30,.05); cursor: pointer; }
.cal-day.sel { background: var(--charcoal); color: #fff; }
.cal-day.dot-day { position: relative; }
.cal-day.dot-day::after { content:""; position:absolute; bottom:5px; width:4px; height:4px; border-radius:50%; background: var(--brass); }
.cal-day.sel.dot-day::after { background: #fff; }

.times-label { display: flex; align-items: center; justify-content: space-between; margin: 20px 0 11px; }
.times-label b { font-family: var(--font-head); font-size: .92rem; }
.times-label span { font-size: .78rem; color: var(--ink-55); }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.time-slot { padding: 9px 6px; border-radius: 9px; font-size: .82rem; font-weight: 600; text-align: center; box-shadow: inset 0 0 0 1px var(--line); transition: .15s; }
.time-slot:hover { box-shadow: inset 0 0 0 1px var(--ink-40); }
.time-slot.sel { background: var(--charcoal); color: #fff; box-shadow: none; }
.time-slot.off { color: var(--ink-40); text-decoration: line-through; pointer-events: none; opacity: .5; }

.bw-foot { padding: 18px 26px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fbfaf8; }
.bw-summary { font-size: .86rem; color: var(--ink-70); }
.bw-summary b { color: var(--ink); font-weight: 600; }
.bw-summary .total { font-family: var(--font-head); }

/* =================================================================
   WHY CHOOSE US
   ================================================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.why-card { padding: 30px 26px; border-radius: var(--r); background: var(--paper); box-shadow: var(--shadow-sm); transition: .4s var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--charcoal); color: var(--brass); display: grid; place-items: center; margin-bottom: 22px; }
.why-ic svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.18rem; }
.why-card p { font-size: .92rem; color: var(--ink-70); margin-top: 10px; }

/* =================================================================
   GALLERY (masonry)
   ================================================================= */
.gal-filters { display: flex; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.gal-filter { font-size: .88rem; font-weight: 500; padding: 9px 17px; border-radius: 100px; color: var(--ink-70); box-shadow: inset 0 0 0 1px var(--line); transition: .2s; }
.gal-filter:hover { box-shadow: inset 0 0 0 1px var(--ink-40); }
.gal-filter.active { background: var(--charcoal); color: var(--on-dark); box-shadow: none; }
.masonry { columns: 4; column-gap: 16px; margin-top: 28px; }
.masonry .ph { width: 100%; margin-bottom: 16px; border-radius: var(--r); break-inside: avoid; transition: transform .4s var(--ease), filter .4s; }
.masonry .ph:hover { transform: scale(1.012); }
.m-tall { aspect-ratio: 3/4.4; }
.m-sq { aspect-ratio: 1; }
.m-wide { aspect-ratio: 3/2.3; }
.masonry .m-img { width: 100%; height: auto; display: block; margin-bottom: 16px; border-radius: var(--r); break-inside: avoid; transition: transform .5s var(--ease); }
.masonry .m-img:hover { transform: scale(1.015); }
.masonry .m-img.hide { display: none; }

/* =================================================================
   TEAM
   ================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.team-card { position: relative; }
.team-photo { aspect-ratio: 3/3.7; border-radius: var(--r); overflow: hidden; position: relative; }
.team-photo .ph { width: 100%; height: 100%; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-badge { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; background: rgba(247,245,242,.9); color: var(--ink-70); padding: 5px 10px; border-radius: 100px; backdrop-filter: blur(4px); }
.team-info { margin-top: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.team-info h3 { font-size: 1.16rem; }
.team-info .role { font-size: .85rem; color: var(--brass); font-weight: 600; margin-top: 3px; font-family: var(--font-head); }
.team-info .exp { font-size: .78rem; color: var(--ink-55); text-align: right; flex-shrink: 0; }
.team-socials { display: flex; gap: 8px; margin-top: 12px; }
.team-socials a { width: 32px; height: 32px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; color: var(--ink-55); transition: .2s; }
.team-socials a:hover { box-shadow: inset 0 0 0 1px var(--ink); color: var(--ink); }
.team-socials svg { width: 15px; height: 15px; }

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews { background: var(--forest); color: var(--on-dark); }
body[data-accent="brass"] .reviews { background: var(--charcoal); }
.rev-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rev-top h2 { font-size: clamp(2rem, 4vw, 3.1rem); color: var(--on-dark); margin-top: 18px; }
.rev-rating { text-align: right; }
.rev-rating .big { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--on-dark); }
.rev-rating .stars { color: var(--brass); letter-spacing: 2px; margin-top: 6px; }
.rev-rating .src { font-size: .8rem; color: var(--on-dark-45); margin-top: 6px; }
.rev-viewport { overflow: hidden; margin-top: 50px; }
.rev-track { display: flex; gap: 22px; transition: transform .6s var(--ease); }
.rev-card { flex: 0 0 calc((100% - 44px) / 3); background: rgba(247,245,242,.05); box-shadow: inset 0 0 0 1px var(--line-dark); border-radius: var(--r); padding: 30px; display: flex; flex-direction: column; }
.rev-card .stars { color: var(--brass); letter-spacing: 1px; font-size: .95rem; }
.rev-card .quote { font-size: 1.05rem; line-height: 1.6; margin: 18px 0; color: var(--on-dark); flex-grow: 1; font-family: var(--font-head); font-weight: 500; letter-spacing: -0.01em; }
.rev-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.rev-author .av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.rev-author b { font-size: .95rem; font-weight: 600; }
.rev-author span { font-size: .8rem; color: var(--on-dark-45); display: block; }
.rev-ctrl { display: flex; gap: 10px; margin-top: 34px; justify-content: center; }
.rev-ctrl button { width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-dark); color: var(--on-dark); display: grid; place-items: center; transition: .2s; }
.rev-ctrl button:hover { box-shadow: inset 0 0 0 1px var(--on-dark); background: rgba(247,245,242,.06); }

/* =================================================================
   LOCATION
   ================================================================= */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.loc-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; min-height: 440px; }
.loc-map .ph { width: 100%; height: 100%; }
.loc-pin { position: absolute; top: 46%; left: 48%; transform: translate(-50%,-50%); }
.loc-pin .pin-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 6px rgba(184,147,74,.25), 0 0 0 14px rgba(184,147,74,.12); }
.loc-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 18px; }
.loc-block { margin-top: 26px; }
.loc-block .lb-label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-row span:first-child { color: var(--ink-70); }
.hours-row span:last-child { font-weight: 600; }
.hours-row.today { color: var(--brass); }
.hours-row.today span { color: var(--brass); }
.loc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.loc-meta .lm-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(184,147,74,.12); color: var(--brass); display: grid; place-items: center; margin-bottom: 10px; }
.loc-meta .lm-ic svg { width: 19px; height: 19px; }
.loc-meta b { font-size: .92rem; font-family: var(--font-head); }
.loc-meta p { font-size: .85rem; color: var(--ink-70); margin-top: 3px; }
.loc-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* =================================================================
   INSTAGRAM
   ================================================================= */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px; }
.ig-cell { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; position: relative; }
.ig-cell .ph { width: 100%; height: 100%; }
.ig-cell .ig-ov { position: absolute; inset: 0; background: rgba(30,30,30,.45); display: grid; place-items: center; color: #fff; opacity: 0; transition: .3s var(--ease); }
.ig-cell:hover .ig-ov { opacity: 1; }
.ig-cell .ig-ov svg { width: 24px; height: 24px; }

/* =================================================================
   FINAL CTA
   ================================================================= */
.final { position: relative; background: var(--charcoal); color: var(--on-dark); overflow: hidden; text-align: center; }
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg .ph { width: 100%; height: 100%; opacity: .16; }
.final .container { position: relative; z-index: 2; }
.final .next-slot { margin-bottom: 28px; }
.final h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 800; color: var(--on-dark); max-width: 16ch; margin-inline: auto; }
.final p { color: var(--on-dark-70); font-size: 1.12rem; margin: 22px auto 0; max-width: 46ch; }
.final-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.final-meta { margin-top: 40px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; color: var(--on-dark-45); font-size: .86rem; }
.final-meta span { display: inline-flex; align-items: center; gap: 8px; }
.final-meta svg { width: 16px; height: 16px; color: var(--brass); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: #161614; color: var(--on-dark); padding-block: clamp(56px, 7vw, 84px) 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand-name { color: var(--on-dark); }
.foot-logo { height: 76px; width: auto; display: block; margin-bottom: 4px; }
.foot-brand p { color: var(--on-dark-45); font-size: .9rem; margin-top: 18px; max-width: 32ch; }
.foot-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-45); font-weight: 600; margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; color: var(--on-dark-70); font-size: .92rem; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--on-dark); }
.foot-bottom { margin-top: clamp(40px,5vw,64px); padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--on-dark-45); font-size: .84rem; }
.foot-bottom .fb-links { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--on-dark); }

/* =================================================================
   STICKY MOBILE CTA
   ================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(247,245,242,.9); backdrop-filter: blur(14px);
  box-shadow: 0 -1px 0 var(--line), 0 -10px 30px rgba(30,30,30,.06);
  display: none; align-items: center; gap: 14px;
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-info { flex: 1; }
.sticky-cta .sc-info b { font-family: var(--font-head); font-size: .92rem; display: block; }
.sticky-cta .sc-info span { font-size: .76rem; color: var(--ink-55); }
.sticky-cta .btn { padding: 13px 22px; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 1; transform: none; }
.anim-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.anim-ready .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px) {
  .svc-grid, .why-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .rev-card { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav .btn { display: none; }
  .hero-a-grid, .hero-b-grid, .book-grid, .loc-grid { grid-template-columns: 1fr; }
  .hero-a-media .ph { aspect-ratio: 16/11; }
  .hero-a-media .float-card { left: auto; right: 16px; }
  .bw-body { grid-template-columns: 1fr; }
  .bw-left { border-right: none; border-bottom: 1px solid var(--line); }
  .loc-map { min-height: 320px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .brand-mark { height: 86px; }
  .nav.scrolled .brand-mark { height: 60px; }
  .sticky-cta { display: flex; }
  .svc-grid, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; column-gap: 12px; }
  .masonry .ph { margin-bottom: 12px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .rev-card { flex: 0 0 100%; }
  .rev-top { align-items: flex-start; }
  .rev-rating { text-align: left; }
  .loc-meta { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .bw-head { flex-wrap: wrap; gap: 12px; }
  .bw-step .bw-step-label { display: none; }
  .hero-b-stats .stat, .hero-c-stats .stat { flex: 1 0 40%; }
}
@media (max-width: 460px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-a-cta .btn, .hero-c-cta .btn, .final-cta .btn { flex: 1 0 100%; }
  .foot-grid { grid-template-columns: 1fr; }
}
