/* ─────────────────────────────────────────────────────────
   Elite Cuts Barber — barber.css  v2 (ultra-premium)
   Sharp urban premium · masculine structure · bold geometry
   Books and Brews demo site
───────────────────────────────────────────────────────── */

:root {
  --accent:      #b88a44;
  --accent-hi:   #d4a866;
  --accent-pale: rgba(184, 138, 68, .08);
  --accent-glow: rgba(184, 138, 68, .28);
  --bg:          #090909;
  --bg-deep:     #050505;
  --bg-raised:   rgba(22, 18, 14, 0.9);
  --bg-mid:      rgba(32, 26, 18, 0.7);
  --text:        #ecead8;
  --muted:       #99886a;
  --faint:       #524030;
  --line:        rgba(184, 138, 68, 0.11);
  --line-s:      rgba(184, 138, 68, 0.26);
  --radius:      0px;
  --radius-sm:   3px;
  --shadow:      0 24px 70px rgba(0, 0, 0, 0.72);
  --c:           min(1140px, calc(100% - 44px));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(ellipse at 80% 0%,  rgba(140, 100, 40, .12) 0%, transparent 28%),
    radial-gradient(ellipse at 5%  80%, rgba(80,  58,  24, .10) 0%, transparent 22%),
    #090909;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.wrap { width: var(--c); margin: 0 auto; position: relative; z-index: 1; }

/* ─── Nav ─── */
.b-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.b-nav .inner { display: flex; align-items: center; justify-content: space-between; }
.b-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--text); position: relative;
}
.b-logo span { color: var(--accent); }
.b-nav-links { display: flex; gap: 32px; }
.b-nav-links a {
  font-size: .8rem; letter-spacing: .12em; font-weight: 700;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.b-nav-links a:hover { color: var(--text); }
.b-nav-book {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  font-size: .78rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase;
  border: 1px solid var(--accent); color: var(--accent);
  background: transparent;
  transition: background .2s, color .2s;
}
.b-nav-book:hover { background: var(--accent); color: #08060a; }
.b-mtoggle { display: none; }
.b-mnav   { display: none; }

/* ─── Buttons ─── */
.b-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: .82rem; letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .18s, color .18s, transform .15s;
}
.b-btn:hover { transform: translateY(-2px); }
.b-btn-fill {
  background: var(--accent);
  color: #08060a;
  box-shadow: 0 10px 32px rgba(184,138,68,.25);
}
.b-btn-fill:hover {
  background: var(--accent-hi);
  box-shadow: 0 14px 40px rgba(184,138,68,.38);
}
.b-btn-line {
  border: 1px solid rgba(236, 234, 216, .22); color: var(--muted);
  background: transparent;
  transition: border-color .2s, color .2s, transform .15s;
}
.b-btn-line:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Hero ─── */
.b-hero {
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
/* Ghost "EC" backdrop — much more visible at .04 to land as premium texture */
.b-hero-num {
  position: absolute; right: -2%; top: 50%; transform: translateY(-51%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18rem, 32vw, 28rem);
  font-weight: 700; line-height: 1;
  color: rgba(255, 255, 255, .042);
  pointer-events: none; user-select: none;
  letter-spacing: -.06em;
}
/* Top rule for hero */
.b-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 38%, transparent 100%);
}
.b-hero-inner { position: relative; z-index: 2; }
.b-hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-size: .72rem; letter-spacing: .24em; font-weight: 800;
  text-transform: uppercase; color: var(--accent);
}
.b-hero-tag::before, .b-hero-tag::after {
  content: '';
  display: block; flex-shrink: 0;
  height: 1px; width: 32px; background: var(--accent);
}
.b-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 800; line-height: .88;
  letter-spacing: -.04em; text-transform: uppercase;
  color: var(--text); margin-bottom: 36px;
}
.b-hero h1 span { color: var(--accent); }
.b-hero p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 480px; line-height: 1.85; margin-bottom: 48px;
}
.b-hero-btns { display: flex; gap: 14px; }
/* Bottom rule for hero */
.b-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-s) 50%, transparent 100%);
}

/* ─── Accent Band — separates hero from services ─── */
.b-accent-band {
  background: var(--accent);
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(0,0,0,.3);
}
.b-accent-band .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .21em; text-transform: uppercase;
  color: #08060a;
}
.b-band-sep { opacity: .45; }

/* ─── Section base ─── */
.b-section { padding: 88px 0; }
.b-overline {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-size: .72rem; letter-spacing: .22em; font-weight: 800;
  text-transform: uppercase; color: var(--accent);
}
.b-overline::before {
  content: '';
  display: block; width: 22px; height: 2px; background: var(--accent);
}
.b-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; letter-spacing: -.04em;
  text-transform: uppercase; line-height: .88;
  margin-bottom: 56px; color: var(--text);
}
.b-section-rule {
  display: block; width: 50px; height: 2px;
  background: var(--accent); margin: 14px 0 46px;
}

