/* ================================================================
   RICH BRAND BARBERSHOP — style.css
   ================================================================ */

:root {
  --black:         #0a0a0a;
  --gold:          #b8972a;
  --gold-light:    #d4af50;
  --gold-dim:      #7a6320;
  --white:         #f5f2eb;
  --white-muted:   #c8c4b8;
  --surface:       #111109;
  --surface2:      #1a1a14;
  --border:        rgba(184,151,42,0.2);
  --border-strong: rgba(184,151,42,0.5);

  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-condensed: 'Barlow Condensed', sans-serif;
  --ff-body:      'Barlow', sans-serif;

  --nav-h: 72px;
}

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* --- Typography ---------------------------------------------- */
h1 { font-family: var(--ff-display); font-weight: 300; line-height: 1.0; }
h2 { font-family: var(--ff-display); font-weight: 300; line-height: 1.1; }
h3 { font-family: var(--ff-display); font-weight: 300; }
p  { font-family: var(--ff-body); font-weight: 300; }

/* --- Eyebrow -------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ghost {
  background: transparent;
  color: var(--white-muted);
  border-color: var(--white-muted);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white-muted);
  transition: background 0.2s;
}
.nav__hamburger:hover span { background: var(--gold); }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: none;
}
.nav__overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--surface);
  border-left: 0.5px solid var(--border-strong);
  z-index: 102;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
}
.nav__drawer.open {
  right: 0;
  visibility: visible;
}
.nav__drawer-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.nav__drawer-close {
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.nav__drawer-close:hover { color: var(--gold); }
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav__drawer-links a {
  font-family: var(--ff-condensed);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
}
.nav__drawer-links a:first-child { border-top: 0.5px solid var(--border); }
.nav__drawer-links a:hover,
.nav__drawer-links a.active { color: var(--gold); }
.nav__drawer-cta { margin-top: 2rem; }
.nav__drawer-cta .btn { width: 100%; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--surface);
  border-top: 0.5px solid var(--border-strong);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__copy {
  font-family: var(--ff-condensed);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ================================================================
   PAGE WRAPPER
   ================================================================ */
.page { padding-top: var(--nav-h); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   HERO — FULL VIEWPORT
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(184,151,42,0.025) 60px,
    rgba(184,151,42,0.025) 61px
  );
  pointer-events: none;
}
.hero__rule {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(100% / 3 * 2);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold-dim) 15%,
    var(--gold) 50%,
    var(--gold-dim) 85%,
    transparent 100%
  );
  opacity: 0.4;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(
    ellipse at 75% 40%,
    rgba(184,151,42,0.09) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero__content .eyebrow {
  animation: fadeUp 0.65s ease both;
  animation-delay: 0.1s;
}
.hero__title {
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.65s ease both;
  animation-delay: 0.2s;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.65s ease both;
  animation-delay: 0.3s;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.65s ease both;
  animation-delay: 0.4s;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 0.5px solid var(--border-strong);
  border-bottom: 0.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-bar__item {
  flex: 1;
  text-align: center;
  font-family: var(--ff-condensed);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 1.25rem 2rem;
}
.trust-bar__div {
  width: 1px;
  height: 1.25rem;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ================================================================
   SECTION
   ================================================================ */
.section {
  padding: 6rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section__header { margin-bottom: 3.5rem; }
.section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
}
.section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.section__link:hover { gap: 0.85rem; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface2); }
.service-card__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dim);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.service-card__name {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-card__price {
  font-family: var(--ff-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--surface2);
  border-top: 0.5px solid var(--border-strong);
  border-bottom: 0.5px solid var(--border-strong);
  padding: 5.5rem 2.5rem;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-banner__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2.25rem;
}

/* ================================================================
   PAGE HERO (non-homepage)
   ================================================================ */
.page-hero {
  position: relative;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: 5.5rem 2.5rem 4rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(184,151,42,0.018) 60px,
    rgba(184,151,42,0.018) 61px
  );
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* ================================================================
   TWO-COLUMN LAYOUT
   ================================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.col-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.col-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ================================================================
   CONTACT DETAILS
   ================================================================ */
.contact-details { margin-top: 2.5rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--border);
}
.contact-row:first-child { border-top: 0.5px solid var(--border); }
.contact-row__label {
  font-family: var(--ff-condensed);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  padding-top: 0.1em;
  flex-shrink: 0;
}
.contact-row__value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.55;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--ff-condensed);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-req { color: var(--gold-dim); margin-left: 0.2em; }
.form-input,
.form-textarea {
  background: var(--surface);
  border: 0.5px solid var(--border);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(122,99,32,0.55); }
