/* ============================================================
   MARBELLO'S — PREMIUM BARBER SHOP
   style.css
   ============================================================ */

/* ── IMPORTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --charcoal:    #1a1a1a;
  --charcoal-2:  #242424;
  --charcoal-3:  #2e2e2e;
  --gold:        #c9a84c;
  --gold-light:  #e2c46e;
  --gold-dark:   #a07830;
  --cream:       #f5f0e8;
  --cream-2:     #ede6d6;
  --white:       #ffffff;
  --text-muted:  #888888;
  --text-light:  #bbbbbb;
  --border:      rgba(201,168,76,0.15);
  --border-soft: rgba(255,255,255,0.07);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --nav-h:      80px;
  --section-gap: 120px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: var(--section-gap) 0; }
.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--text-muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--text-light); line-height: 1.75; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── GOLD DIVIDER ────────────────────────────────────────── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ── HEADER / NAV ────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#site-header.scrolled {
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Active page — solid gold line, always visible */
.nav-links a.active {
  color: var(--cream);
}
.nav-links a.active::after {
  transform: scaleX(1);
  background: var(--gold);
  opacity: 1;
  height: 1.5px;
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: calc(var(--nav-h) + 24px) 32px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  border-bottom: none;
  width: auto;
  align-self: flex-start;
}
/* mobile-menu link styles defined with .mobile-menu above */

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-name { font-size: 1.8rem; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.footer-contact-item span.icon {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08), transparent);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin-bottom: 20px; }
.page-hero p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  padding: 80px 0 80px 40px;
  max-width: 600px;
  margin-left: auto;
  padding-right: 60px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow::before { width: 24px; }
.hero-eyebrow::after  { width: 24px; }
.hero-title {
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  margin-top: 24px;
  font-size: 1.05rem;
  max-width: 440px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.9s forwards;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 1.1s forwards;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}
.hero-badge-num span { color: var(--gold); }
.hero-badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-badge-sep {
  width: 1px;
  height: 40px;
  background: var(--border-soft);
}

/* Hero Image Side */
.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 30%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 40%);
  z-index: 1;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, #1e1a14 0%, #2a1e0a 40%, #1a1208 100%);
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 40px
    );
}
.hero-img-placeholder::after {
  content: 'MARBELLO\'S';
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.2);
  writing-mode: vertical-rl;
}
.hero-img-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  font-family: var(--font-display);
}
.hero-overlay-big {
  font-size: clamp(6rem, 12vw, 16rem);
  font-weight: 900;
  color: rgba(201,168,76,0.06);
  line-height: 0.85;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.hero-scissors-icon {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scissors-svg {
  animation: floatScissors 4s ease-in-out infinite;
}
@keyframes floatScissors {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-16px) rotate(5deg); }
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 10;
  animation: fadeIn 1s var(--ease-out) 2s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Intro Section */
.intro-section {
  padding: var(--section-gap) 0;
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 span { color: var(--gold); }
.intro-text p { margin-top: 20px; font-size: 1.05rem; }
.intro-text p + p { margin-top: 14px; }
.intro-text .btn { margin-top: 36px; }
.intro-image-block {
  position: relative;
}
.intro-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1611 0%, #25190a 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.intro-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 32px
    );
}
.intro-img-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 16px 40px rgba(201,168,76,0.3);
}
.intro-img-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.intro-img-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(0,0,0,0.7);
}
.intro-img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  opacity: 0.3;
}

/* Services Preview */
.services-preview { padding: var(--section-gap) 0; background: var(--charcoal); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }
.section-header h2 span { color: var(--gold); }
.section-header p { max-width: 500px; margin: 16px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--charcoal);
  padding: 48px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--charcoal-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.service-card h4 { color: var(--cream); margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; }
.service-price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.service-price-from {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.service-price-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.services-cta { text-align: center; margin-top: 56px; }

/* Why Choose Us */
.why-section { padding: var(--section-gap) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 36px; }
.why-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.why-feature h4 { color: var(--cream); margin-bottom: 6px; }
.why-feature p  { font-size: 0.9rem; }
.why-visual {
  position: relative;
}
.why-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1611 0%, #2a1e0a 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.why-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.why-monogram {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.why-ribbon {
  position: absolute;
  right: -16px;
  top: 60px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  transform: rotate(4deg);
}

