/* ============================================================
   Black Oak Barbershop — design system
   Palette: burnt oak charcoal + oiled copper + strop-leather brown
   Type: Oswald (condensed shop-sign display) + Work Sans (body)
   Signature: the barber-pole stripe rule + price-board leaders
   ============================================================ */

:root {
  --ink: #15120d;
  --panel: #201a13;
  --panel-raised: #291f15;
  --bark: #4a2e1b;
  --bark-line: rgba(243, 234, 217, 0.12);
  --copper: #c1813f;
  --copper-deep: #8f5722;
  --copper-bright: #d99a53;
  --cream: #f3ead9;
  --cream-dim: #baa98c;
  --cream-faint: #8b7c64;
  --radius: 4px;
  --shadow: 0 22px 44px -28px rgba(0, 0, 0, 0.75);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------- Signature: barber-pole stripe rule ---------- */

.pole-rule {
  height: 7px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--copper) 0px, var(--copper) 14px,
    var(--cream) 14px, var(--cream) 28px,
    var(--bark) 28px, var(--bark) 42px
  );
}

/* ---------- Header ---------- */

.topline {
  background: var(--panel);
  color: var(--cream-dim);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--bark-line);
}

.topline .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.topline b { color: var(--copper-bright); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 18, 13, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bark-line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img { height: 48px; width: auto; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.15;
}

.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--cream-dim);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover { color: var(--cream); border-bottom-color: var(--copper); }
.site-nav a[aria-current="page"] { color: var(--copper-bright); border-bottom-color: var(--copper); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--copper);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-solid { background: var(--copper); color: var(--ink); }
.btn-solid:hover { background: var(--copper-bright); border-color: var(--copper-bright); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(243, 234, 217, 0.4); }
.btn-ghost:hover { background: rgba(243, 234, 217, 0.08); border-color: var(--cream); }

.btn-line { background: transparent; color: var(--copper-bright); border-color: var(--copper); }
.btn-line:hover { background: rgba(193, 129, 63, 0.12); }

.btn:active { transform: translateY(1px); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--copper-bright); outline-offset: 3px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.1rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.94) 8%, rgba(15, 12, 8, 0.55) 55%, rgba(15, 12, 8, 0.35) 100%);
}

.hero .container { position: relative; padding-bottom: 4.5rem; padding-top: 6rem; max-width: 900px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 1.3rem;
}

.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--copper); }

.hero h1, .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 1.3rem;
}

.hero p.lede {
  font-size: 1.14rem;
  color: var(--cream-dim);
  max-width: 56ch;
  margin-bottom: 2.1rem;
}

.hero-actions, .page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Page hero (interior) ---------- */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink) center/cover no-repeat;
  border-bottom: 1px solid var(--bark-line);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.95) 15%, rgba(15, 12, 8, 0.5) 70%, rgba(15, 12, 8, 0.3) 100%);
}

.page-hero .container { position: relative; padding: 3rem 0; max-width: 900px; }
.page-hero p { color: var(--cream-dim); font-size: 1.08rem; max-width: 60ch; }

/* ---------- Sections ---------- */

.section { padding: 5.5rem 0; }
.section-panel { background: var(--panel); }
.section-tight { padding: 3.5rem 0; }

.section-head { max-width: 640px; margin-bottom: 3rem; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.section-head p { color: var(--cream-dim); }

/* ---------- Cards / grid ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
}

.card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.card p { font-size: 0.98rem; color: var(--cream-dim); }

/* ---------- Barber grid cards ---------- */

.barber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.barber-card {
  display: block;
  text-decoration: none;
  color: var(--cream);
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.barber-card:hover { transform: translateY(-6px); border-color: var(--copper); }

.barber-card .photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bark);
}

.barber-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.barber-card:hover img { transform: scale(1.05); }

.barber-card .info { padding: 1.15rem 1.3rem 1.4rem; }

.barber-card .name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.barber-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.7rem;
}

.barber-card .view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.barber-card .view-link::after { content: "\2192"; transition: transform 0.2s ease; }
.barber-card:hover .view-link::after { transform: translateX(4px); }

