:root {
  --bg: #121110;
  --bg-2: #1b1917;
  --card: #201e1b;
  --line: #34302b;
  --text: #f3ede3;
  --muted: #a89f92;
  --brass: #c9a45c;
  --brass-2: #e0bf7e;
  --red: #b3322b;
  --radius: 14px;
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; margin: 0 0 .5em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
a { color: inherit; }
.muted { color: var(--muted); }

/* ── Nav ───────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(18, 17, 16, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 1.25rem; font-weight: 700; }
.pole {
  width: 10px; height: 26px; border-radius: 6px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 5px, #f3ede3 5px 10px, #2c4a8a 10px 15px, #f3ede3 15px 20px);
  background-size: 100% 28px;
  animation: spin 1.6s linear infinite;
}
@keyframes spin { to { background-position: 0 28px; } }
.nav nav { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 28px); }
.nav nav a { text-decoration: none; color: var(--muted); font-size: .95rem; }
.nav nav a:hover { color: var(--text); }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 1rem var(--body);
  padding: 14px 26px; border-radius: 999px;
  background: var(--brass); color: #16130e;
  border: 1px solid var(--brass); cursor: pointer; text-decoration: none;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--brass-2); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--brass-2); outline-offset: 3px; }
.btn-sm { padding: 8px 18px; font-size: .9rem; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-2); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88vh, 760px);
  display: grid; align-items: center;
  padding: 80px clamp(16px, 6vw, 96px);
  background:
    radial-gradient(1000px 500px at 85% 20%, rgba(201,164,92,.14), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(179,50,43,.10), transparent 60%),
    var(--bg);
}
.hero-inner { max-width: 720px; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(3rem, 9vw, 6.5rem); letter-spacing: -.02em; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--brass); }
.lede { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--muted); max-width: 34ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 12px; }
.fine { font-size: .85rem; color: var(--muted); }
.hero-stripe {
  position: absolute; right: clamp(-60px, -2vw, 0px); top: -10%; bottom: -10%;
  width: clamp(60px, 10vw, 140px);
  background: repeating-linear-gradient(-45deg, rgba(179,50,43,.55) 0 22px, rgba(243,237,227,.08) 22px 44px, rgba(44,74,138,.45) 44px 66px, rgba(243,237,227,.08) 66px 88px);
  transform: rotate(8deg);
  opacity: .5;
}

.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 600; color: var(--brass); margin: 0 0 14px; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.status.open::before { background: #4caf6a; box-shadow: 0 0 0 4px rgba(76,175,106,.2); }
.status.closed::before { background: var(--red); }

/* ── Sections ──────────────────────────────── */
.section { padding: clamp(64px, 10vw, 112px) clamp(16px, 6vw, 96px); border-top: 1px solid var(--line); }
.section-head { margin-bottom: 40px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--brass); transform: translateY(-3px); }
.card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.card .meta { display: flex; gap: 12px; align-items: baseline; color: var(--brass); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.card .meta .price { color: var(--text); }
.card p { color: var(--muted); margin: 0 0 24px; flex: 1; }
.card .btn { align-self: flex-start; }

.barber { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; background: var(--bg-2); }
.barber p { max-width: 60ch; color: var(--muted); }
.barber-mark {
  width: clamp(110px, 18vw, 180px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--brass);
  background: radial-gradient(circle at 30% 30%, rgba(201,164,92,.15), transparent 70%);
}
.barber-mark svg { width: 55%; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.hours { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
.hours td { padding: 14px 4px; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.closed td:last-child { color: var(--muted); }
.hours tr.today td { color: var(--brass-2); font-weight: 600; }
.contact { list-style: none; padding: 0; margin: 24px 0 0; color: var(--muted); }
.contact li { margin: 6px 0; }
.contact a { color: var(--text); }

.book-band { text-align: center; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.book-band h2 { margin-bottom: 24px; }

.footer { padding: 32px clamp(16px, 6vw, 96px); border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.noscript { text-align: center; padding: 16px; }

@media (max-width: 760px) {
  .nav nav a { display: none; }
  .barber, .split { grid-template-columns: 1fr; }
  .hero-stripe { opacity: .25; }
}
@media (prefers-reduced-motion: reduce) {
  .pole { animation: none; }
  html { scroll-behavior: auto; }
}