/* Stats */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.04), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border-soft);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

/* Gallery Preview */
.gallery-preview { padding: var(--section-gap) 0; }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  margin-top: 56px;
}
.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-preview-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-thumb-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.gallery-preview-item:hover .gallery-thumb-bg {
  transform: scale(1.07);
}
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-preview-item:hover .gallery-thumb-overlay {
  background: rgba(0,0,0,0.45);
}
.gallery-thumb-overlay span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
}
.gallery-preview-item:hover .gallery-thumb-overlay span {
  opacity: 1;
  transform: translateY(0);
}
.thumb-1 { background: linear-gradient(160deg, #1c1810 0%, #2e220c 100%); }
.thumb-2 { background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%); }
.thumb-3 { background: linear-gradient(160deg, #0e1416 0%, #1a2224 100%); }
.thumb-4 { background: linear-gradient(135deg, #181210 0%, #231b14 100%); }
.thumb-5 { background: linear-gradient(160deg, #1a1208 0%, #2a1e0a 100%); }
.gallery-preview-cta { text-align: center; margin-top: 48px; }

/* Testimonials */
.testimonials { padding: var(--section-gap) 0; background: var(--charcoal); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.avatar-gold { background: var(--gold); }
.avatar-gold-light { background: var(--gold-light); }
.avatar-dark-gold { background: var(--gold-dark); color: var(--cream); }
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}
.author-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: var(--section-gap) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,168,76,0.07), transparent);
  pointer-events: none;
}
.cta-section h2 { margin: 16px 0; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Floating decorative element */
.float-deco {
  position: absolute;
  pointer-events: none;
  animation: floatDeco 8s ease-in-out infinite;
  opacity: 0.06;
}
@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(10px) rotate(-3deg); }
}

/* Animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-categories { padding: var(--section-gap) 0; }
.category-block { margin-bottom: 80px; }
.category-block:last-child { margin-bottom: 0; }
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.category-header h3 { color: var(--cream); }
.category-count {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
}
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background 0.3s, transform 0.3s;
  gap: 20px;
}
.service-row:hover {
  background: var(--charcoal-2);
  transform: translateX(6px);
}
.service-row-left { flex: 1; }
.service-row-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.service-row-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-row-duration {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.service-row-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}

/* Premium Package */
.premium-package {
  margin-top: 80px;
  padding: var(--section-gap) 0;
  background: var(--charcoal);
}
.package-card {
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.package-card::before {
  content: 'SIGNATURE';
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--black);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 99px;
}
.package-content { padding: 60px; }
.package-content h3 { margin: 12px 0; }
.package-content h3 span { color: var(--gold); }
.package-content p { font-size: 0.95rem; }
.package-includes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.package-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.package-price-block {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.package-price-detail {
  font-size: 13px;
  color: var(--text-muted);
}
.package-visual {
  background: linear-gradient(160deg, #1e1810 0%, #2e220c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.package-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.package-monogram {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}

/* ============================================================
   BARBERS PAGE
   ============================================================ */
.barbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: var(--section-gap) 0;
}
.barber-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: border-color 0.4s, transform 0.4s;
}
.barber-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
}
.barber-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.barber-card-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.barber-card:hover .barber-card-img-bg { transform: scale(1.05); }
.barber-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent 60%);
}
.barber-role-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.barber-card-body { padding: 32px; }
.barber-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.barber-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.barber-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.barber-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.specialty-tag {
  font-size: 11px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.barber-card:hover .specialty-tag {
  border-color: var(--border);
}
.specialty-tag.gold {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 99px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item-inner {
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.5); }
.gallery-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-img-block {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.g-tall  { aspect-ratio: 3/4; }
.g-med   { aspect-ratio: 1/1; }
.g-short { aspect-ratio: 4/3; }
.g1  { background: linear-gradient(160deg, #1e1810 0%, #2e220c 100%); }
.g2  { background: linear-gradient(135deg, #111418 0%, #1a2028 100%); }
.g3  { background: linear-gradient(160deg, #180e0e 0%, #280a0a 100%); }
.g4  { background: linear-gradient(135deg, #0e1210 0%, #161e14 100%); }
.g5  { background: linear-gradient(160deg, #1a1208 0%, #2a1e0a 100%); }
.g6  { background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%); }
.g7  { background: linear-gradient(160deg, #1c1a10 0%, #2c2810 100%); }
.g8  { background: linear-gradient(135deg, #181014 0%, #241620 100%); }
.g9  { background: linear-gradient(160deg, #0a1214 0%, #141e20 100%); }
.g10 { background: linear-gradient(135deg, #1a1208 0%, #2a1e0a 100%); }
.g11 { background: linear-gradient(160deg, #181818 0%, #222222 100%); }
.g12 { background: linear-gradient(135deg, #1c1008 0%, #2c180c 100%); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: var(--section-gap) 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story p + p { margin-top: 18px; }
.about-story p { font-size: 1rem; }
.about-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}
.about-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  font-style: normal;
}
.about-img-stack { position: relative; padding-bottom: 40px; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1611 0%, #2e220c 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 100%);
  border-radius: var(--radius-md);
  border: 4px solid var(--black);
  overflow: hidden;
}

/* Values */
.values-section {
  padding: var(--section-gap) 0;
  background: var(--charcoal);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.value-card {
  padding: 48px 32px;
  background: var(--charcoal-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.value-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.value-card h4 { color: var(--cream); margin-bottom: 12px; font-size: 1.1rem; }
.value-card p  { font-size: 0.9rem; }

/* Process / Timeline */
.process-section { padding: var(--section-gap) 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3), var(--gold));
}
.process-step { text-align: center; padding: 0 20px; }
.process-step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.process-step h4 { color: var(--cream); margin-bottom: 10px; font-size: 1rem; }
.process-step p  { font-size: 0.85rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-gap) 0;
  align-items: start;
}
.contact-form-block h3 { color: var(--cream); margin-bottom: 8px; }
.contact-form-block > p { margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--cream);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--charcoal-2);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-notice {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-info-block h3 { color: var(--cream); margin-bottom: 8px; }
.contact-info-block > p { margin-bottom: 8px; }
.contact-info-card {
  background: var(--charcoal);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contact-info-card h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail .icon { color: var(--gold); flex-shrink: 0; width: 18px; margin-top: 1px; }
.contact-detail .content { color: var(--text-light); }
.contact-detail .content strong { color: var(--cream); display: block; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  font-size: 14px;
}
.hours-day { color: var(--text-light); }
.hours-time { color: var(--cream); font-weight: 500; white-space: nowrap; }
.hours-closed { color: var(--text-muted); }
.quick-contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: all 0.3s;
  background: var(--charcoal-2);
}
.quick-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 40px);
}
.map-pin { font-size: 2rem; opacity: 0.4; }
.map-label { letter-spacing: 0.15em; text-transform: uppercase; font-size: 11px; position: relative; z-index: 1; }
.map-addr  { font-size: 13px; color: var(--cream); position: relative; z-index: 1; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h4 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.form-success p { font-size: 0.95rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── TABLET (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .container { padding: 0 28px; }

  /* Hero: image sits BEHIND the content as a full-bleed background */
  .hero {
    display: block;
    position: relative;
    min-height: 100vh;
  }
  .hero-image-side {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.45) 40%,
      rgba(10,10,10,0.85) 80%,
      rgba(10,10,10,1)    100%
    );
    z-index: 1;
  }
  .hero-image-side picture,
  .hero-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 28px 80px;
    max-width: 100%;
    margin: 0;
  }
  .hero-bg, .hero-noise { display: none; }

  .intro-grid,
  .why-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-preview-grid .gallery-preview-item:nth-child(1) { grid-column: span 2; }
  .barbers-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
  .package-card { grid-template-columns: 1fr; }
  .package-visual { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-soft); }
  .gallery-masonry { columns: 2; }
}

/* ── MOBILE (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .container { padding: 0 20px; }

  /* ── NAV ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ── HERO: full bleed image with content over it ── */
  .hero {
    display: block;
    position: relative;
    min-height: 100svh; /* uses small viewport height on mobile browsers */
  }
  .hero-image-side {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    /* stronger gradient at bottom so text is always readable */
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.40) 0%,
      rgba(10,10,10,0.35) 35%,
      rgba(10,10,10,0.80) 70%,
      rgba(10,10,10,1)    100%
    );
    z-index: 1;
  }
  .hero-image-side picture,
  .hero-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% top; /* keep the hands/face in frame */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 20px 56px;
    margin: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
  }
  .hero-bg, .hero-noise { display: none; }

  /* Tighten up hero type on small screens */
  .hero-title { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; max-width: 100%; margin-top: 16px; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .hero-actions .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
  .hero-badges {
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-badge-sep { display: none; }
  .hero-badge { text-align: center; }
  .hero-badge-num { font-size: 1.5rem; }
  .hero-scroll-cue { display: none; }

  /* ── SECTIONS ── */
  .section-pad { padding: var(--section-gap) 0; }

  /* Intro — image above text on mobile */
  .intro-grid { grid-template-columns: 1fr; gap: 0; }
  .intro-text { order: 2; }
  .intro-image-block { order: 1; margin-bottom: 36px; }
  .intro-img-main { aspect-ratio: 16/9; }
  .intro-img-badge { display: none; } /* too cluttered on mobile */
  .intro-img-accent { display: none; }

  /* Why section — image before text */
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { order: -1; }
  .why-img { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; }
  .why-img img { border-radius: var(--radius-md); }
  .why-ribbon { display: none; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Stats — 2x2 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-soft); }

  /* Gallery preview — single big one + 2x2 below */
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }
  .gallery-preview-grid .gallery-preview-item:nth-child(1) {
    grid-column: span 2;
    height: 220px;
  }
  .gallery-preview-grid .gallery-preview-item:nth-child(2),
  .gallery-preview-grid .gallery-preview-item:nth-child(3) { height: 140px; }
  .gallery-preview-grid .gallery-preview-item:nth-child(4),
  .gallery-preview-grid .gallery-preview-item:nth-child(5) { height: 140px; }

  /* Team teaser on home — 2x2 grid */
  .team-grid-home { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA section */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  /* Barbers — single col */
  .barbers-grid { grid-template-columns: 1fr; max-width: 100%; }
  .barber-card-img { aspect-ratio: 4/3; }

  /* Gallery masonry — 1 col */
  .gallery-masonry { columns: 1; }

  /* About story image */
  .about-story-grid { grid-template-columns: 1fr; gap: 0; }
  .about-story-grid > .reveal-left { order: 2; margin-top: 36px; }
  .about-story-grid > .reveal-right { order: 1; }
  .about-img-main { aspect-ratio: 4/3; }
  .about-img-secondary { display: none; }
  .about-img-stack { padding-bottom: 0; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 32px 24px; }
  .value-num { font-size: 2.5rem; margin-bottom: 12px; }

  /* Process steps — vertical list */
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-steps::before { display: none; }
  .process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step-num { flex-shrink: 0; margin: 0; width: 44px; height: 44px; font-size: 1rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .quick-contact-btns { gap: 8px; }
  .insta-strip { grid-template-columns: repeat(3, 1fr) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Misc */
  .btn { font-size: 11px; padding: 14px 24px; }
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 15px; }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  p { font-size: 0.93rem; }

  /* Page heroes (inner pages) — reduce height */
  .page-hero { padding: calc(var(--nav-h) + 52px) 0 52px; }
  .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }

  /* Service rows */
  .service-row { flex-wrap: wrap; gap: 8px; padding: 18px 16px; }
  .service-row:hover { transform: none; }
  .service-row-duration { order: 3; width: 100%; font-size: 10px; }
  .service-row-price { margin-left: auto; font-size: 1.3rem; }

  /* Package card */
  .package-card { grid-template-columns: 1fr; }
  .package-content { padding: 32px 24px; }
  .package-visual { display: none; }
  .package-price { font-size: 2.4rem; }

  /* Float decos — hide on mobile, not worth the noise */
  .float-deco { display: none; }
}

/* ── NO HORIZONTAL SLIDES ON MOBILE ─────────────────────── */
@media (max-width: 1024px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(40px); /* same as .reveal — fade up only, no sideways */
  }
  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
  /* Also kill any overflow from animated elements mid-transition */
  body { overflow-x: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ============================================================
   FINAL POLISH — additional fixes & refinements
   ============================================================ */

/* Ensure select dropdowns match dark theme */
select option {
  background: var(--charcoal);
  color: var(--cream);
}

/* Gallery masonry items need explicit display block */
.gallery-item { display: block; }

/* ── HERO IMAGE: GPU LAYER + FADE IN ────────────────────── */
/* On desktop: side panel. On mobile: absolute full-bleed via @media */
.hero-image-side {
  overflow: hidden;
}
/* Desktop: the image fills its relative side column */
@media (min-width: 1025px) {
  .hero-image-side {
    contain: layout style; /* safe on desktop — doesn't block absolute positioning */
  }
}
.hero-image-side picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #1e1a14;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-real-img.loaded { opacity: 1; }

/* Smooth page transitions */
body {
  animation: pageIn 0.4s var(--ease-out) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Focus ring for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--charcoal-3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Selection colour */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--cream);
}

/* Smooth image placeholder shimmer effect */
[role="img"] {
  position: relative;
  overflow: hidden;
}
[role="img"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.025) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Gold glow pulse on CTA buttons */
.btn-gold {
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.0);
}
.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,0.35), 0 0 0 0 rgba(201,168,76,0);
}

/* Ensure gallery grid items on about page don't break layout */
.about-img-stack [role="img"] {
  min-height: 80px;
}

/* Map placeholder inner content z-index */
.map-placeholder > * { position: relative; z-index: 1; }

/* ============================================================
   IMAGE-SPECIFIC STYLES
   ============================================================ */

/* Hero real image */
.hero-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Service card with image on top */
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 28px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h4 { margin-bottom: 8px; }
.service-card-body .service-price { margin-top: auto; padding-top: 20px; }

/* Team thumbnails on home page hover */
.team-thumb {
  transition: transform 0.5s var(--ease-out);
}
a:hover .team-thumb {
  transform: scale(1.05);
}

/* Package visual on services — real image */
.package-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

/* gallery-img-block aspect ratios defined above in gallery section */

/* Instagram strip hover */
.gallery-preview-item img {
  transition: transform 0.5s var(--ease-out);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-preview-item:hover img {
  transform: scale(1.07);
}

/* About image stack */
.about-img-main {
  position: relative;
  overflow: hidden;
}

/* Barber card image proportions with real photos */
.barber-card-img {
  aspect-ratio: 4/3;
}
.barber-card-img-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Why visual with real image */
.why-img {
  overflow: hidden;
}
.why-img img {
  transition: transform 0.6s var(--ease-out);
}
.why-img:hover img {
  transform: scale(1.03);
}

/* Intro img main real photo */
.intro-img-main img {
  transition: transform 0.6s var(--ease-out);
}
.intro-img-main:hover img {
  transform: scale(1.03);
}

/* Override old gradient placeholder backgrounds now we have real images */
.g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8, .g9, .g10, .g11, .g12 {
  background: var(--charcoal-2);
}

/* Gallery items should not use [role=img] shimmer now */
.gallery-item [role="img"]::after,
.gallery-preview-item [role="img"]::after { display: none; }

/* Team grid responsive */
@media (max-width: 768px) {
  /* Team grid on home page goes 2x2 */
  .team-grid-home {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Service cards stack cleanly */
  .service-card-img { height: 160px; }
  .barber-card-img { aspect-ratio: 3/2; }
}

@media (max-width: 1024px) {
  .barber-card-img { aspect-ratio: 3/2; }
}

/* ── TEAM / BARBER CARD MOBILE ───────────────────────────── */
@media (max-width: 768px) {
  .barber-card:hover { transform: translateY(-3px); }
}

/* ── TABLET BARBERS 2-COL ────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .barbers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-right: 1px solid var(--border-soft); }
  .stat-item:last-child { border-right: none; }
  .about-img-secondary { right: -12px; }
  .gallery-masonry { columns: 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