/* ---------- Barber profile ---------- */

.profile-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.profile-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bark-line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.profile-photo img { width: 100%; height: 100%; object-fit: cover; }

.profile-role {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 0.7rem;
}

.profile-wrap h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.02;
  margin-bottom: 1.1rem;
}

.profile-bio { color: var(--cream-dim); margin-bottom: 2rem; max-width: 56ch; }

.booking-card {
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  margin-bottom: 1.6rem;
}

.booking-card h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.booking-card .sub { font-size: 0.9rem; color: var(--cream-faint); margin-bottom: 1.3rem; }

.booksy-slot {
  min-height: 54px;
  display: flex;
  align-items: center;
}

/* Best-effort restyle of Booksy's injected button so it doesn't clash */
.booksy-widget-container { display: inline-block; }
.booksy-widget-button {
  font-family: var(--font-display) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--bark-line);
  padding-bottom: 0.15rem;
}

.reviews-link:hover { color: var(--copper-bright); border-color: var(--copper); }
.reviews-link .star { color: var(--copper-bright); }

.walkin-note {
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  font-size: 0.98rem;
  color: var(--cream-dim);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 2.2rem;
}

.back-link::before { content: "\2190"; }
.back-link:hover { color: var(--copper-bright); }

/* ---------- Services / price board ---------- */

.price-board { max-width: 680px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--bark-line);
}

.price-row .item {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.price-row .leader {
  flex: 1;
  border-bottom: 2px dotted var(--cream-faint);
  transform: translateY(-0.35em);
  opacity: 0.5;
}

.price-row .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--copper-bright);
  white-space: nowrap;
}

/* ---------- Info cards (hours/location) ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.info-card {
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}

.info-card .label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.7rem;
}

.info-card .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.25rem 0; color: var(--cream-dim); font-size: 0.95rem; }
.info-card .row span:last-child { color: var(--cream); }

/* ---------- Map / contact ---------- */

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bark-line);
  box-shadow: var(--shadow);
}

.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(0.35) contrast(1.05); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-form { display: grid; gap: 1.1rem; max-width: 480px; }

.contact-form label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.4rem; display: block; }

.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--cream);
  background: var(--panel-raised);
  border: 1.5px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
}

.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--copper); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--bark); border-top: 1px solid var(--bark-line); }

.cta-band .container {
  padding: 3.8rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 22ch;
  line-height: 1.1;
}

.cta-band p { color: var(--cream-dim); max-width: 44ch; margin-top: 0.4rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--panel); padding: 3rem 0 2rem; font-size: 0.92rem; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { color: var(--cream-dim); text-decoration: none; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--copper-bright); }

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--cream-dim); text-decoration: none; font-size: 0.88rem; }
.footer-social a:hover { color: var(--copper-bright); }

.footer-legal {
  border-top: 1px solid var(--bark-line);
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .barber-card, .barber-card img { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .profile-wrap { grid-template-columns: 1fr; }
  .profile-photo { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 760px) {
  .topline .container { justify-content: center; text-align: center; }
  .topline span:last-child { display: none; }
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--bark-line);
    display: none;
    padding: 0.6rem 4%;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--bark-line); }
  .site-nav .btn { margin: 0.8rem 0.4rem; text-align: center; }

  .hero { min-height: 78vh; }
  .price-row .item, .price-row .price { font-size: 1rem; }
}