.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--ff-body);
}
.form-honeypot { display: none; }

/* ================================================================
   BOOKING PAGE
   ================================================================ */
.booking-widget {
  background: var(--surface);
  border: 0.5px solid var(--border-strong);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.25rem;
}
.booking-widget__icon {
  font-size: 3.5rem;
  color: var(--gold-dim);
  opacity: 0.45;
  line-height: 1;
}
.booking-widget__text {
  font-family: var(--ff-condensed);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  max-width: 260px;
  line-height: 1.8;
}
.booking-note {
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 1.25rem;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.gallery-cell {
  background: var(--surface2);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-cell--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-cell__label {
  font-family: var(--ff-condensed);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.gallery-note {
  margin-top: 2rem;
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
}

/* ================================================================
   DISCLAIMER
   ================================================================ */
.disclaimer {
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dim);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}

/* ================================================================
   404
   ================================================================ */
.body-404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-404 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  gap: 1.25rem;
}
.page-404__num {
  font-family: var(--ff-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.page-404__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--white);
}
.page-404__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-muted);
  max-width: 380px;
  line-height: 1.7;
}

/* ================================================================
   MEET THE BARBER
   ================================================================ */
.barber-section {
  background: var(--surface);
  padding: 6rem 3rem;
}
.barber-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.two-col--center { align-items: center; }
.barber-photo {
  aspect-ratio: 3 / 4;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 380px;
  margin: 0 auto;
}
.barber-photo__icon {
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
}
.barber-photo__label {
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.barber-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0;
}
.barber-title em {
  font-style: italic;
  color: var(--gold);
}
.barber-divider {
  width: 3rem;
  height: 0.5px;
  background: var(--gold-dim);
  margin: 1.5rem 0 2.5rem;
}
.barber-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.barber-body--placeholder {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section {
  background: var(--black);
  padding: 6rem 3rem;
}
.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.reviews-header { margin-bottom: 3rem; }
.reviews-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0;
}
.reviews-title em {
  font-style: italic;
  color: var(--gold);
}
.reviews-divider {
  width: 3rem;
  height: 0.5px;
  background: var(--gold-dim);
  margin: 1.5rem 0 0;
}

/* Rating summary bar */
.rating-bar {
  background: var(--surface);
  border-top: 0.5px solid var(--border-strong);
  border-bottom: 0.5px solid var(--border-strong);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.rating-bar__value {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 3.75rem;
  color: var(--gold);
  line-height: 1;
}
.rating-bar__stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
.rating-bar__top-rated {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.rating-bar__label {
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.rating-bar__div {
  width: 0.5px;
  height: 3rem;
  background: var(--gold-dim);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.review-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
}
.review-card__stars {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-card__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.7;
}
.review-card__line {
  width: 100%;
  height: 0.5px;
  background: var(--gold-dim);
  border: none;
  margin: 1.25rem 0;
}
.review-card__name {
  font-family: var(--ff-condensed);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* Reviews footer */
.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.reviews-source {
  font-family: var(--ff-condensed);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav { padding: 0 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__overlay { display: block; }

  .hero { padding: 0 1.5rem 5rem; }
  .hero__rule { display: none; }
  .hero__title { font-size: clamp(3.5rem, 14vw, 5.5rem); }

  .trust-bar { flex-direction: column; padding: 0; }
  .trust-bar__item { padding: 0.9rem 1.5rem; width: 100%; }
  .trust-bar__div { width: 40%; height: 0.5px; align-self: center; }

  .section { padding: 4rem 1.5rem; }
  .section__header { margin-bottom: 2.5rem; }

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

  .cta-banner { padding: 4rem 1.5rem; }
  .page-hero { padding: 5rem 1.5rem 3rem; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }

  .barber-section { padding: 4rem 1.5rem; }
  .barber-photo { max-width: 100%; }

  .reviews-section { padding: 4rem 1.5rem; }
  .rating-bar { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .rating-bar__div { width: 3rem; height: 0.5px; margin: 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell--tall { grid-row: span 1; aspect-ratio: 4/3; }

  .footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ================================================================
   RESPONSIVE — 480px
   ================================================================ */
@media (max-width: 480px) {
  .nav { padding: 0 1.25rem; }
  .hero { padding: 0 1.25rem 4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-cell--tall { aspect-ratio: 4/3; }
  .cta-banner { padding: 3.5rem 1.25rem; }
  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: 4.5rem 1.25rem 2.5rem; }
}
