/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary:        #0A0A0A;
  --bg-secondary:      #141414;
  --bg-tertiary:       #1F1F1F;
  --text-primary:      #F4F1EA;
  --text-secondary:    #A8A39A;
  --accent-gold:       #B8924A;
  --accent-gold-hover: #D4AB5C;
  --accent-blood:      #8B1A1A;
  --border:            rgba(184, 146, 74, 0.15);
  --border-hover:      rgba(184, 146, 74, 0.4);
  --header-h:          70px;
  --ff-display:        'Playfair Display', Georgia, serif;
  --ff-body:           'Inter', system-ui, sans-serif;
  --max-w:             1200px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
h2 { font-size: clamp(36px, 6vw, 56px); }

/* ============================================================
   SCROLL-TRIGGERED FADE-IN
   ============================================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHARED COMPONENT STYLES
   ============================================================ */
.overline {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s, transform 0.2s;
  border-radius: 0;
}
.btn-primary:hover { background: var(--accent-gold-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: var(--accent-gold); color: #000; transform: translateY(-1px); }

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary-white:hover { background: var(--text-primary); color: #000; transform: translateY(-1px); }

.btn-outline-full {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-full:hover { background: var(--accent-gold); color: #000; }

/* Gold divider */
.gold-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem 0;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: var(--header-h);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
#site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 40px; width: auto; }
.header-actions  { display: flex; align-items: center; gap: 1.5rem; }

.btn-book-header {
  background: var(--accent-gold);
  color: #000;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: background 0.2s;
}
.btn-book-header:hover { background: var(--accent-gold-hover); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--accent-gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* ============================================================
   OVERLAY MENU
   ============================================================ */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}
.overlay-menu.is-open { transform: translateX(0); }

.overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--accent-gold);
  font-size: 22px;
  line-height: 1;
  padding: 8px;
  transition: opacity 0.2s;
}
.overlay-close:hover { opacity: 0.7; }

.overlay-nav { text-align: center; }
.overlay-nav li { margin: 0.6rem 0; }
.overlay-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: color 0.2s, letter-spacing 0.25s;
}
.overlay-link:hover { color: var(--accent-gold); letter-spacing: 0.1em; }

.overlay-social {
  position: absolute;
  bottom: 5.5rem;
  display: flex;
  gap: 1.5rem;
  color: var(--accent-gold);
}
.overlay-social a { color: var(--accent-gold); transition: opacity 0.2s; }
.overlay-social a:hover { opacity: 0.65; }

.overlay-footer-info {
  position: absolute;
  bottom: 2rem;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 2rem;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.4)  0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  padding-top: var(--header-h);
}
.hero-tagline {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: heroUp 1s ease 0.2s both;
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.93;
  color: var(--text-primary);
  animation: heroUp 1s ease 0.4s both;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  animation: heroUp 1s ease 0.6s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: heroUp 1s ease 0.8s both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent-gold);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-family: var(--ff-body);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1;   transform: scaleY(1);    }
  50%       { opacity: 0.3; transform: scaleY(0.5);  }
}

/* ============================================================
   SECTION 2 — BRAND
   ============================================================ */
.brand-section {
  background: var(--bg-primary);
  padding: 10rem 2rem;
  text-align: center;
}
.brand-est {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.brand-logo-large {
  max-width: min(900px, 85vw);
  height: auto;
  margin: 0 auto;
}
.ornament {
  color: var(--accent-gold);
  font-size: 16px;
  letter-spacing: 10px;
  margin: 3rem auto;
}
.brand-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.brand-location {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
.services-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--border-hover); transform: scale(1.02); }
.service-card--featured { border: 2px solid var(--accent-gold); }

