/* ===== New Barber — stylesheet ===== */

:root{
  --navy-950: #0c1626;
  --navy-900: #13233c;
  --navy-800: #1b3358;
  --navy-700: #24406b;
  --gold-600: #a9754a;
  --gold-500: #c08e5d;
  --gold-300: #dcb888;
  --cream-100: #faf7f1;
  --cream-200: #f2ece0;
  --ink-900: #16181d;
  --ink-600: #52586a;
  --ink-400: #8a90a0;
  --white: #ffffff;

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(12, 22, 38, 0.08);
  --shadow-md: 0 12px 32px rgba(12, 22, 38, 0.14);
  --shadow-lg: 0 24px 60px rgba(12, 22, 38, 0.22);

  --header-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ font-family: var(--font-display); letter-spacing: 0.02em; margin: 0; line-height: 1.05; }
p{ margin: 0; }
section{ position: relative; }

.section-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
}
.eyebrow{
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.center{ text-align: center; margin-left: auto; margin-right: auto; }
h2{ font-size: clamp(2.2rem, 4vw, 3rem); text-transform: uppercase; }
.section-sub{
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--ink-600);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover{ background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-block{ width: 100%; }

/* ---------- Topbar ---------- */
.topbar{
  background: var(--navy-950);
  color: var(--cream-200);
  font-size: 0.82rem;
}
.topbar-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar-inner a{ display: inline-flex; align-items: center; gap: 7px; opacity: 0.9; transition: opacity 0.2s; }
.topbar-inner a:hover{ opacity: 1; color: var(--gold-300); }
.topbar-hours{ margin-left: auto; display: inline-flex; align-items: center; gap: 7px; opacity: 0.85; }
.topbar i{ color: var(--gold-300); font-size: 0.8rem; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 22, 38, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner{
  max-width: 1180px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.logo span{ color: var(--gold-500); }
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a:not(.nav-cta){
  color: var(--cream-200);
  font-weight: 600;
  font-size: 0.94rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-links li a:not(.nav-cta):after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.nav-links li a:not(.nav-cta):hover{ color: var(--white); }
.nav-links li a:not(.nav-cta):hover:after{ width: 100%; }
.nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
  padding: 12px 26px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover{ background: var(--gold-600); transform: translateY(-1px); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,16,28,0.55) 0%, rgba(9,16,28,0.72) 55%, rgba(9,16,28,0.92) 100%),
    linear-gradient(90deg, rgba(9,16,28,0.85) 0%, rgba(9,16,28,0.35) 65%);
}
.hero-content{
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 32px 90px;
  color: var(--white);
  width: 100%;
}
.hero .eyebrow{ color: var(--gold-300); }
.hero h1{
  font-size: clamp(3rem, 7vw, 5.4rem);
  text-transform: uppercase;
  max-width: 780px;
}
.hero h1 span{ color: var(--gold-500); }
.hero-text{
  margin-top: 24px;
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--cream-200);
}
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-badges{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-badges li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream-200);
}
.hero-badges i{ color: var(--gold-500); font-size: 1rem; }

.scroll-cue{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-200);
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob{
  0%, 100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 8px); }
}

/* ---------- About ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-content h2{ margin-top: 6px; }
.about-content p{
  margin-top: 20px;
  color: var(--ink-600);
  line-height: 1.75;
  font-size: 1.02rem;
}
.about-stats{
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-200);
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; gap: 4px; }
.stat-num{ font-family: var(--font-display); font-size: 2.1rem; color: var(--navy-800); }
.stat-label{ font-size: 0.82rem; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Services ---------- */
.services{ background: var(--cream-200); }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card.featured{
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: var(--gold-500);
}
.service-card.featured p{ color: var(--cream-200); }
.service-card.featured .price{ color: var(--gold-300); }
.service-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-200);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-card.featured .service-icon{ background: rgba(255,255,255,0.12); color: var(--gold-300); }
.service-card h3{ font-size: 1.35rem; text-transform: uppercase; margin-bottom: 10px; }
.service-card p{ color: var(--ink-600); font-size: 0.94rem; line-height: 1.6; min-height: 48px; }
.price{
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: var(--navy-800);
  font-size: 1.05rem;
}
.services-note{
  text-align: center;
  margin-top: 34px;
  font-size: 0.85rem;
  color: var(--ink-400);
}

