/* ===============================
   CRYSTALZ BARBERSHOP — design system
   Premium black + gold barbershop aesthetic
   =============================== */

:root {
  --bg-primary: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --gold: #C9A961;
  --gold-bright: #E8CB7E;
  --gold-deep: #9A7E3F;
  --gold-glow: rgba(201, 169, 97, 0.15);
  --cream: #F5EFE0;
  --cream-dim: #BDB7A8;
  --border-subtle: #2A2520;
  --border-gold: #3D3220;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(201, 169, 97, 0.25);
  --max-width: 1280px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; line-height: 1.2;
  letter-spacing: 0.02em; /* Cinzel needs more tracking, not less */
  text-transform: none;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.8vw, 3rem); margin-bottom: 1rem; font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Section labels — small uppercase gold */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 60px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 50px; height: 1px; background: var(--gold);
}

/* ===============================
   Navigation
   =============================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 36px;
  transition: all var(--transition);
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 36px;
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--cream); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: var(--bg-primary);
  border: none; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.15,1), background var(--transition), box-shadow var(--transition), color var(--transition);
  position: relative; overflow: hidden; will-change: transform;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.2);
}
@media (hover: none) { .btn { transform: none !important; } }
.btn::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4); }
.btn-outline {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-primary); }

.nav-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }

/* ===============================
   Hero
   =============================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 60px; text-align: center;
}
.hero-image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) brightness(0.55) contrast(1.15);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero-pattern {
  position: absolute;
  inset: -10% 0;
  width: 100%; height: 120%;
  z-index: 0;
  background-image: url("../images/hero-pattern.webp");
  background-size: 900px auto;
  background-position: center;
  background-repeat: repeat;
  filter: invert(1) brightness(0.95) contrast(1.1);
  opacity: 0.55;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (max-width: 768px) {
  .hero-pattern {
    background-image: url("../images/hero-pattern-mobile.webp");
    background-size: 600px auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pattern { transform: none !important; opacity: 0.45 !important; }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 70%);
}
@keyframes hero-pan {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  100% { background-position: 0% 0%, 8% 4%, -6% 3%, 4% -2%, 0% 0%; }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3CradialGradient id='g'%3E%3Cstop offset='0%25' stop-color='%23C9A961' stop-opacity='0.15'/%3E%3Cstop offset='100%25' stop-color='%23000' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='100' cy='100' r='40' fill='url(%23g)'/%3E%3C/svg%3E");
  background-position: 20% 20%, 80% 70%; background-repeat: no-repeat;
  opacity: 0.6;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  color: var(--gold); font-size: 0.85rem; font-weight: 500; letter-spacing: 8px;
  text-transform: uppercase; margin-bottom: 24px; opacity: 0;
  animation: fade-up 1s 0.2s forwards;
}
.hero-title {
  color: var(--cream); margin-bottom: 32px;
}
.hero-title .word {
  display: inline-block; opacity: 0;
  transform: translateY(60%); filter: blur(8px);
  animation: word-in .9s var(--d) cubic-bezier(.2,.7,.15,1) forwards;
  margin-right: 0.22em;
}
.hero-title .italic {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0; /* italic doesn't need extra tracking */
}
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-sub {
  color: var(--cream-dim); font-size: 1.15rem; max-width: 600px; margin: 0 auto 48px;
  opacity: 0; animation: fade-up 1s 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fade-up 1s 1.1s forwards;
}
.hero-divider {
  width: 80px; height: 1px; background: var(--gold); margin: 32px auto;
  opacity: 0; animation: fade-up 1s 0.6s forwards;
}
.hero-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 16px;
  opacity: 0; animation: fade-up 1s 0.4s forwards; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Marquee strip
   =============================== */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border-gold);
  background: var(--bg-primary); padding: 36px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-primary), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-primary), transparent); }
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  letter-spacing: 0.02em;
}
.marquee-track span:nth-child(even) { color: var(--gold); -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===============================
   Section base
   =============================== */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head h2 { color: var(--cream); }
.section-head p { color: var(--cream-dim); font-size: 1.1rem; margin-top: 16px; }

/* ===============================
   About / Family Story
   =============================== */
.about { background: var(--bg-card); position: relative; }
.about::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .eyebrow { padding-left: 0; }
.about-text .eyebrow::before { display: none; }
.about-text p { color: var(--cream-dim); margin-bottom: 16px; font-size: 1.02rem; }
.family-card {
  background: var(--bg-primary); border: 1px solid var(--border-gold);
  padding: 32px; border-radius: var(--radius); margin-top: 24px;
}
.family-card h4 { color: var(--gold); margin-bottom: 8px; font-family: 'Inter'; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
.family-card .family-list { color: var(--cream); font-size: 1.1rem; line-height: 1.9; }
.family-card .family-list span { color: var(--gold); }
.family-card .family-list a {
  color: var(--cream); text-decoration: none;
  display: inline-block; padding: 2px 6px; margin: -2px -6px;
  border-radius: 2px; transition: background var(--transition), color var(--transition);
  position: relative;
}
.family-card .family-list a:hover {
  background: rgba(201, 169, 97, 0.08); color: var(--gold-bright);
}
.family-card .family-list a:hover span { color: var(--gold-bright); }
.family-card .family-list a::after {
  content: "→"; opacity: 0; margin-left: 8px;
  transition: opacity var(--transition), margin-left var(--transition);
  color: var(--gold);
}
.family-card .family-list a:hover::after { opacity: 1; margin-left: 12px; }

.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) brightness(0.4) contrast(1.1);
  z-index: 1;
}
.about-visual::before {
  content: ""; position: absolute; inset: 20px; border: 1px solid var(--gold);
  opacity: 0.5; z-index: 2; pointer-events: none;
}
.about-visual-text {
  text-align: center; padding: 40px;
  position: relative; z-index: 3;
}
.about-visual-text .stat-number {
  font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.about-visual-text .stat-label {
  color: var(--cream-dim); font-size: 0.85rem; letter-spacing: 4px;
  text-transform: uppercase; margin-top: 12px;
}
.about-visual-text .stat-divider {
  width: 60px; height: 1px; background: var(--gold); margin: 24px auto;
}

/* ===============================
   Barbers grid
   =============================== */
.barbers { background: var(--bg-primary); }
.barbers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px;
}
.barber-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.barber-card:hover {
  transform: translateY(-8px); border-color: var(--gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.barber-image {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--bg-card-hover);
}
.barber-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%) contrast(1.05);
}
.barber-card:hover .barber-image img {
  transform: scale(1.06); filter: grayscale(0%) contrast(1.1);
}
.barber-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--bg-primary); color: var(--gold); padding: 6px 12px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--gold); border-radius: var(--radius);
}
.barber-info { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.barber-name { color: var(--cream); margin-bottom: 4px; }
.barber-handle {
  color: var(--gold); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
  margin-bottom: 16px; display: inline-block;
}
.barber-handle:hover { color: var(--gold-bright); }
.barber-bio { color: var(--cream-dim); font-size: 0.95rem; flex: 1; margin-bottom: 20px; }
.barber-prices {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
  font-size: 0.78rem; color: var(--cream-dim);
}
.barber-prices span { color: var(--gold); font-weight: 600; }
.barber-card .btn { width: 100%; text-align: center; padding: 12px 16px; font-size: 0.82rem; }

/* ===============================
   Services
   =============================== */
.services { background: var(--bg-card); position: relative; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: var(--radius);
  padding: 32px 28px; text-align: center; transition: all var(--transition); position: relative;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 50%; width: 40px; height: 1px;
  background: var(--gold); transform: translateX(-50%);
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  background: var(--bg-card-hover);
}
.service-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem;
  border: 1px solid var(--gold); border-radius: 50%;
}
.service-name { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.service-price { color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.service-note { color: var(--cream-dim); font-size: 0.82rem; margin-top: 8px; }

/* ===============================
   Gallery
   =============================== */
.gallery { background: var(--bg-primary); padding-bottom: 60px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  grid-auto-rows: 200px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-card); cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-primary) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  position: relative;
}
.gallery-placeholder::before {
  content: ""; position: absolute; inset: 16px; border: 1px solid var(--border-gold);
  opacity: 0.5;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: grayscale(15%) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0%) contrast(1.12); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cta {
  text-align: center; margin-top: 48px;
}