/* ===== 2026 visual refinement ===== */
.site-header { top: 0; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.site-header .container { padding: .7rem 0; }
.brand img { height: 54px; }
.hero::after { background: linear-gradient(90deg, rgba(12,10,7,.94) 0%, rgba(12,10,7,.82) 38%, rgba(12,10,7,.34) 72%, rgba(12,10,7,.18) 100%); }
.hero .container { max-width: 1160px; width:min(1160px,92%); }
.hero-copy { max-width: 660px; padding: 2.5rem; background: rgba(18,14,10,.72); border:1px solid rgba(243,234,217,.12); backdrop-filter: blur(6px); box-shadow: var(--shadow); }
.hero h1 { font-size:clamp(3.2rem,7vw,6.2rem); }
.hero p.lede { color:#e0d3bd; font-size:1.18rem; }
.hero-proof { display:flex; align-items:center; flex-wrap:wrap; gap:.7rem; margin-top:1.4rem; color:var(--cream-dim); font-size:.86rem; }
.hero-proof strong { color:var(--cream); }
.rating-stars,.review-stars { color:var(--copper-bright); letter-spacing:.12em; }

.profile-reviews { margin-top:4rem; padding-top:3rem; border-top:1px solid var(--bark-line); }
.rating-summary { display:flex; align-items:end; justify-content:space-between; gap:2rem; margin-bottom:1.6rem; }
.rating-summary h2,.contact-hero h1,.visit-card h2,.parking-card h2 { font-family:var(--font-display); text-transform:uppercase; line-height:1.05; }
.rating-summary h2 { font-size:clamp(1.8rem,4vw,2.7rem); }
.rating-badge { display:flex; align-items:center; gap:1rem; text-decoration:none; background:var(--panel-raised); border:1px solid var(--bark-line); border-radius:8px; padding:.85rem 1rem; }
.rating-number { font-family:var(--font-display); font-size:2rem; color:var(--cream); }
.rating-badge small { display:block; color:var(--cream-dim); margin-top:.15rem; }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-bottom:1.4rem; }
.review-grid-home { grid-template-columns:repeat(4,1fr); }
.review-card { background:linear-gradient(145deg,var(--panel-raised),#211910); border:1px solid var(--bark-line); border-radius:8px; padding:1.45rem; box-shadow:0 16px 34px -28px #000; }
.review-card blockquote { font-size:.98rem; color:var(--cream); margin:.8rem 0 1.2rem; }
.review-meta { display:flex; flex-direction:column; gap:.1rem; }
.review-meta strong { font-family:var(--font-display); text-transform:uppercase; letter-spacing:.04em; }
.review-meta span { color:var(--cream-faint); font-size:.78rem; }
.home-review a { display:inline-block; margin-top:1rem; color:var(--copper-bright); text-decoration:none; font-family:var(--font-display); text-transform:uppercase; font-size:.8rem; letter-spacing:.05em; }
.reviews-section { background:radial-gradient(circle at top left,rgba(193,129,63,.10),transparent 36%),var(--ink); }
.review-disclaimer { color:var(--cream-faint); font-size:.78rem; margin-top:1rem; }

.footer-social { align-items:center; }
.social-icon { width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--bark-line); border-radius:50%; color:var(--copper-bright); transition:.2s ease; }
.social-icon svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; }
.social-icon:nth-child(2) svg { fill:currentColor; stroke:none; }
.social-icon:hover { background:var(--copper); color:var(--ink); border-color:var(--copper); transform:translateY(-2px); }

.contact-hero { padding:7rem 0 4rem; background:linear-gradient(110deg,rgba(15,12,8,.96),rgba(15,12,8,.68)),url('/assets/images/crew-storefront.jpg') center/cover; border-bottom:1px solid var(--bark-line); }
.contact-hero .container { max-width:800px; margin-left:max(4%,calc((100% - 1160px)/2)); }
.contact-hero h1 { font-size:clamp(2.8rem,6vw,5rem); margin-bottom:1rem; }
.contact-hero p { max-width:60ch; color:var(--cream-dim); }
.contact-actions { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-bottom:3rem; }
.contact-action { position:relative; min-height:220px; display:flex; flex-direction:column; justify-content:space-between; text-decoration:none; padding:1.5rem; background:var(--panel-raised); border:1px solid var(--bark-line); border-radius:8px; transition:.2s ease; }
.contact-action:hover { transform:translateY(-5px); border-color:var(--copper); }
.contact-icon { color:var(--copper); font-family:var(--font-display); font-size:.82rem; letter-spacing:.12em; }
.contact-action small { color:var(--cream-faint); text-transform:uppercase; letter-spacing:.12em; }
.contact-action h2 { font-family:var(--font-display); text-transform:uppercase; font-size:1.45rem; margin:.3rem 0 .5rem; }
.contact-action p { color:var(--cream-dim); font-size:.9rem; }
.action-arrow { position:absolute; right:1.4rem; top:1.2rem; color:var(--copper-bright); font-size:1.3rem; }
.contact-detail-grid { display:grid; grid-template-columns:1.35fr .65fr; gap:1.3rem; margin-bottom:1.3rem; }
.contact-map-card,.visit-card,.parking-card { background:var(--panel-raised); border:1px solid var(--bark-line); border-radius:8px; overflow:hidden; }
.contact-map-card .map-wrap { border:0; border-radius:0; box-shadow:none; height:100%; }
.contact-map-card iframe { height:100%; min-height:430px; }
.visit-card { padding:2rem; }
.visit-card h2 { font-size:2rem; margin:.35rem 0 1.4rem; }
.hours-list { border-top:1px solid var(--bark-line); margin-bottom:1.4rem; }
.hours-list div { display:flex; justify-content:space-between; gap:1rem; padding:.85rem 0; border-bottom:1px solid var(--bark-line); font-size:.9rem; }
.hours-list span { color:var(--cream-dim); }
.visit-card p { color:var(--cream-dim); margin-bottom:1.4rem; }
.parking-card { display:grid; grid-template-columns:.8fr 1.2fr; align-items:center; gap:2rem; padding:2rem; }
.parking-card h2 { font-size:2rem; margin:.35rem 0 .75rem; }
.parking-card p { color:var(--cream-dim); }
.parking-card img { width:100%; border-radius:6px; border:1px solid var(--bark-line); }

@media (max-width: 980px) {
  .review-grid-home { grid-template-columns:repeat(2,1fr); }
  .contact-actions { grid-template-columns:1fr; }
  .contact-action { min-height:160px; }
  .contact-detail-grid,.parking-card { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .hero-copy { padding:1.5rem; }
  .hero::after { background:linear-gradient(0deg,rgba(12,10,7,.96),rgba(12,10,7,.46)); }
  .rating-summary { align-items:flex-start; flex-direction:column; }
  .review-grid,.review-grid-home { grid-template-columns:1fr; }
  .contact-hero { padding:5rem 0 3rem; }
  .contact-hero .container { margin-inline:auto; }
}


/* ---------- July 2026 visual refinements ---------- */

/* Keep hero overlays behind all text and controls. */
.hero::after,
.page-hero::after {
  z-index: 0;
  pointer-events: none;
}

.hero .container,
.page-hero .container {
  z-index: 1;
}

/* Stronger, cleaner homepage content panel with fully readable copy. */
.hero-copy {
  position: relative;
  z-index: 2;
  background: rgba(18, 14, 10, 0.94);
  border-color: rgba(217, 154, 83, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-copy h1,
.hero-copy .lede,
.hero-copy .hero-proof,
.hero-copy .hero-actions {
  opacity: 1;
}

.hero-copy .lede {
  color: var(--cream);
}

.hero-proof {
  color: #d2c2a8;
}

/* Let the hero and its overlay cover the complete visible photograph. */
.hero {
  min-height: calc(100vh - 66px);
}

/* Remove decorative dashes before labels throughout the site. */
.eyebrow::before {
  display: none;
  content: none;
}

.eyebrow {
  gap: 0;
}

/* Clear, compact logo lockup. */
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-word {
  color: var(--copper-bright);
  font-size: 1.12rem;
}

.brand-word small {
  color: var(--copper-bright);
}

/* Give the primary navigation action more presence. */
.site-nav .btn {
  padding: 0.9rem 1.65rem;
  font-size: 0.98rem;
  min-width: 112px;
  text-align: center;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero-copy {
    background: rgba(18, 14, 10, 0.92);
  }

  .site-nav .btn {
    padding: 0.95rem 1.25rem;
  }
}

/* ---------- July 2026: carousel, rotation, texture, polish ---------- */

/* Film-grain texture over the whole page (very subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Profile photo carousel */
.photo-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bark-line);
  box-shadow: var(--shadow);
}
.photo-carousel .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  aspect-ratio: 4 / 5;
}
.photo-carousel .carousel-track::-webkit-scrollbar { display: none; }
.photo-carousel figure {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}
.photo-carousel img { width: 100%; height: 100%; object-fit: cover; }

.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 0.9rem;
  display: flex; justify-content: center; gap: 0.45rem;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--cream);
  background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.2s ease;
}
.carousel-dots button.on { background: var(--copper-bright); border-color: var(--copper-bright); }

