/* ============================================================
   MOE'S BARBERSHOP — design system
   Monochrome industrial: polished concrete, black steel,
   warm Edison light, one electric-blue neon accent.
   ============================================================ */

:root {
  /* surfaces */
  --ink:      #0c0d10;   /* concrete-dark base */
  --ink-2:    #131419;   /* raised panel */
  --ink-3:    #1c1e24;   /* card on dark */
  --paper:    #f1efea;   /* warm off-white light section */
  --paper-2:  #e6e3dc;   /* alt light surface */
  --concrete: #b7b4ad;   /* mid grey */
  --steel:    #5b5d63;

  /* text */
  --t-hi:  #f3f1ec;
  --t-mid: #a6a5a1;
  --t-lo:  #6c6d72;
  --on-paper-hi:  #16171a;
  --on-paper-mid: #54534f;

  /* lines */
  --line-d: rgba(243,241,236,.12);
  --line-d-2: rgba(243,241,236,.22);
  --line-l: rgba(16,17,20,.12);

  /* accent — electric neon (tweakable) */
  --neon: #4f63ff;
  --neon-soft: color-mix(in oklab, var(--neon) 35%, transparent);
  --neon-glow: color-mix(in oklab, var(--neon) 55%, transparent);

  /* type */
  --f-display: 'Jost', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--t-hi);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--neon); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2b2d33; border: 2px solid var(--ink); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #3a3d44; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; }
section[id] { scroll-margin-top: 72px; }

/* ---------- type ---------- */
.mono {
  font-family: var(--f-mono);
  font-size: clamp(10px, .78vw, 12px);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--t-mid);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}
.eyebrow.center::after {
  content: ""; width: 28px; height: 1px; background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.01em;
}
h1, h2, h3 { font-weight: 400; }

.h-xxl { font-family: var(--f-display); font-weight: 300; font-size: clamp(3.4rem, 11vw, 11rem); line-height: .9; letter-spacing: -.02em; }
.h-xl  { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.015em; }
.h-lg  { font-family: var(--f-display); font-weight: 300; font-size: clamp(1.9rem, 3.6vw, 3.2rem); line-height: 1.02; }
.lead  { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; color: var(--t-mid); font-weight: 400; }

.wordmark {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--t-hi); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }

.btn--neon { --bg: var(--neon); --fg: #fff; box-shadow: 0 0 0 0 var(--neon-glow); }
.btn--neon:hover { box-shadow: 0 10px 40px -8px var(--neon-glow); }

.btn--ghost {
  background: transparent; color: var(--t-hi); border-color: var(--line-d-2);
}
.btn--ghost:hover { border-color: var(--t-hi); background: rgba(243,241,236,.04); }

.btn--ghost-dark {
  background: transparent; color: var(--on-paper-hi); border-color: var(--line-l);
}
.btn--ghost-dark:hover { border-color: var(--on-paper-hi); background: rgba(16,17,20,.04); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- chips / misc ---------- */
.rating-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 16px 9px 14px;
  border: 1px solid var(--line-d-2); border-radius: 99px;
  background: rgba(12,13,16,.4); backdrop-filter: blur(8px);
}
.stars { display: inline-flex; gap: 2px; color: var(--neon); }
.divider { height: 1px; background: var(--line-d); border: 0; }

.tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--t-mid); padding: 5px 10px; border: 1px solid var(--line-d); border-radius: 99px;
}

/* ---------- tweak-driven states ---------- */
.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-motion .mq-row { animation: none !important; }
.no-motion .map__dot { animation: none !important; }
.no-motion * { scroll-behavior: auto; }

.photos-color .hero__bg img,
.photos-color .statement__img img,
.photos-color .g-item img,
.photos-color .barber__ph img { filter: none !important; }
.photos-color .hero__bg img { filter: brightness(.82) !important; }
.photos-color .g-item:hover img { transform: scale(1.06); }

/* BytesGlue mobile QA patch */
@media (max-width: 940px){.hero-inner,.hero__inner,.hero-copy,.hero .wrap,.hero .container{padding-top:30px!important;transform:translateY(30px)!important}}
