/* ═══════════════════════════════════════════════════════════
   SULTAN'S BARBERSHOP — style.css
   Color Palette: Deep Charcoal + Gold + Ivory
═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #0e0e10;
  --bg2:       #141417;
  --bg3:       #1a1a1f;
  --card:      #18181d;
  --gold:      #c9a84c;
  --gold-lt:   #e0c06a;
  --gold-dk:   #a07830;
  --ivory:     #f0e8d5;
  --text:      #d4cfc6;
  --muted:     #7a756e;
  --border:    rgba(201,168,76,0.18);
  --border2:   rgba(255,255,255,0.06);

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --radius:  4px;
  --trans:   0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ── SELECTION ─────────────────────────────────────────── */
::selection { background: rgba(201,168,76,0.25); color: var(--ivory); }

/* ── CONTAINER ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.1s;
}
.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 50px; height: 50px;
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
.navbar.scrolled {
  background: rgba(14,14,16,0.95);
  backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-top: 0.2rem;
  display: block;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* CTA */
.nav-cta {
  text-decoration: none;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding: 8rem 6vw 5rem;
  overflow: hidden;
  gap: 4rem;
}

/* BG */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb1 { width: 500px; height: 500px; background: rgba(201,168,76,0.07); top: -100px; right: 200px; }
.orb2 { width: 300px; height: 300px; background: rgba(160,120,48,0.06); bottom: 50px; left: -50px; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.title-line { display: block; }
.title-line.gold { color: var(--gold); font-style: italic; }

.hero-tagline {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Buttons */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--trans), color var(--trans);
  margin-top: 2rem;
  cursor: none;
}
.btn-gold-sm:hover { color: var(--gold-lt); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border2);
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.stat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}
.barber-pole {
  width: 18px;
  height: 260px;
  border-radius: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.pole-stripe {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3), transparent);
  animation: poleScroll 2s linear infinite;
}
.pole-stripe:nth-child(2) { animation-delay: -0.66s; }
.pole-stripe:nth-child(3) { animation-delay: -1.33s; }
@keyframes poleScroll {
  0% { transform: translateY(-60px); }
  100% { transform: translateY(260px); }
}
.hero-img-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;

}

.hero-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* .img-placeholder.tall { aspect-ratio: 3/4; }
.scissors-icon { font-size: 2.5rem; opacity: 0.4; } */

/* Corner frames */
.frame-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
}
.frame-corner.tl { top: -6px; left: -6px; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: -6px; right: -6px; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: -6px; left: -6px; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: -6px; right: -6px; border-width: 0 1px 1px 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 1.8s ease infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
/* .about-img-wrap .img-placeholder {
  width: 100%;
  border-radius: 2px;
} */

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.badge-text { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* Section tags/titles shared */
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { color: var(--muted); max-width: 500px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }

.about-text p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.85; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text);
}
.feat-icon { color: var(--gold); font-size: 0.6rem; }

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
}
.services::before, .services::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services::before { top: 0; }
.services::after { bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--trans), transform var(--trans);
  border-right: 1.5px solid var(--border2);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg3); }
.service-card:hover .card-line { width: 100%; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.card-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.card-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.card-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery { padding: 8rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item .img-placeholder { aspect-ratio: 1; border-radius: 2px; transition: transform var(--trans); }
.gallery-item.large { grid-row: 1 / 3; }
.gallery-item.large .img-placeholder { aspect-ratio: unset; height: 100%; min-height: 420px; }
.gallery-item:hover .img-placeholder { transform: scale(0.98); border-color: var(--border); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 600px;
}

.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item.large { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform var(--trans);
}

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


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.test-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: border-color var(--trans), transform var(--trans);
}
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); }
.testi-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -0.5rem;
}
.testi-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.author-name { font-size: 0.85rem; color: var(--ivory); font-weight: 500; }
.author-loc { font-size: 0.72rem; color: var(--muted); }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { padding: 8rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-item h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.7;
  transition: color var(--trans);
}
.contact-item a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: none;
}
.whatsapp-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.contact-map { }
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin { font-size: 2rem; position: relative; z-index: 1; }
.map-placeholder p { color: var(--text); font-size: 0.9rem; position: relative; z-index: 1; }
.map-placeholder span { color: var(--muted); font-size: 0.78rem; }
.map-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  position: relative; z-index: 1;
  transition: color var(--trans);
}
.map-link:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a, .footer-contact a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.8rem; }

.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--trans);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Staggered delays for siblings */
.service-card:nth-child(2).reveal { transition-delay: 0.1s; }
.service-card:nth-child(3).reveal { transition-delay: 0.2s; }
.service-card:nth-child(4).reveal { transition-delay: 0.3s; }

.gallery-item:nth-child(2).reveal { transition-delay: 0.08s; }
.gallery-item:nth-child(3).reveal { transition-delay: 0.16s; }
.gallery-item:nth-child(4).reveal { transition-delay: 0.12s; }
.gallery-item:nth-child(5).reveal { transition-delay: 0.2s; }
.gallery-item:nth-child(6).reveal { transition-delay: 0.28s; }

.testi-card:nth-child(2).reveal { transition-delay: 0.12s; }
.testi-card:nth-child(3).reveal { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: none; border-bottom: 1.5px solid var(--border2); }
  .service-card:nth-child(2n) { }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
    text-align: center;
  }
  .hero-visual { justify-content: center; order: -1; margin-top: 2rem; }
  .hero-img-frame { width: 240px; }
  .hero-tagline { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .barber-pole { height: 180px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.mobile-open a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-row: auto; grid-column: 1 / -1; }
  .gallery-item.large .img-placeholder { min-height: 240px; }

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

  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.3rem; }
}

/* ── Mobile: hide custom cursor ───────────────────────────── */
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn, .nav-cta, .whatsapp-btn, .btn-gold-sm { cursor: pointer; }
}