/* ============================================================
   Barber Crew by Yury — styles
   Palette: gold / black / charcoal / gray / white (95%)
   Heritage red + blue used super sparingly (<2%)
   ============================================================ */

:root {
  --gold: #CDA434;
  --gold-hover: #DFC05A;
  --gold-pressed: #A67C18;
  --black: #101010;
  --charcoal: #262626;
  --off-white: #F4F4F2;
  --soft-gray: #E5E6E7;
  --white: #FFFFFF;
  --text-dark: #202020;
  --text-muted: #71747A;
  --border-gray: #D2D4D6;
  --barber-red: #D9232E;
  --barber-blue: #1756B3;

  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(16, 16, 16, 0.08);
  --shadow-md: 0 8px 26px rgba(16, 16, 16, 0.14);
  --radius: 10px;
  --max: 1150px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

section { padding: 84px 0; }

/* barber-pole thin heritage stripe (the ONLY spot red+blue live outside photos) */
.pole-stripe {
  height: 5px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--barber-red) 0 14px,
    var(--white) 14px 28px,
    var(--barber-blue) 28px 42px,
    var(--white) 42px 56px
  );
}

/* ---------- section headings ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-pressed);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 14px;
}
.section-title .gold { color: var(--gold); }
.lead { color: var(--text-muted); max-width: 620px; font-size: 1.06rem; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.divider {
  width: 64px; height: 3px; background: var(--gold);
  margin: 16px 0 0; border-radius: 3px;
}
.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-gold:active { background: var(--gold-pressed); }
.btn-ghost { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(205, 164, 52, 0.25);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 76px; width: auto; }
.brand .brand-txt {
  display: none;
  font-family: var(--font-head);
  color: var(--white); text-transform: uppercase;
  font-size: 1.1rem; letter-spacing: 1px; line-height: 1;
}
.brand .brand-txt small { display:block; color: var(--gold); font-size: 0.62rem; letter-spacing: 3px; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.9rem; letter-spacing: 1px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: var(--white);
  padding: 70px 0 60px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,0.72) 0%, rgba(16,16,16,0.62) 55%, rgba(16,16,16,0.82) 100%),
              url("../images/inside-shop.png") center/cover no-repeat;
  z-index: -1;
}
.hero-inner { max-width: 720px; }
.hero .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.15rem; }
.hero .rating-line { color: var(--soft-gray); font-size: 0.95rem; margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold); }
.hero p.sub {
  font-size: 1.15rem; color: var(--soft-gray);
  max-width: 540px; margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badges div { }
.hero-badges .num { font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.hero-badges .lbl { font-size: 0.82rem; color: var(--soft-gray); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center;
}
.about-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .tag {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--black); color: var(--gold);
  font-family: var(--font-head); text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 2px;
  padding: 8px 14px; border-radius: 6px;
}
.about p { margin-bottom: 16px; color: #33353a; }
.about .signature {
  font-family: var(--font-head); color: var(--gold-pressed);
  text-transform: uppercase; letter-spacing: 2px; margin-top: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--charcoal); color: var(--white); }
.services .lead { color: #b9bcc2; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 46px;
}
.svc-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.18s, border-color 0.18s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.svc-card .ico { font-size: 1.7rem; margin-bottom: 8px; }
.svc-card h3 {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1.2rem; margin-bottom: 8px; gap: 10px;
}
.svc-card h3 .price { color: var(--gold); font-size: 1.1rem; white-space: nowrap; }
.svc-card p { color: #a9acb2; font-size: 0.95rem; }
.svc-note {
  text-align: center; margin-top: 34px; color: #b9bcc2; font-size: 0.95rem;
}
.svc-note b { color: var(--gold); }

/* ============================================================
   KIDS
   ============================================================ */
.kids { background: var(--off-white); }
.kids .two-col { grid-template-columns: 1fr 1fr; }
.kids-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.kids .chk { list-style: none; margin-top: 18px; }
.kids .chk li { margin-bottom: 10px; padding-left: 30px; position: relative; }
.kids .chk li::before {
  content: "✂"; position: absolute; left: 0; color: var(--gold); font-size: 1rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--white); }
.gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px;
}
.gal-item {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  border-radius: 8px; background: var(--soft-gray);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: var(--soft-gray); color: var(--text-muted);
  font-family: var(--font-head); text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 1px; text-align: center; padding: 8px;
}
.gal-item .ph span {
  display: block; width: 34px; height: 3px; background: var(--gold);
  border-radius: 3px; margin-bottom: 4px;
}
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--off-white); }
.rev-top {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  flex-wrap: wrap; margin: 30px 0 10px;
}
.rev-score { text-align: center; }
.rev-score .big { font-family: var(--font-head); font-size: 3.4rem; color: var(--gold); line-height: 1; }
.rev-score .stars { color: var(--gold); letter-spacing: 2px; }
.rev-score .count { color: var(--text-muted); font-size: 0.9rem; }
.rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px;
}
.rev-card {
  background: var(--white); border: 1px solid var(--border-gray);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rev-card .stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; font-size: 0.95rem; }
.rev-card p { color: #33353a; font-size: 0.97rem; margin-bottom: 16px; flex: 1; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-ava {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.05rem;
}
.rev-who .name { font-weight: 600; font-size: 0.92rem; }
.rev-who .meta { color: var(--text-muted); font-size: 0.8rem; }
.rev-cta { text-align: center; margin-top: 36px; }

/* ============================================================
   VISIT / LOCATION
   ============================================================ */
.visit { background: var(--charcoal); color: var(--white); }
.visit .lead { color: #b9bcc2; }
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px;
  align-items: start;
}
.info-block { margin-bottom: 26px; }
.info-block h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 10px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.09); font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; color: #cfd1d5; }
.hours-table tr.today td { color: var(--gold); font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--barber-red); }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 1rem; }
.contact-line .ic { color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 20px; }
.contact-line .ic svg { display: block; }
.contact-line a:hover { color: var(--gold); }

.map-embed {
  border: 0; width: 100%; height: 300px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); filter: grayscale(0.15);
}

/* OG heritage sign card */
.og-card {
  background: var(--black); border: 1px solid rgba(205,164,52,0.3);
  border-radius: var(--radius); padding: 18px; margin-top: 22px;
}
.og-card img { border-radius: 6px; }
.og-card .cap {
  color: #b9bcc2; font-size: 0.85rem; margin-top: 12px; text-align: center;
  font-style: italic;
}
.storefront { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 22px; }
.storefront .cap {
  background: var(--black); color: #b9bcc2; font-size: 0.82rem;
  padding: 9px 14px; text-align: center; font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: #b9bcc2; padding: 54px 0 26px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px;
}
.foot-brand img { height: 90px; margin-bottom: 14px; }
.foot-brand p { font-size: 0.92rem; max-width: 320px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
}
.foot-bottom .gold { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 62px 0; }
  .two-col, .kids .two-col, .visit-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .about-img, .kids-img { max-height: 420px; }

  .nav-links {
    position: absolute; top: 92px; left: 0; right: 0;
    background: var(--black); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 22px 20px; display: none;
    border-bottom: 1px solid rgba(205,164,52,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links .btn { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .svc-grid, .rev-grid, .gal-grid, .foot-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 18px; }
  .brand img { height: 58px; }
}
