/* ==========================================================================
   ADMIRAL BARBERSHOP — Core Stylesheet
   Dark, masculine, whiskey-glass aesthetic. Gold/bronze accents.
   ========================================================================== */

:root {
  --bg-black: #0a0908;
  --bg-charcoal: #121110;
  --bg-wood: #1a1512;
  --bg-panel: #17151382;
  --steel: #3a3a3d;
  --steel-light: #6b6b6f;
  --gold: #c5a059;
  --gold-light: #e8c784;
  --gold-dark: #8a6b32;
  --whiskey: #a5651c;
  --cream: #ece4d3;
  --off-white: #f4efe6;
  --text-muted: #a8a094;
  --line: #2b2620;
  --font-head: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--bg-black); }

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--gold); color: #0a0908; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, .font-head { font-family: var(--font-head); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Noise / texture overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #14100a;
  box-shadow: 0 8px 30px -8px rgba(197,160,89,.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(197,160,89,.7); }

.btn-outline {
  border-color: rgba(236,228,211,.3);
  color: var(--off-white);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-sm { padding: 10px 22px; font-size: .7rem; }

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,9,8,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--off-white); transition: all .3s; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.6rem; color: var(--off-white); }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(197,160,89,.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(165,101,28,.12), transparent 60%),
    linear-gradient(180deg, #0a0908 0%, #100d0a 55%, #0a0908 100%);
}
.hero-woodgrain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(100deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 42px);
  opacity: .6;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,.16), transparent 70%);
  top: -200px; right: -150px;
  filter: blur(10px);
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(197,160,89,.15);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 3; padding-top: 90px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(197,160,89,.35);
  border-radius: 100px;
  background: rgba(197,160,89,.06);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--cream);
  margin-bottom: 34px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6fcf7a;
  box-shadow: 0 0 0 0 rgba(111,207,122,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,207,122,.55); }
  70% { box-shadow: 0 0 0 9px rgba(111,207,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,207,122,0); }
}

.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.01em;
  max-width: 950px;
  margin: 18px 0 26px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.hero-stat .num { font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-light); }
.hero-stat .label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
  color: var(--text-muted);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Section shared ---------- */
section { position: relative; }
.section-pad { padding: 130px 0; }
.section-head { max-width: 640px; margin-bottom: 70px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 16px; font-weight: 600; line-height: 1.15; }
.section-head p { color: var(--text-muted); margin-top: 20px; font-size: 1.05rem; font-weight: 300; }
.divider-orn { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); margin: 0 auto 20px; width: fit-content; }
.divider-orn .l { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn .r { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Experience section ---------- */
.experience { background: var(--bg-charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.exp-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(197,160,89,.22), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(165,101,28,.25), transparent 55%),
    linear-gradient(160deg, #1c1712, #0c0a08 70%);
  border: 1px solid var(--line);
}
.exp-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 40px);
}
.glass-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46%;
}
.exp-caption {
  position: absolute; bottom: 26px; left: 26px; right: 26px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.exp-caption .tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(197,160,89,.3); padding: 7px 12px; border-radius: 100px; background: rgba(10,9,8,.5); backdrop-filter: blur(6px); }