.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--bark-line);
  border-radius: 50%;
  background: rgba(21, 18, 13, 0.72);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.carousel-arrow.prev { left: 0.8rem; }
.carousel-arrow.next { right: 0.8rem; }
.photo-carousel:hover .carousel-arrow:not(:disabled),
.carousel-arrow:focus-visible { opacity: 1; }
.carousel-arrow:hover { background: var(--copper); color: var(--ink); }
.carousel-arrow:disabled { opacity: 0 !important; cursor: default; }
@media (hover: none) { .carousel-arrow { opacity: 1; } .carousel-arrow:disabled { opacity: 0 !important; } }

/* Rotating home reviews: crossfade */
.home-review blockquote, .home-review .review-meta, .home-review a {
  transition: opacity 0.45s ease;
}
.home-review.swap-out blockquote,
.home-review.swap-out .review-meta,
.home-review.swap-out a { opacity: 0; }

/* First-available panel on /barbers/ */
.first-available {
  margin-top: 3rem;
  background: var(--panel-raised);
  border: 1px solid var(--bark-line);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 2rem;
}
.first-available h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.first-available > p { color: var(--cream-dim); max-width: 62ch; margin-bottom: 1.4rem; }
.availability-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0.9rem; }
.availability-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--bark-line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.availability-links a:hover { border-color: var(--copper); transform: translateY(-3px); }
.availability-links .who { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; }
.availability-links .who small { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--cream-faint); font-size: 0.78rem; margin-top: 0.1rem; }
.availability-links .go { color: var(--copper-bright); font-size: 1.1rem; }

