:root {
  --bg: #090909;
  --surface: #111111;
  --surface-2: #171717;
  --surface-3: #202020;
  --text: #f8f3dd;
  --muted: #d7cda6;
  --gold: #e5be58;
  --gold-soft: #a58534;
  --border: #3a3018;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% 0%, #1a1306 0%, var(--bg) 45%);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
}

.brand h1 {
  margin: 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}

.hero-page {
  position: relative;
  padding: 72px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 23, 8, 0.6), rgba(6, 6, 6, 0.95));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.hero-left,
.hero-right {
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.tag,
.section-label {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-left h2 {
  margin: 10px 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.22;
}

.hero-left p {
  margin: 0;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn.gold {
  background: var(--gold);
  color: #1a1305;
}

.btn.outline {
  border-color: var(--gold-soft);
  color: var(--gold);
}

.hero-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  background: #1a1a1a;
  border: 1px solid #312811;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.83rem;
  color: var(--muted);
}

.hero-panel h3 {
  margin: 8px 0 14px;
  font-family: "Cinzel", serif;
  color: var(--gold);
}

.hero-list {
  margin: 0;
  padding-left: 18px;
}

.strip {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.strip div {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
}

.section-dark,
.section-alt,
.hours-page,
.contact-page {
  margin-bottom: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: var(--surface);
}

.section-alt {
  background: var(--surface-2);
}

.section-head h2 {
  margin: 8px 0;
  font-family: "Cinzel", serif;
  color: var(--gold);
}

.section-subtext {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-card,
.barber-card,
.hours-card,
.policy-card,
.contact-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.service-card h3,
.barber-card h3 {
  margin: 4px 0 8px;
  color: var(--gold);
}

.service-desc,
.barber-card p,
.contact-card p {
  color: var(--muted);
}

.service-price {
  font-size: 1.3rem;
  font-weight: 800;
}

.price-type,
.barber-role {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.barbers-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.barber-phone,
.phone-link {
  color: var(--gold);
  font-weight: 800;
}

.barber-actions,
.contact-buttons,
.booking-actions {
  margin: 12px 0 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
}

.barber-suit {
  margin: 22px 0 14px;
}

.barber-suit img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
}

.hours-wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #3d3217;
  padding-bottom: 6px;
  color: var(--muted);
}

.policy-list {
  margin: 0;
  padding-left: 18px;
}

.address {
  display: inline-block;
  margin: 12px 0;
  color: var(--muted);
}

.site-footer {
  padding: 20px 16px 34px;
  text-align: center;
  color: #c9be96;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px;
  }

  .section-dark,
  .section-alt,
  .hours-page,
  .contact-page {
    padding: 18px;
  }

  .hero-left,
  .hero-right {
    padding: 18px;
  }
}
