/* ── CAVE Mens Salon — Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --black:   #000000;
  --surface: #0D1E28;
  --teal:    #273F4F;
  --orange:  #FE7743;
  --orange2: #FF9B73;
  --cream:   #EFEEEA;
  --muted:   #B0C4CE;
  --dim:     #3D5A6B;
  --font:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: var(--font); font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
#nav {
  position: fixed; top: 12px; left: 0; right: 0; z-index: 100;
  padding: 0 20px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
}
.nav-inner.scrolled {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #000;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 9px 18px; border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--orange2); box-shadow: 0 0 20px rgba(254,119,67,0.35); }
.nav-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* Mobile nav */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--cream); padding: 4px; }
.nav-hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.nav-mobile {
  position: fixed; inset: 72px 16px auto;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  display: none; flex-direction: column; gap: 24px;
  z-index: 99;
  transform: translateY(-8px); opacity: 0;
  transition: all 0.3s ease;
}
.nav-mobile.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-mobile a { font-size: 20px; font-weight: 600; color: var(--cream); transition: color 0.2s; }
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .nav-cta { justify-content: center; padding: 14px; font-size: 13px; }

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

/* ── FOOTER ── */
footer {
  background: #000; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 24px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--dim); line-height: 1.8; }
.footer-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--orange); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: var(--dim); letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ── UTILITIES ── */
.gold-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); margin: 0 auto 32px; }
.section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.28em; color: var(--orange); margin-bottom: 16px; display: block; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #000;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 13px 28px; border-radius: 999px;
  transition: all 0.25s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange2); box-shadow: 0 0 28px rgba(254,119,67,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 13px 28px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s ease; cursor: pointer;
}
.btn-outline:hover { border-color: rgba(254,119,67,0.4); color: var(--orange); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