/* Hover polish */
.price-row { transition: background 0.2s ease, padding-left 0.2s ease; }
.price-row:hover { background: rgba(193, 129, 63, 0.07); padding-left: 0.6rem; }
.info-card, .card { transition: transform 0.22s ease, border-color 0.22s ease; }
.info-card:hover, .card:hover { transform: translateY(-4px); border-color: var(--copper); }
.review-card { transition: transform 0.22s ease, border-color 0.22s ease; }
.review-card:hover { transform: translateY(-3px); border-color: var(--copper); }

@media (prefers-reduced-motion: reduce) {
  .price-row, .info-card, .card, .review-card, .availability-links a,
  .carousel-arrow, .carousel-dots button,
  .home-review blockquote, .home-review .review-meta, .home-review a { transition: none; }
  .info-card:hover, .card:hover, .review-card:hover, .availability-links a:hover { transform: none; }
}

/* ---------- Round 2 fixes ---------- */

/* 1. Interior page heroes: frame the photo properly and even out the overlay */
.page-hero {
  min-height: 52vh;
  background-position: center 30%;
}
.page-hero::after {
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.92) 0%, rgba(15, 12, 8, 0.55) 45%, rgba(15, 12, 8, 0.35) 100%);
}

/* 2. Booksy's injected Book Now button -> match the site's copper button */
.booksy-widget-container button,
button.booksy-widget-button,
.booksy-widget-button {
  background: var(--copper) !important;
  background-color: var(--copper) !important;
  background-image: none !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--copper) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.75rem 1.5rem !important;
  box-shadow: none !important;
  transition: background 0.2s ease !important;
}
.booksy-widget-container button:hover,
button.booksy-widget-button:hover,
.booksy-widget-button:hover {
  background: var(--copper-bright) !important;
  background-color: var(--copper-bright) !important;
  border-color: var(--copper-bright) !important;
}

/* 4. Full logo lockup in the header */
.brand img { height: 56px; width: auto; object-fit: contain; }
.site-footer .brand img { height: 64px; }

/* 5. Footer phone reveal */
.phone-reveal { position: relative; }
.phone-number-pop {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  right: 0;
  background: var(--panel-raised);
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--copper-bright);
  text-decoration: none;
  box-shadow: var(--shadow);
  display: none;
}
.phone-reveal.open .phone-number-pop { display: block; }

