/* ============================================================
   Leo Barber Shop — est. 1930 · dark & handsome
   Near-black · aged brass/gold · cream · barber-pole accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --black: #14110e;
  --char: #1e1a15;
  --panel: #242018;
  --line: #3a332a;
  --gold: #c9a24b;
  --gold-soft: #e0c887;
  --cream: #f0e8d8;
  --muted: #a99f8c;
  --red: #a03a30;
  --blue: #2d4a68;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--black); }

h1, h2, h3 { font-family: 'Bebas Neue', 'Arial Narrow', sans-serif; font-weight: 400; letter-spacing: 0.05em; line-height: 1; text-transform: uppercase; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.4rem; }
a { color: var(--gold-soft); }

/* ---------- barber pole divider ---------- */
.pole-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 14px,
    var(--cream) 14px 28px,
    var(--blue) 28px 42px,
    var(--cream) 42px 56px
  );
}

/* ---------- topbar & header ---------- */
.topbar {
  background: var(--char);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--line);
}
.topbar strong { color: var(--gold); }
.topbar a { color: var(--gold-soft); font-weight: 600; text-decoration: none; }

header.site {
  background: rgba(20, 17, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.8rem 1.4rem; max-width: 1160px; margin: 0 auto; flex-wrap: wrap;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.8rem; }
.pole-mark {
  width: 14px; height: 46px; border-radius: 7px; flex-shrink: 0;
  background: repeating-linear-gradient(-45deg, var(--red) 0 7px, var(--cream) 7px 14px, var(--blue) 14px 21px, var(--cream) 21px 28px);
  border: 2px solid var(--gold);
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; color: var(--cream); letter-spacing: 0.06em; line-height: 0.95;
}
.brand-name span { color: var(--gold); }
.brand-tag {
  display: block; font-family: 'Crimson Text', serif; font-style: italic;
  font-size: 0.82rem; letter-spacing: 0.14em; color: var(--muted);
}
nav.main { display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
nav.main a {
  text-decoration: none; color: var(--cream); font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem; border-radius: 999px; transition: color 0.15s, background 0.15s;
}
nav.main a:hover { color: var(--gold); background: var(--panel); }
nav.main a.active { background: var(--gold); color: var(--black); }
nav.main a.cta { border: 1.5px solid var(--gold); color: var(--gold); margin-left: 0.35rem; }
nav.main a.cta:hover { background: var(--gold); color: var(--black); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,14,0.5) 0%, rgba(20,17,14,0.15) 40%, rgba(20,17,14,0.94) 100%);
}
.hero-inner { padding-top: 5.5rem; padding-bottom: 3.4rem; width: 100%; }
.hero .est {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--gold); font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.3em; margin-bottom: 1rem;
}
.hero .est::before, .hero .est::after { content: ""; width: 40px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  color: var(--cream); max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero p.lede {
  max-width: 52ch; margin: 1.1rem 0 1.9rem;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-style: italic;
  color: #d8cdb8;
}
.hero .btns { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.hero--page { min-height: 46vh; }
.hero--page .hero-inner { padding-top: 4rem; padding-bottom: 2.5rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.1em;
  padding: 0.8rem 1.9rem; border-radius: 4px;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 10px 30px rgba(201,162,75,0.3); }
.btn-outline { border: 1.5px solid var(--cream); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.cash-badge {
  display: inline-block;
  border: 1.5px dashed var(--gold); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.14em; font-size: 0.95rem;
  padding: 0.35rem 0.9rem; border-radius: 4px;
}

/* ---------- info strip ---------- */
.info-strip { background: var(--char); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-strip .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.5rem 2rem; padding: 1.1rem 1.4rem;
}
.info-strip .cell { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; }
.info-strip .cell strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.22em; color: var(--gold); }
.info-strip a { color: var(--cream); text-decoration: none; }
.info-strip a:hover { color: var(--gold-soft); }
.info-ico { font-size: 1.4rem; }

/* ---------- sections ---------- */
section.block { padding: 4.6rem 0; }
section.block--char { background: var(--char); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem;
  letter-spacing: 0.32em; color: var(--gold); margin-bottom: 0.6rem;
}
.block h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: var(--cream); margin-bottom: 0.7rem; }
.block .sub { color: var(--muted); max-width: 60ch; margin-bottom: 2.2rem; font-size: 1.12rem; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.18s, border-color 0.18s;
}
.card:hover { transform: translateY(-5px); border-color: var(--gold); }
.card img { height: 220px; width: 100%; object-fit: cover; }
.card .pad { padding: 1.3rem 1.4rem 1.5rem; flex: 1; }
.card h3 { font-size: 1.6rem; color: var(--gold-soft); margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card .price { font-family: 'Bebas Neue', sans-serif; color: var(--cream); font-size: 1.3rem; margin-top: 0.5rem; display: block; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 840px) { .split, .split.rev { grid-template-columns: 1fr; gap: 1.8rem; } }

ul.checks { list-style: none; margin-top: 1rem; }
ul.checks li { padding-left: 1.9rem; position: relative; margin-bottom: 0.65rem; color: #d8cdb8; }
ul.checks li::before { content: "✂"; position: absolute; left: 0; top: 0; color: var(--gold); }

/* ---------- services board ---------- */
.board {
  background: var(--panel);
  border: 1.5px solid var(--gold);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 3rem);
}
.board-section { margin-bottom: 2.4rem; }
.board-section:last-child { margin-bottom: 0; }
.board-section > h3 {
  font-size: 1.9rem; color: var(--gold);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem;
}
.board-section > h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.svc {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0 0.8rem;
  align-items: baseline; padding: 0.55rem 0.1rem;
}
.svc .n { font-size: 1.15rem; color: var(--cream); white-space: nowrap; }
.svc .dots { border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.svc .p { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--gold-soft); }
.svc .d { grid-column: 1 / -1; color: var(--muted); font-size: 0.95rem; font-style: italic; margin-top: -2px; }
.feature-svc {
  border: 1.5px dashed var(--gold); border-radius: 6px;
  padding: 0.9rem 1.1rem; margin: 0.8rem 0;
  background: rgba(201,162,75,0.06);
}
.pill {
  display: inline-block; background: rgba(201,162,75,0.15); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em;
  border-radius: 3px; padding: 0.1rem 0.55rem; margin-left: 0.5rem; vertical-align: 2px;
}

/* ---------- reviews ---------- */
.review {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.5rem; position: relative;
}
.review::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 4.5rem;
  color: var(--line); position: absolute; top: 0.3rem; left: 1rem; line-height: 1;
}
.review p { position: relative; margin-bottom: 1rem; padding-top: 0.9rem; font-style: italic; color: #d8cdb8; }
.review .who { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; color: var(--gold); font-size: 1rem; }
.review .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.2rem; }

/* ---------- hours & map ---------- */
table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 0.75rem 0.4rem; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
table.hours td:last-child { text-align: right; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.05em; color: var(--gold-soft); }
table.hours tr.closed td:last-child { color: var(--muted); }
table.hours tr.early td:first-child::after { content: " ★"; color: var(--gold); }

.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  filter: saturate(0.85);
}
.map-frame iframe { display: block; width: 100%; height: 400px; border: 0; }