.exp-text p { color: var(--text-muted); font-size: 1.06rem; font-weight: 300; margin: 22px 0; }
.exp-quote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.4;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.exp-list { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.exp-list-item { display: flex; align-items: center; gap: 14px; font-size: .95rem; color: var(--cream); }
.exp-list-item .ico { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ---------- Services ---------- */
.services-tabs { display: flex; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .3s;
}
.tab-btn.active, .tab-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(197,160,89,.08); }

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: all .35s ease;
  cursor: default;
}
.service-row:hover { background: linear-gradient(90deg, rgba(197,160,89,.05), transparent); padding-left: 14px; }
.service-num { font-family: var(--font-head); font-size: .85rem; color: var(--gold-dark); }
.service-info h3 { font-size: 1.28rem; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.service-info p { color: var(--text-muted); font-size: .92rem; font-weight: 300; max-width: 480px; }
.service-badge { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: #14100a; padding: 3px 9px; border-radius: 100px; font-weight: 700; }
.service-meta { text-align: right; }
.service-duration { font-size: .76rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; justify-content: flex-end; margin-bottom: 6px; }
.service-price { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold-light); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1c1712, #0a0908 75%);
  border: 1px solid var(--line);
}
.team-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(197,160,89,.16), transparent 60%);
}
.team-monogram {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%);
  font-family: var(--font-head);
  font-size: 4.2rem;
  color: rgba(197,160,89,.22);
}
.team-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(10,9,8,.92) 60%);
}
.team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light); }
.team-social { position: absolute; top: 18px; right: 18px; display: flex; gap: 8px; opacity: 0; transform: translateY(-6px); transition: all .3s; }
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; background: rgba(10,9,8,.5); backdrop-filter: blur(4px); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rating-hero { text-align: center; margin-bottom: 60px; }
.rating-number { font-family: var(--font-head); font-size: 4.2rem; color: var(--gold-light); line-height: 1; }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 4px; margin: 14px 0; }
.rating-sub { color: var(--text-muted); font-size: .9rem; }

.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}
.review-card .stars { font-size: .95rem; margin-bottom: 16px; }
.review-card p { color: var(--cream); font-size: .96rem; font-weight: 300; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); color: #14100a; font-weight: 700; font-size: .9rem; }
.review-author .name { font-size: .88rem; font-weight: 600; }
.review-author .date { font-size: .74rem; color: var(--text-muted); }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.location-map {
  position: relative;
  min-height: 480px;
  background:
    linear-gradient(160deg, #14110d, #0a0908),
    repeating-linear-gradient(0deg, rgba(197,160,89,.05) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(197,160,89,.05) 0 1px, transparent 1px 48px);
}
.map-pin {
  position: absolute; top: 48%; left: 46%;
  display: flex; flex-direction: column; align-items: center;
}
.map-pin-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(197,160,89,.18), 0 0 30px rgba(197,160,89,.5); }
.map-pin-label { margin-top: 10px; font-size: .72rem; letter-spacing: .06em; background: rgba(10,9,8,.85); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; white-space: nowrap; }

.location-info { padding: 56px 48px; background: var(--bg-wood); }
.info-block { margin-bottom: 30px; }
.info-block .lbl { display: flex; align-items: center; gap: 10px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.info-block .val { font-size: 1.02rem; color: var(--cream); font-weight: 300; }
.hours-row { display: flex; justify-content: space-between; font-size: .92rem; padding: 7px 0; border-bottom: 1px dashed var(--line); color: var(--text-muted); }
.hours-row span:last-child { color: var(--cream); }
.hours-row.today { color: var(--gold-light); }
.hours-row.today span:last-child { color: var(--gold-light); }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(197,160,89,.14), transparent 60%),
    var(--bg-black);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin: 20px 0 40px; font-weight: 600; }

/* ---------- Footer ---------- */
footer { background: var(--bg-wood); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-col h5 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: var(--text-muted); font-size: .9rem; margin-bottom: 12px; font-weight: 300; }
.footer-col a:hover { color: var(--gold-light); }
.footer-desc { color: var(--text-muted); font-size: .92rem; font-weight: 300; max-width: 320px; margin-top: 18px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--steel-light); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--steel-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px calc(env(safe-area-inset-bottom, 0px) + 12px);
  background: rgba(10,9,8,.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  gap: 10px;
}
.floating-cta .btn { flex: 1; }

.whatsapp-fab {
  position: fixed;
  bottom: 90px; right: 22px;
  z-index: 90;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C4A);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.5);
  transition: transform .3s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: .1s; }
.reveal-delay-2.visible { transition-delay: .2s; }
.reveal-delay-3.visible { transition-delay: .3s; }

/* ---------- Utility ---------- */
.text-muted { color: var(--text-muted); }
.mt-lock-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .exp-grid { grid-template-columns: 1fr; gap: 50px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .review-track { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .floating-cta { display: flex; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-meta { text-align: left; }
  .service-duration { justify-content: flex-start; }
  body { padding-bottom: 74px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .section-pad { padding: 90px 0; }
  .location-info { padding: 40px 26px; }
}
