/* ═══════════════════════════════════════════════
   Barbershop Template — Dark / Gold / Masculine
   Design DNA: Entourage Barbershop, West Hollywood
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg:           #0a0a0a;
  --surface:      #141414;
  --surface-2:    #1a1a1a;
  --text:         #f5f5f5;
  --text-muted:   #999;
  --gold:         #c0c0c0;
  --gold-dark:    #a0a0a0;
  --border:       #2a2a2a;
  --primary:      #c0c0c0;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-padding-top: 80px;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

.section-title--left {
  text-align: left;
}

/* ═══════════════════════════════════════════════
   HEADER — dark, minimal
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--text);
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--gold);
}

.btn-book {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-book:hover {
  background: var(--gold-dark);
}

/* Hamburger */
.header-hamburger {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO — dramatic dark photo
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.12;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 40px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ═══════════════════════════════════════════════
   GALLERY — 4-column grid, the centerpiece
   ═══════════════════════════════════════════════ */
.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid var(--gold);
  transition: border-width 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  border-width: 3px;
}

/* ═══════════════════════════════════════════════
   SERVICES — Visual Cards
   ═══════════════════════════════════════════════ */
.services-visual {
  background: var(--surface);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

.svc-card__content {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 100%;
}

.svc-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 4px;
}

.svc-card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   HOURS + PRICING — split section
   ═══════════════════════════════════════════════ */
.hours-pricing {
  padding: 0;
  background: linear-gradient(to right, var(--surface-2) 50%, var(--surface) 50%);
}

.hours-pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hours-pricing__left {
  padding: 64px 48px 64px 0;
}

.hours-pricing__right {
  padding: 64px 0 64px 48px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.hours-time {
  color: var(--text-muted);
}

.hours-closed {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.hours-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-list {
  max-width: 100%;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  margin: 0 12px;
  min-width: 40px;
  position: relative;
  top: -4px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   BARBERS — THE TEAM
   ═══════════════════════════════════════════════ */
.barbers {
  background: var(--surface);
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.barber-card {
  text-align: center;
}

.barber-photo {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.barber-card:hover .barber-photo img {
  filter: grayscale(0%);
}

.barber-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.barber-title {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.barber-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.barber-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.barber-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   ABOUT — full-width bg image with dark overlay
   ═══════════════════════════════════════════════ */
.about {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.about-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   REVIEWS — dark themed
   ═══════════════════════════════════════════════ */
.reviews {
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--surface-2);
  padding: 32px;
  border: 1px solid var(--border);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   FAQ — dark themed overrides for base.css
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--bg);
}

.faq .faq-item {
  border-color: var(--border);
}

.faq .faq-question {
  color: var(--text);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq .faq-question:hover {
  color: var(--gold);
}

.faq .faq-answer-inner {
  color: var(--text-muted);
}

.faq .faq-icon {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   FOOTER — black, gold accents
   ═══════════════════════════════════════════════ */
.footer {
  background: #000;
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-contact p,
.footer-hours p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-contact a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .btn-book {
    display: none;
  }

  .header-hamburger {
    display: flex;
  }

  .header-hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .header-hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .hours-pricing__inner {
    padding: 0;
  }

  .hours-pricing__left,
  .hours-pricing__right {
    padding: 48px 24px;
  }

  .barbers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .btn-outline {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .svc-card {
    aspect-ratio: 16 / 9;
  }

  .about {
    min-height: 400px;
  }
}