/* ===============================
   Locations
   =============================== */
.locations { background: var(--bg-card); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location-card {
  background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: var(--radius);
  padding: 40px; transition: all var(--transition);
}
.location-card:hover { border-color: var(--gold); }
.location-name {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800;
  color: var(--cream); margin-bottom: 8px;
}
.location-eyebrow { color: var(--gold); font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.location-details { color: var(--cream-dim); margin-top: 20px; line-height: 2; }
.location-details a { color: var(--gold); }
.location-details a:hover { color: var(--gold-bright); }
.location-hours { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.location-hours dt { color: var(--cream); font-size: 0.85rem; font-weight: 600; }
.location-hours dd { color: var(--cream-dim); font-size: 0.85rem; margin-bottom: 8px; }
.location-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.location-actions .btn { padding: 10px 20px; font-size: 0.78rem; }

/* ===============================
   Reviews
   =============================== */
.reviews { background: var(--bg-primary); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius);
  padding: 32px 28px; transition: all var(--transition); position: relative;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.review-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.95rem; }
.review-quote { color: var(--cream); font-style: italic; font-size: 1.02rem; margin-bottom: 20px; line-height: 1.7; }
.review-author { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===============================
   Booking modal
   =============================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius);
  max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 40px; position: relative;
  animation: modal-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--cream-dim); font-size: 1.6rem;
  cursor: pointer; transition: color var(--transition);
}
.modal-close:hover { color: var(--gold); }
.modal h3 { color: var(--cream); margin-bottom: 8px; }
.modal-sub { color: var(--cream-dim); margin-bottom: 32px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; color: var(--cream); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg-primary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 14px 16px;
  color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal .btn { width: 100%; margin-top: 16px; }
.form-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.form-success.open { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: var(--gold); font-size: 2rem;
}
.form-error {
  background: rgba(255, 80, 80, 0.1); border: 1px solid rgba(255, 80, 80, 0.5);
  color: #ff8080; padding: 12px 16px; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 16px; display: none;
}
.form-error.open { display: block; }

/* ===============================
   Footer
   =============================== */
.footer {
  background: var(--bg-primary); border-top: 1px solid var(--border-gold);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-tagline { color: var(--cream-dim); font-size: 0.92rem; max-width: 300px; }
.footer h5 {
  color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.78rem;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; color: var(--cream-dim); font-size: 0.92rem; }
.footer ul li a { color: var(--cream-dim); }
.footer ul li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim); transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); margin-top: 48px; padding-top: 24px;
  text-align: center; color: var(--cream-dim); font-size: 0.82rem;
}