/* ─── Price Board — 2-column menu grid ─── */
.b-price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line);
}
.b-menu-item {
  padding: 32px 30px;
  background: var(--bg-deep);
  display: flex; flex-direction: column; gap: 8px;
  border-left: 3px solid transparent;
  transition: background .2s, border-left-color .2s, transform .2s;
  cursor: default;
}
.b-menu-item:hover {
  background: rgba(184, 138, 68, .04);
  border-left-color: var(--accent);
  transform: translateX(3px);
}
.b-item-name {
  font-size: .78rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text);
}
.b-item-desc {
  font-size: .84rem; color: var(--muted);
  line-height: 1.65; flex-grow: 1;
}
.b-menu-foot {
  display: flex; justify-content: space-between; align-items: center;
}
.b-item-price {
  font-size: 1.55rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.b-item-dur {
  font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint);
}

/* ─── Stats — full-bleed dark contrast panel ─── */
.b-stats-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 74px 0;
}
.b-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.b-stat { text-align: center; padding: 24px 20px; position: relative; }
.b-stat + .b-stat::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line-s);
}
.b-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -.05em;
  color: var(--accent); line-height: 1;
  display: block; margin-bottom: 10px;
}
.b-stat-lbl {
  font-size: .75rem; letter-spacing: .15em;
  font-weight: 700; text-transform: uppercase;
  color: var(--muted);
}

/* ─── Location ─── */
.b-loc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--line);
}
.b-loc-card { padding: 36px 32px; background: var(--bg-deep); }
.b-loc-card h3 {
  font-size: .72rem; letter-spacing: .22em; font-weight: 800;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.b-loc-card p {
  font-size: .93rem; color: var(--muted); line-height: 1.85;
}
.b-loc-card p strong { color: var(--text); font-weight: 700; }

/* ─── CTA ─── */
.b-cta {
  padding: 96px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.b-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(184,138,68,.07) 0%, transparent 55%);
  pointer-events: none;
}
.b-cta-inner {
  max-width: 640px; margin: 0 auto;
  padding: 58px 48px;
  border: 1px solid var(--line-s);
  background: rgba(16,12,8,.65);
  position: relative; z-index: 1;
}
.b-cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
}
.b-cta-tag {
  font-size: .72rem; letter-spacing: .22em; font-weight: 800;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.b-cta-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -.04em; line-height: .88;
  margin-bottom: 22px; color: var(--text);
}
.b-cta-inner p {
  color: var(--muted); font-size: 1rem;
  line-height: 1.75; max-width: 400px; margin: 0 auto 40px;
}
.b-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.b-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}
.b-footer-in {
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.b-footer-logo {
  font-size: .96rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.b-footer-logo span { color: var(--accent); }
.b-footer-sub { font-size: .78rem; color: var(--faint); margin-top: 5px; }
.b-footer-credit { font-size: .78rem; color: var(--faint); text-align: right; }
.b-footer-credit a { color: var(--muted); font-weight: 600; }
.b-footer-credit a:hover { color: var(--accent); text-decoration: underline; }

/* ─── Demo Banner ─── */
.b-demo-bar {
  background: var(--accent);
  padding: 9px 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #08060a;
}
.b-demo-bar a {
  color: #08060a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .b-price-grid { grid-template-columns: 1fr; }
  .b-stats-grid { grid-template-columns: 1fr; }
  .b-stat + .b-stat::before { display: none; }
  .b-loc-grid { grid-template-columns: 1fr; }
  .b-cta-inner { padding: 40px 28px; }
}
@media (max-width: 700px) {
  .b-nav-links, .b-nav-book { display: none; }
  .b-mtoggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line); background: rgba(255,255,255,.03);
    color: var(--text); font-size: 1.2rem; cursor: pointer;
  }
  .b-mnav {
    display: none; flex-direction: column;
    padding: 12px 16px; background: rgba(6,5,4,.96);
    border-bottom: 1px solid var(--line);
  }
  .b-mnav.open { display: flex; }
  .b-mnav a {
    padding: 13px 0; border-bottom: 1px solid var(--line);
    font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--muted); font-weight: 700;
  }
  .b-mnav .b-btn { margin-top: 10px; width: 100%; justify-content: center; }
  .b-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .b-hero-btns { flex-direction: column; }
  .b-hero-btns a { width: 100%; }
  .b-hero-num { font-size: 44vw; right: -5%; }
  .b-cta-btns { flex-direction: column; align-items: center; }
  .b-cta-btns a { width: 100%; max-width: 300px; }
  .b-footer-in { flex-direction: column; text-align: center; }
  .b-footer-credit { text-align: center; }
  .b-accent-band .wrap { gap: 10px; }
  .b-section { padding: 64px 0; }
  .b-cta { padding: 64px 0; }
  .b-stats-section { padding: 52px 0; }
}
