/* ===== District 7 Barbershop ===== */
:root {
  --bg: #0d0d0f;
  --bg-2: #131316;
  --panel: #17171b;
  --ink: #f4f1ea;
  --muted: #9a958c;
  --gold: #c9a24b;
  --gold-bright: #e7c874;
  --line: #2a2a30;
  --red: #b1352e;
  --shadow: 0 20px 50px rgba(0,0,0,.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .brand-name { font-family: 'Bebas Neue', 'Oswald', sans-serif; letter-spacing: .5px; }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .9rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  font-weight: 500;
  padding: .95rem 1.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-gold { background: var(--gold); color: #14110a; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-outline { border-color: rgba(244,241,234,.35); color: var(--ink); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { border-color: var(--gold); color: var(--gold); padding: .55rem 1.2rem; }
.btn-ghost:hover { background: var(--gold); color: #14110a; }
.btn-block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #000;
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 6vw;
  border-bottom: 1px solid var(--line);
}
.topbar-mid { color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 6vw;
  background: rgba(13,13,15,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--gold); color: #14110a;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  border-radius: 4px;
}
.brand-name {
  display: flex; flex-direction: column; line-height: .9;
  font-size: 1.65rem; color: var(--ink);
}
.brand-name small {
  font-family: 'Oswald', sans-serif; font-size: .58rem;
  letter-spacing: .42em; color: var(--gold); margin-top: 4px; font-weight: 400;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .12em; font-size: .82rem; color: var(--muted);
  transition: color .2s;
}
.nav a:hover { color: var(--ink); }
.nav .nav-book { color: var(--gold); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; }
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.25) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.72) 45%, rgba(8,8,10,.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 4rem 6vw; max-width: 720px; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95; margin-bottom: 1.4rem; color: var(--ink);
}
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: #cfcabf; max-width: 30rem; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.6rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.hero-stats span { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ===== Marquee strip ===== */
.strip {
  display: flex; gap: 1.4rem; align-items: center;
  background: var(--gold); color: #14110a;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: .12em;
  padding: .7rem 6vw; overflow: hidden; white-space: nowrap;
}
.strip .dot { color: #14110a; opacity: .6; font-size: .7rem; }

/* ===== Sections ===== */
section { padding: 6rem 6vw; }
.section-head { max-width: 620px; margin: 0 auto 3.2rem; text-align: center; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--ink); }
.section-lede { color: var(--muted); margin-top: .8rem; }

/* Services */
.services { background: var(--bg-2); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 1080px; margin: 0 auto;
}
.service-card {
  position: relative;
  background: var(--panel); border: 1px solid var(--line);
  padding: 2.2rem 1.8rem; transition: all .25s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--gold); background: #1c1a15; }
.service-tag {
  position: absolute; top: -12px; left: 1.8rem;
  background: var(--gold); color: #14110a;
  font-family: 'Oswald', sans-serif; font-size: .62rem; text-transform: uppercase;
  letter-spacing: .18em; padding: .3rem .7rem;
}
.service-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.service-card h3 { font-size: 1.7rem; margin: .4rem 0 .6rem; color: var(--ink); }
.service-card p { color: var(--muted); font-size: .92rem; }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px;
  gap: 1rem; max-width: 1150px; margin: 0 auto;
}
.gallery-grid figure { overflow: hidden; position: relative; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.3); transition: transform .6s ease, filter .4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); filter: grayscale(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* About */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  background: var(--bg-2); max-width: 1200px; margin: 0 auto;
}
.about-media img { width: 100%; height: 520px; object-fit: cover; filter: grayscale(.35); border: 1px solid var(--line); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; color: var(--ink); }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-list { list-style: none; margin: 1.4rem 0 2rem; }
.about-list li { position: relative; padding-left: 1.6rem; margin-bottom: .7rem; color: #d5d0c6; }
.about-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }

/* Visit */
.visit { background: var(--bg); }
.visit-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  max-width: 1080px; margin: 0 auto; align-items: start;
}
.visit-info h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 2rem; color: var(--ink); }
.info-block { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.info-block h4 {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .2em;
  font-size: .72rem; color: var(--gold); margin-bottom: .4rem; font-weight: 500;
}
.info-block p { color: #d5d0c6; }
.visit-card { background: var(--panel); border: 1px solid var(--line); padding: 2.4rem; box-shadow: var(--shadow); }
.visit-card h3 { font-size: 2rem; color: var(--ink); }
.visit-card-sub { color: var(--muted); margin-bottom: 1.6rem; font-size: .92rem; }
.visit-card label {
  display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .12em; font-size: .7rem; color: var(--muted); margin-bottom: 1rem;
}
.visit-card input, .visit-card select {
  width: 100%; margin-top: .4rem; padding: .8rem .9rem;
  background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  font-family: 'Inter', sans-serif; font-size: .95rem;
}
.visit-card input:focus, .visit-card select:focus { outline: none; border-color: var(--gold); }
.booked-msg { display: none; margin-top: 1rem; color: var(--gold); font-size: .9rem; }

/* Footer */
.site-footer { text-align: center; padding: 4rem 6vw 3rem; border-top: 1px solid var(--line); background: #000; }
.footer-brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-tag { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .1em; color: var(--gold); margin-bottom: 1.4rem; }
.footer-links { display: flex; gap: 1.8rem; justify-content: center; margin-bottom: 1.6rem; }
.footer-links a { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: #5f5b53; font-size: .78rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav { gap: 1rem; }
  .nav a:not(.nav-book) { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about-media img { height: 340px; }
  .visit-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 4rem 6vw; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .g-wide { grid-column: span 2; }
}