.service-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 1.25rem;
}
.service-icon {
  color: var(--accent-gold);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.service-icon svg { stroke: var(--accent-gold); display: block; }

.service-card h3 {
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.service-duration { font-size: 13px; color: var(--text-secondary); letter-spacing: 1px; }
.service-price    { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--accent-gold); }
.service-desc     { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.services-note {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================================
   SECTION 4 — ABOUT
   ============================================================ */
.about-section {
  background: var(--bg-secondary);
  padding: 8rem 2rem;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--accent-gold);
  filter: grayscale(100%) contrast(1.05);
}
.about-text h2 { margin-bottom: 2rem; }
.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 520px;
}
.about-sig {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 1.75rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SECTION 5 — BARBERS
   ============================================================ */
.barbers-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
}
.barbers-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.barber-card {}
.barber-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.45s ease;
}
.barber-photo--alt img {
  filter: grayscale(100%) contrast(1.1) brightness(0.88);
  transform: scaleX(-1);
}
.barber-photo--dark img {
  filter: grayscale(100%) contrast(1.15) brightness(0.78);
}
.barber-card:hover .barber-photo { border-color: var(--accent-gold); }
.barber-card:hover .barber-photo img { transform: scale(1.04); }
.barber-card:hover .barber-photo--alt img { transform: scaleX(-1) scale(1.04); }

.barber-name {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.barber-role {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.barber-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   SECTION 6 — EXPERIENCE
   ============================================================ */
.experience-section {
  background: var(--bg-secondary);
  padding: 8rem 2rem;
}
.experience-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.experience-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}
.experience-card:hover { border-color: var(--border-hover); }
.experience-icon {
  display: flex;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.experience-icon svg { stroke: var(--accent-gold); }
.experience-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.experience-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   SECTION 7 — BOOKING
   ============================================================ */
.booking-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
}
.booking-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
.booking-form-col h2 { margin-bottom: 0.75rem; }

/* Form */
.booking-form { margin-top: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 2rem; }
.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.label-optional { opacity: 0.55; text-transform: none; letter-spacing: 0; font-size: 10px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--accent-gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.55; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input[type="date"] { color-scheme: dark; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  pointer-events: none;
  font-size: 14px;
}
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }

/* Time chips */
.time-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 0 0.25rem; }
.time-chip {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--ff-body);
  font-size: 13px;
  padding: 7px 13px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.time-chip:hover,
.time-chip.active { background: var(--accent-gold); color: #000; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  margin-top: 0.5rem;
}
.btn-submit:hover    { background: var(--accent-gold-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  margin-top: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-gold);
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-align: center;
}

/* Booking aside */
.booking-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--accent-gold);
  filter: grayscale(100%);
}
.booking-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.5rem;
}
.booking-panel .overline { margin-bottom: 0.75rem; }
.booking-panel p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.booking-call     { font-size: 14px; color: var(--accent-gold); letter-spacing: 0.5px; transition: color 0.2s; }
.booking-call:hover { color: var(--accent-gold-hover); }

/* ============================================================
   SECTION 8 — GALLERY
   ============================================================ */
.gallery-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
}
.gallery-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.gallery-item:hover img       { transform: scale(1.05); }
.gallery-item:hover::after    { border-color: var(--accent-gold); }

/* ============================================================
   SECTION 9 — REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--bg-secondary);
  padding: 8rem 2rem;
}
.review-badge {
  display: inline-block;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 16px;
  margin-top: 1.75rem;
}
.reviews-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--border-hover); }
.review-stars { color: var(--accent-gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 1.25rem; }
.review-quote-mark {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--accent-gold);
  opacity: 0.18;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.review-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.review-author { font-size: 13px; font-weight: 500; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 0.3rem; }
.review-meta   { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   SECTION 10 — LOCATION
   ============================================================ */
.location-section {
  background: var(--bg-primary);
  padding: 8rem 2rem;
}
.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.location-info h2 { margin-bottom: 2.5rem; }
.address-block {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-primary);
}
.hours-block { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-block p {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-primary);
  max-width: 320px;
  gap: 1rem;
}
.hours-block p span:first-child { color: var(--text-secondary); }

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link { font-size: 16px; color: var(--accent-gold); transition: color 0.2s; }
.contact-link:hover { color: var(--accent-gold-hover); }