.tip {
  background: rgba(201,162,75,0.07); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 1rem 1.3rem;
  font-size: 1rem; margin: 1.6rem 0; color: #d8cdb8;
}
.tip strong { color: var(--gold); font-style: normal; }

/* ---------- banner ---------- */
.banner {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20,17,14,0.92) 0%, rgba(20,17,14,0.55) 60%, rgba(20,17,14,0.25) 100%);
}
.banner .pad { padding: 3.2rem 2.6rem; max-width: 62%; }
.banner h2 { color: var(--cream); font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 0.7rem; }
.banner p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1.1rem; }
@media (max-width: 720px) { .banner .pad { max-width: 100%; padding: 2.4rem 1.6rem; } }

/* ---------- footer ---------- */
footer.site { background: var(--char); border-top: 1px solid var(--line); color: var(--muted); }
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem; padding: 3rem 0 2rem;
}
@media (max-width: 860px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h4 { font-family: 'Bebas Neue', sans-serif; color: var(--gold); letter-spacing: 0.12em; font-size: 1.1rem; margin-bottom: 0.8rem; }
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--gold-soft); }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.45rem; font-size: 0.98rem; }
footer.site .brand-name { color: var(--cream); }
.footnote {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.6rem; font-size: 0.88rem; color: #7d745f; text-align: center;
}
.footnote strong { color: var(--muted); }

@media (max-width: 640px) {
  .hero { min-height: 64vh; }
  nav.main { justify-content: center; width: 100%; }
  .nav-row { justify-content: center; }
}