/* ===============================
   Scroll reveal — DISABLED (kept class hooks for future re-enable, but everything visible by default)
   The site has plenty of motion (hero word-reveal, marquee, magnetic CTAs, image zooms);
   scroll-reveal-on-IntersectionObserver added complexity without enough payoff and broke screenshots.
   =============================== */
.reveal { opacity: 1; transform: none; }

/* ===============================
   Mobile
   =============================== */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile-open .nav-links {
    display: flex; position: fixed; inset: 60px 0 0 0; background: var(--bg-primary);
    flex-direction: column; padding: 40px 24px; gap: 24px; z-index: 99;
    border-top: 1px solid var(--border-gold);
  }
  .nav .btn { display: none; }
  .about-grid, .locations-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 1/1; max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: auto !important; }
  .gallery-item:nth-child(1) { grid-column: span 2 !important; }
  section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
}

/* ===============================
   Barber bio pages (/barbers/*.html)
   =============================== */
.barber-page-hero {
  position: relative; min-height: 70vh;
  display: grid; grid-template-columns: 1fr 1.2fr; align-items: center;
  padding: 140px 60px 80px; gap: 64px;
  overflow: hidden;
}
.barber-page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 70%),
    linear-gradient(135deg, #0F0E0C 0%, #0A0A0A 50%, #14110C 100%);
}
.barber-page-portrait {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px; aspect-ratio: 1/1; object-fit: cover;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  filter: grayscale(15%) contrast(1.05);
  box-shadow: var(--shadow-card);
  justify-self: end;
}
.barber-page-hero-content { position: relative; z-index: 1; }
.barber-page-back {
  display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px;
  transition: color var(--transition);
}
.barber-page-back:hover { color: var(--gold-bright); }
.barber-page-badge {
  display: inline-block; color: var(--gold); padding: 6px 14px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--gold); border-radius: var(--radius);
  margin-bottom: 20px;
}
.barber-page-name {
  font-family: 'Cinzel', serif; font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream); line-height: 1.05; margin-bottom: 4px; letter-spacing: 0.02em;
}
.barber-page-fullname {
  color: var(--cream-dim); font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; margin-bottom: 16px;
}
.barber-page-handle {
  display: inline-block; color: var(--gold); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 1px; margin-bottom: 24px;
  transition: color var(--transition);
}
.barber-page-handle:hover { color: var(--gold-bright); }
.barber-page-bio {
  color: var(--cream-dim); font-size: 1.1rem; line-height: 1.7; margin-bottom: 28px;
  max-width: 540px;
}
.barber-page-meta {
  display: grid; grid-template-columns: 1fr; gap: 8px; max-width: 540px;
  padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}
