/* =============================================
   MT CLIPPERS BARBERSHOP — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E5001A;
  --red-dark:  #B00016;
  --red-light: #FF4040;
  --white:     #FFFFFF;
  --off-white: #F8F5F5;
  --dark:      #0D0D0D;
  --gray:      #1A1A1A;
  --mid-gray:  #555555;
  --light-gray:#E8E0E0;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.18);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Utility ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title span { color: var(--red); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid rgba(229,0,26,0.25);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.navbar-links a:hover { color: var(--red); }

.navbar-links .btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.navbar-links .btn-nav:hover { background: var(--red-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  padding: 1.5rem 5%;
  z-index: 99;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* HERO BACKGROUND PHOTO: Place your interior photo at images/hero-bg.jpg */
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
}

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

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(229,0,26,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(229,0,26,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(229,0,26,0.03) 40px,
      rgba(229,0,26,0.03) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--red); display: block; }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero .hero-slogan {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  margin-top: -0.75rem;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
  max-width: none;
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-giftcard {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.18);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-giftcard:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  text-align: center;
  gap: 0.3rem;
}

.hero-badge .badge-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.hero-badge .badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '✂';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  font-size: 18rem;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.services .section-title { color: var(--white); }
.services .section-label { color: var(--red); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateX(5px);
  box-shadow: -4px 0 20px rgba(229,0,26,0.15);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(229,0,26,0.1);
  border: 1px solid rgba(229,0,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-info { flex: 1; }

.service-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.service-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.15rem;
}

.service-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.service-addon {
  background: rgba(229,0,26,0.08);
  border: 1px dashed rgba(229,0,26,0.3);
  border-radius: 10px;
  padding: 1.2rem 2rem;
  text-align: center;
  grid-column: 1 / -1;
}

.service-addon span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.service-addon strong { color: var(--red); }

/* ============================================================
   BARBERS SECTION
   ============================================================ */
.barbers-section {
  padding: 100px 0;
  background: var(--dark);
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.barber-card {
  position: relative;
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: block;
}

.barber-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.barber-card-photo {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.barber-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.barber-card:hover .barber-card-photo img {
  transform: scale(1.07);
}

.barber-card-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--gray), transparent);
  pointer-events: none;
}

.barber-card-body {
  padding: 1.5rem;
}

.barber-card-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.barber-card-handle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.barber-card-btn {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.barber-card:hover .barber-card-btn {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  padding: 100px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.app-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
}

.app-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.app-text .section-label { color: rgba(255,255,255,0.7); }
.app-text .section-title { color: var(--white); }

.app-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.app-store-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.app-store-btn svg { width: 22px; height: 22px; fill: var(--white); }

.app-store-btn-inner { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn-inner small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }
.app-store-btn-inner strong { font-size: 1rem; }

.app-mockup {
  font-size: 8rem;
  opacity: 0.15;
  line-height: 1;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  padding: 100px 0;
  background: var(--gray);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(229,0,26,0.15);
  border: 1px solid rgba(229,0,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.location-detail-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 340px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(229,0,26,0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  max-width: 220px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   BARBER INDIVIDUAL PAGE
   ============================================================ */
.barber-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.barber-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 42%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 72%),
    linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 10%, rgba(0,0,0,0) 20%),
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,1) 82%, rgba(0,0,0,1) 100%);
}

.barber-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(229,0,26,0.2) 0%, transparent 65%);
}

.barber-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(229,0,26,0.04) 40px,
      rgba(229,0,26,0.04) 41px
    );
}

.barber-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.barber-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
  border: 3px solid rgba(229,0,26,0.5);
  box-shadow: 0 0 40px rgba(229,0,26,0.3);
}

.barber-hero-text .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  transition: gap 0.2s;
}
.barber-hero-text .back-link:hover { gap: 0.75rem; }

.barber-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.barber-hero-text .barber-title {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.barber-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  transition: border-color 0.2s, color 0.2s;
}
.barber-social:hover { border-color: var(--red); color: var(--red); }

.barber-book-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: background 0.2s, transform 0.2s;
}
.barber-book-btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

/* Barber Services on individual page */
.barber-services {
  padding: 80px 0;
  background: var(--off-white);
}
.barber-services .section-title { color: var(--dark); }
.barber-services .section-label { color: var(--red); }

/* ---- Barber Bio ---- */
.barber-bio {
  padding: 80px 0;
  background: var(--dark);
}

.barber-bio-inner {
  max-width: 760px;
}

.barber-bio p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: rgba(229,0,26,0.4); }

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars span {
  color: #F59E0B;
  font-size: 1rem;
}

.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}

.review-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
}

.review-google-badge svg { opacity: 0.5; }

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-google-reviews:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.reviews-leave-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.reviews-leave-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.btn-leave-review {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-leave-review:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

/* ============================================================
   BARBER PHOTO & INSTAGRAM BUTTON
   ============================================================ */
.barber-avatar img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 3px solid rgba(229,0,26,0.5);
  box-shadow: 0 0 40px rgba(229,0,26,0.3);
  display: block;
}

.barber-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.75rem;
}

.btn-instagram:hover { opacity: 0.88; transform: translateY(-2px); }

/* Navbar logo */
.navbar-logo {
  height: 42px;
  width: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero-badge { display: none; }

  .location-inner { grid-template-columns: 1fr; }
  .map-placeholder { height: 280px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .barbers-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .app-inner { flex-direction: column; }
  .barber-hero-content { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .barbers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (landing pages: services, team, app, gallery)
   ============================================================ */
.page-hero {
  min-height: 32vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(229,0,26,0.15) 0%, transparent 65%);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(229,0,26,0.025) 40px,
    rgba(229,0,26,0.025) 41px
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  transition: gap 0.2s;
}

.page-hero-content .back-link:hover { gap: 0.75rem; }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.7;
}

/* ============================================================
   QUICK NAV SECTION (homepage navigation cards)
   ============================================================ */
.quicknav-section {
  padding: 60px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.quicknav-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quicknav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.quicknav-card--gift {
  border-left-color: #c8961a;
}

.quicknav-card--gift:hover {
  box-shadow: 0 8px 30px rgba(200,150,26,0.18);
}

.quicknav-card--gift .quicknav-arrow { color: #c8961a; }

.quicknav-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.quicknav-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(229,0,26,0.15);
}

.quicknav-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.quicknav-text { flex: 1; }

.quicknav-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.quicknav-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.quicknav-arrow {
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.quicknav-card:hover .quicknav-arrow { transform: translateX(4px); }

@media (max-width: 1100px) {
  .quicknav-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .quicknav-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .quicknav-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT SECTION (homepage info)
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--gray);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-label { color: var(--red); }
.about-text .section-title { color: var(--white); margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-feature {
  background: rgba(229,0,26,0.06);
  border: 1px solid rgba(229,0,26,0.2);
  border-radius: 10px;
  padding: 0.75rem;
}

.about-feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.about-feature-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.about-feature-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.about-stat-block {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-stat:first-child { padding-top: 0; }
.about-stat:last-child { border-bottom: none; padding-bottom: 0; }

.about-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: 60px 0 100px;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}

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

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

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