/* ---------- Gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 56px;
}
.gallery-item{
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-item.span-2{ grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews{
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.reviews-inner{ text-align: center; max-width: 640px; }
.reviews-stars{ font-size: 1.4rem; color: var(--gold-500); letter-spacing: 6px; margin-bottom: 22px; }
.reviews h2{ text-transform: uppercase; }
.reviews p{ margin-top: 18px; color: var(--cream-200); line-height: 1.7; }
.reviews .btn{ margin-top: 32px; }
.reviews .btn-outline{ color: var(--white); border-color: rgba(255,255,255,0.6); }
.reviews .btn-outline:hover{ background: var(--white); color: var(--navy-900); }

/* ---------- Booking ---------- */
.booking-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.booking-info p{ color: var(--ink-600); line-height: 1.7; margin-top: 18px; margin-bottom: 32px; }
.booking-contact{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
}
.booking-contact a, .booking-contact span{ display: flex; align-items: center; gap: 12px; color: var(--ink-900); }
.booking-contact i{ color: var(--gold-600); width: 18px; }

.booking-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group{ margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
label{ font-size: 0.85rem; font-weight: 700; color: var(--ink-900); }
input, select, textarea{
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-200);
  background: var(--cream-100);
  color: var(--ink-900);
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
textarea{ resize: vertical; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea{ border-color: #d9534f; }
.error-msg{ font-size: 0.78rem; color: #d9534f; min-height: 1em; display: none; }
.form-group.invalid .error-msg{ display: block; }
.form-note{ font-size: 0.8rem; color: var(--ink-400); text-align: center; margin-top: 14px; }
.form-success{
  display: none;
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2f7a4d;
  background: #e9f7ee;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.form-success.visible{ display: block; }

/* ---------- Location ---------- */
.location-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 56px;
  align-items: stretch;
}
.map-wrap{
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-details{ display: flex; flex-direction: column; gap: 18px; }
.loc-card{
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.loc-card i{
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--cream-200);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.loc-card h3{ font-size: 1rem; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.03em; }
.loc-card p{ font-size: 0.92rem; color: var(--ink-600); line-height: 1.55; }
.loc-card p a:hover{ color: var(--gold-600); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-950); color: var(--cream-200); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 48px;
}
.footer-brand p{ margin-top: 14px; color: var(--ink-400); font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-social{ display: flex; gap: 12px; margin-top: 22px; }
.footer-social a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover{ background: var(--gold-500); border-color: var(--gold-500); }
.footer-links, .footer-contact{ display: flex; flex-direction: column; gap: 14px; }
.footer-links h4, .footer-contact h4{ font-family: var(--font-body); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--gold-300); margin-bottom: 6px; }
.footer-links a, .footer-contact a{ color: var(--cream-200); font-size: 0.92rem; transition: color 0.2s; display: flex; align-items: center; gap: 10px; }
.footer-links a:hover, .footer-contact a:hover{ color: var(--gold-300); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-400);
}

/* ---------- Mobile call FAB ---------- */
.mobile-fab{
  display: none;
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}

/* ================= Responsive ================= */
@media (max-width: 980px){
  .about-grid, .booking-grid, .location-grid{ grid-template-columns: 1fr; }
  .about-media img{ aspect-ratio: 16/9; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.span-2{ grid-column: span 1; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .topbar-inner{ padding: 8px 20px; gap: 16px; font-size: 0.72rem; }
  .topbar-hours{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-links{
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open{ max-height: 480px; }
  .nav-links li{ width: 100%; padding: 0 32px; }
  .nav-links li a:not(.nav-cta){ display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li .nav-cta{ display: flex; width: 100%; margin: 18px 0; padding: 14px 26px; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .section-inner{ padding: 64px 20px; }
  .hero-content{ padding: 120px 20px 70px; }
  .hero-badges{ gap: 18px 26px; }
  .services-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .form-row{ grid-template-columns: 1fr; }
  .booking-form{ padding: 28px 22px; }
  .footer-grid{ grid-template-columns: 1fr; padding-top: 56px; }
  .mobile-fab{ display: flex; }
}