.barber-page-meta div { color: var(--cream); font-size: 0.92rem; }
.barber-page-meta span {
  display: inline-block; min-width: 80px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-right: 12px;
}
.barber-page-meta a { color: var(--gold); }
.barber-page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.barber-page-pricing { background: var(--bg-card); padding: 80px 0; }
.barber-page-pricing .eyebrow { display: block; text-align: center; padding-left: 0; }
.barber-page-pricing .eyebrow::before { display: none; }
.barber-page-pricing h2 { text-align: center; margin-bottom: 48px; color: var(--cream); }
.barber-page-pricing .services-grid { max-width: 980px; margin: 0 auto; }
.barber-page-gallery-section { background: var(--bg-primary); padding: 80px 0; }
.barber-page-gallery-section .eyebrow { display: block; text-align: center; padding-left: 0; }
.barber-page-gallery-section .eyebrow::before { display: none; }
.barber-page-gallery-section h2 { text-align: center; margin-bottom: 48px; color: var(--cream); }
.barber-page-gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.barber-page-gallery .gallery-item {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
}
.barber-page-cta {
  background: var(--bg-card); padding: 80px 0;
  text-align: center; border-top: 1px solid var(--border-gold);
}
.barber-page-cta .eyebrow { padding-left: 0; }
.barber-page-cta .eyebrow::before { display: none; }

@media (max-width: 900px) {
  .barber-page-hero {
    grid-template-columns: 1fr; padding: 100px 24px 40px; gap: 32px;
    text-align: center; min-height: auto;
  }
  .barber-page-portrait { max-width: 280px; justify-self: center; }
  .barber-page-bio { max-width: none; margin-left: auto; margin-right: auto; }
  .barber-page-meta { max-width: none; }
  .barber-page-meta span { min-width: 70px; }
  .barber-page-actions { justify-content: center; }
}

/* ===============================
   Mobile sticky CTA bar
   =============================== */
.mobile-cta-bar { display: none; }
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    padding-bottom: env(safe-area-inset-bottom, 0); /* respect iPhone home indicator */
  }
  .mcta {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 14px 6px; text-align: center;
    color: var(--cream); text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 0.72rem; font-weight: 700;
    border-right: 1px solid var(--border-subtle);
    transition: background var(--transition), transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 60px;
  }
  .mcta:last-child { border-right: 0; }
  .mcta svg { stroke-width: 2.2; }
  .mcta:active { transform: scale(0.96); }
  .mcta-primary { background: var(--gold); color: var(--bg-primary); }
  .mcta-primary:active { background: var(--gold-bright); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
}

/* ===============================
   Mobile-specific polish
   =============================== */
@media (max-width: 900px) {
  /* Bigger hero punch on phones */
  .hero { min-height: 92vh; padding: 110px 20px 40px; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 5px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.6rem); line-height: 1.1; }
  .hero-sub { font-size: 0.98rem; padding: 0 8px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; padding: 16px; }
  /* About spacing */
  .about-text h2, .section-head h2 { font-size: 1.85rem; }
  .family-card .family-list { font-size: 1rem; line-height: 1.85; }
  .stat-number { font-size: 3.6rem !important; }
  .about-visual-text .stat-number { font-size: 3.6rem; }
  /* Barber cards 1-col on small phones, 2-col on larger */
  .barbers-grid { grid-template-columns: 1fr; gap: 20px; }
  /* Services grid 2-col */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 24px 14px; }
  .service-name { font-size: 1rem; }
  .service-price { font-size: 1.2rem; }
  /* Locations stack */
  .location-card { padding: 28px 22px; }
  .location-name { font-size: 1.4rem; }
  /* Modal full-screen feel */
  .modal-overlay { padding: 0; }
  .modal {
    border-radius: 0; max-width: 100%; max-height: 100vh; height: 100vh;
    padding: 56px 24px 40px;
  }
  /* Reviews 1-col */
  .reviews-grid { grid-template-columns: 1fr; }
  /* Footer center-align */
  .footer-grid { gap: 28px; }
  .footer-tagline { max-width: none; }
  .footer h5 { margin-bottom: 12px; }
}
@media (min-width: 540px) and (max-width: 900px) {
  .barbers-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 380px) {
  .mcta { font-size: 0.66rem; letter-spacing: 1px; padding: 12px 4px; }
  .hero-title { font-size: 2.2rem; }
}

/* ===============================
   Reduced motion respect
   =============================== */
@media (prefers-reduced-motion: reduce) {
  .hero-title .word, .hero-bg { animation: none !important; }
  .hero-title .word { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