.map-placeholder {
  width: 100%;
  min-height: 420px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  text-align: center;
}
.map-label { font-family: var(--ff-display); font-size: 22px; font-weight: 700; letter-spacing: 5px; }
.map-sub   { font-size: 13px; color: var(--accent-gold); letter-spacing: 2px; }
.map-note  { font-size: 11px; color: var(--text-secondary); margin-top: 1rem; }

/* ============================================================
   SECTION 11 — FINAL CTA
   ============================================================ */
.final-cta-section {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%) blur(8px);
  transform: scale(1.1);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.final-cta-title {
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.93;
  margin: 1rem 0;
}
.final-cta-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-gold);
  margin-top: 2rem;
}
.final-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION 12 — FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  padding: 6rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.footer-logo    { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--ff-display); font-style: italic; font-size: 14px; color: var(--text-secondary); margin-bottom: 1.5rem; }
.footer-social  { display: flex; gap: 1rem; }
.footer-social a { color: var(--accent-gold); transition: opacity 0.2s; }
.footer-social a:hover { opacity: 0.6; }

.footer-heading {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent-gold);
  font-family: var(--ff-body);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-links li   { margin-bottom: 0.7rem; }
.footer-links a    { font-size: 14px; color: var(--text-primary); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-gold); }

.footer-address { font-size: 14px; line-height: 1.95; color: var(--text-primary); }
.footer-address a { color: var(--accent-gold); transition: color 0.2s; }
.footer-address a:hover { color: var(--accent-gold-hover); }

.footer-hours { margin-bottom: 1rem; }
.footer-hours p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-primary);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
}
.footer-hours p span:first-child { color: var(--text-secondary); }
.footer-note { font-size: 12px; color: var(--text-secondary); font-style: italic; margin-top: 1rem; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 0 20px rgba(184, 146, 74, 0.4);
  animation: callPulse 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-call:hover { transform: scale(1.1); }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(184,146,74,0.35); }
  50%       { box-shadow: 0 0 32px rgba(184,146,74,0.65); }
}

.float-book {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: var(--text-primary);
  color: #000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: transform 0.2s;
}
.float-book:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE — TABLET (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .barbers-grid     { grid-template-columns: repeat(3, 1fr); }
  .experience-grid  { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid     { grid-template-columns: repeat(3, 1fr); }
  .form-row--2      { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 520px;
  }
  .gallery-item--wide { grid-row: 1 / 3; }
  .float-book { display: none !important; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .booking-inner {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
  .booking-aside {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
  .location-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .header-logo img { height: 32px; }
  .hero-title      { font-size: clamp(40px, 10vw, 64px); }
  .final-cta-title { font-size: clamp(40px, 9vw, 64px); }

  .brand-section,
  .services-section,
  .about-section,
  .barbers-section,
  .experience-section,
  .booking-section,
  .gallery-section,
  .reviews-section,
  .location-section { padding: 5rem 1.5rem; }
  .final-cta-section { padding: 6rem 1.5rem; }
  .site-footer       { padding: 4rem 1.5rem 2rem; }

  .hero-ctas, .final-cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas a, .final-cta-btns a { width: 100%; max-width: 280px; justify-content: center; }

  .stats-row    { gap: 1rem; }
  .stat-number  { font-size: 28px; }
  .stat-label   { font-size: 9px; letter-spacing: 1px; }

  .float-book { display: flex; }
}

/* ============================================================
   STAGGER DELAYS for grid children (applied via JS)
   ============================================================ */
.fade-in-section[data-delay="1"] { transition-delay: 0.1s; }
.fade-in-section[data-delay="2"] { transition-delay: 0.2s; }
.fade-in-section[data-delay="3"] { transition-delay: 0.3s; }
