:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #0d0d0d;
  --text: #f2ede5;
  --muted: #888076;
  --line: rgba(255,255,255,0.08);
  --gold: #c9a24b;
  --gold-dim: rgba(201,162,75,0.15);
  --max: 1180px;
  --radius: 3px;
  --shadow: 0 4px 24px rgba(0,0,0,0.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* ── NAV ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-active {
  color: var(--gold);
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HOME HERO ── */
.hero { padding: 80px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: var(--gold-dim);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 20px 0 22px;
  background: linear-gradient(135deg, #f2ede5 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.meta-card {
  padding: 18px 16px;
  background: #0d0d0d;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.meta-card:last-child { border-right: none; }

.meta-card strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.meta-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid var(--gold);
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(8,8,8,0.92);
  border: 1px solid rgba(201,162,75,0.4);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 240px;
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-badge strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
  background: linear-gradient(135deg, #f2ede5 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .lead {
  max-width: 560px;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ── SECTIONS ── */
section { padding: 36px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1;
  color: var(--text);
}

.section-head h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
  font-size: 0.95rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── CARDS ── */
.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
}

/* ── GRIDS ── */
.services-grid,
.reasons-grid,
.reviews-grid,
.gallery-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.services-grid { grid-template-columns: repeat(3, 1fr); }
.reasons-grid  { grid-template-columns: repeat(3, 1fr); }

/* Services page: full pricing table layout */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-full-card {
  position: relative;
  overflow: hidden;
}

.service-full-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,75,0.1), var(--panel));
}

.service-full-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 14px;
  right: -22px;
  background: var(--gold);
  color: #080808;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 28px;
  transform: rotate(45deg);
  transform-origin: center;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-includes li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* Add-ons table */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.addon-card {
  text-align: center;
  padding: 22px 16px;
}

.addon-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.addon-card .price {
  display: block;
  margin-top: 10px;
}

.service-card h3,
.reason-card h3,
.review-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.price {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.reason-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ── GALLERY ── */
.gallery-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
}

/* Gallery page: full expanded layout */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: 300px;
}

.gallery-full-grid .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-full-grid .gallery-item:nth-child(7) { grid-row: span 2; }

/* Gallery category filter pills */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-pill {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: 0.16s ease;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.01); }

.gallery-item.large { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.62));
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── REVIEWS ── */
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review-card p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }

.stars {
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.about-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--text);
}

.about-copy p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.93rem;
}

.values-list li strong {
  color: var(--gold);
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* Barber profiles */
.barbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.barber-card {
  overflow: hidden;
}

.barber-photo {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center top;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.barber-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--text);
}

.barber-role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.barber-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── CONTACT ── */
.contact-grid { grid-template-columns: 0.95fr 1.05fr; align-items: stretch; }

.hours {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.hours div strong { color: var(--text); }

/* Map placeholder */
.map-placeholder {
  margin-top: 24px;
  height: 180px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 29px,
      rgba(255,255,255,0.03) 29px, rgba(255,255,255,0.03) 30px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 29px,
      rgba(255,255,255,0.03) 29px, rgba(255,255,255,0.03) 30px
    ),
    #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 6px;
}

.map-placeholder span {
  margin-left: 28px;
  color: var(--gold);
}

form { display: grid; gap: 12px; }

input, textarea {
  width: 100%;
  background: #0d0d0d;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(201,162,75,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { min-height: 130px; resize: vertical; }

/* ── HOME CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  color: #080808;
  padding: 36px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #080808;
  margin: 0;
}

.cta-strip p {
  color: rgba(8,8,8,0.65);
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.btn-dark {
  background: #080808;
  color: var(--gold);
  border-color: #080808;
  white-space: nowrap;
}
.btn-dark:hover {
  background: transparent;
  color: #080808;
  border-color: #080808;
}

/* ── FOOTER ── */
footer {
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--gold);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 20px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.16s;
}
.footer-nav a:hover { color: var(--gold); }

.demo-note { font-size: 0.88rem; margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-grid, .story, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .services-full-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-full-grid .gallery-item:nth-child(7) { grid-row: span 1; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .barbers-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 460px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { padding-top: 48px; }
  .page-hero { padding: 44px 0 32px; }
  .hero-meta,
  .services-grid,
  .services-full-grid,
  .reasons-grid,
  .gallery-grid,
  .gallery-full-grid,
  .barbers-grid,
  .addons-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-row: span 1; }
  .card { padding: 20px; }
}