/* 6. Home hero: slide the copy panel right so the storefront shows */
@media (min-width: 981px) {
  .hero-copy { margin-left: auto; margin-right: 2rem; }
  .hero::after { background: linear-gradient(270deg, rgba(12,10,7,.94) 0%, rgba(12,10,7,.82) 38%, rgba(12,10,7,.34) 72%, rgba(12,10,7,.18) 100%); }
}

/* ---------- Round 3 fixes ---------- */

/* 1. Phone button: identical ring style to the other social icons */
button.phone-toggle {
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
button.phone-toggle:hover { background: var(--copper); color: var(--ink); border-color: var(--copper); }

/* 2. Interior heroes: overlay always covers the full photo, no bleed */
.page-hero { overflow: hidden; isolation: isolate; background-size: cover; }
.page-hero::after { inset: -2px; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.hero { overflow: hidden; isolation: isolate; background-size: cover; }
.hero::after { inset: -2px; }

/* 4. Booksy button label: force readable text on the copper button,
      including any nested spans Booksy injects */
.booksy-widget-button,
.booksy-widget-button *,
.booksy-widget-container button,
.booksy-widget-container button * {
  color: var(--ink) !important;
  fill: var(--ink) !important;
  opacity: 1 !important;
  text-indent: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
  visibility: visible !important;
}

/* 5. Logo-only lockup: a touch larger now that the wordmark is gone */
.brand img { height: 62px; }
.site-footer .brand img { height: 72px; }
@media (max-width: 760px) { .brand img { height: 54px; } }

/* ---------- Round 4 fixes ---------- */

/* 1. Kill the hairline between interior heroes and the content below */
.page-hero { border-bottom: none; }
.page-hero::after { border: none; }
.contact-hero { border-bottom: none; }

/* 3. Services hero: soften the overlay so the neon sign reads clearly */
.page-hero.hero-sign::after {
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.9) 0%, rgba(15, 12, 8, 0.42) 40%, rgba(15, 12, 8, 0.12) 100%);
}

/* 4. Footer icons: all three in the same copper */
.footer-social a.social-icon,
.footer-social button.social-icon,
.social-icon { color: var(--copper-bright); }
.footer-social a { color: var(--copper-bright); }

/* ---------- Round 5 fixes ---------- */

/* 1. Booksy button label: Booksy's own text won't take our color, so
      mute whatever it renders and paint the label ourselves. */
.booksy-widget-button,
.booksy-widget-button *,
.booksy-widget-container button,
.booksy-widget-container button * {
  font-size: 0 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}
.booksy-widget-button::after,
.booksy-widget-container button::after {
  content: "Book Now";
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  line-height: 1.2;
}

/* 2. Services hero: show the whole neon sign, zoomed out */
.page-hero.hero-sign {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-color: var(--ink);
}
.page-hero.hero-sign::after {
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.82) 0%, rgba(15, 12, 8, 0.25) 35%, rgba(15, 12, 8, 0.05) 100%);
}

/* ---------- Round 6 fixes ---------- */

/* 1. Booksy button: guarantee the self-painted label renders even if
      Booksy sizes the button oddly */
.booksy-widget-button,
.booksy-widget-container button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  min-width: 150px !important;
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  text-indent: 0 !important;
}

/* 3. Home hero: push the copy panel further right, slim it slightly,
      so the shopfront reads on the left */
@media (min-width: 981px) {
  .hero-copy { max-width: 600px; margin-left: auto; margin-right: 0; }
  .hero .container { width: min(1240px, 95%); max-width: 1240px; }
}

/* Booksy badge: instead of guessing Booksy's markup (which kept
   catching the button too), clip the slot to the button's height.
   The button shows; the "powered by" badge below the fold is cut off. */
.booksy-slot {
  max-height: 52px;
  overflow: hidden;
  align-items: flex-start;
}
.booksy-widget-button,
.booksy-widget-container button {
  min-height: 46px !important;
  max-height: 50px !important;
}
