/* ============================================================
   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;
  }
}

/* ---------- Final polish requested July 2, 2026 ---------- */

/* Use the complete logo artwork, with the Black Oak lettering recolored copper. */
.brand img {
  width: 146px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

/* Return the navigation booking action to a balanced size. */
.site-nav .btn {
  min-width: 0;
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
}

/* Interior heroes: preserve the photography and use only a controlled left-side fade. */
.page-hero {
  overflow: hidden;
}
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(14, 11, 8, 0.90) 0%, rgba(14, 11, 8, 0.66) 38%, rgba(14, 11, 8, 0.14) 72%, rgba(14, 11, 8, 0.02) 100%),
    linear-gradient(0deg, rgba(14, 11, 8, 0.38) 0%, rgba(14, 11, 8, 0) 45%);
}
.page-hero .container {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}
.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}
.page-hero p { color: #eadfc9; }

/* Replace Booksy's off-brand cyan widget with a matching copper action. */
.booksy-slot {
  min-height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
}
.booksy-custom {
  min-width: 180px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.9);
}
.booking-note {
  color: var(--cream-faint);
  font-size: .78rem;
}
.booking-card {
  background: linear-gradient(145deg, rgba(46,35,24,.96), rgba(34,25,17,.96));
  border-color: rgba(217,154,83,.25);
  border-radius: 8px;
}

/* Clickable footer phone treatment matching the social icons. */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--cream-dim);
  text-decoration: none;
}
.footer-phone svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--bark-line);
  border-radius: 50%;
  fill: currentColor;
  color: var(--copper-bright);
  transition: .2s ease;
}
.footer-phone:hover { color: var(--cream); }
.footer-phone:hover svg {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .brand img { width: 124px; height: 48px; }
  .page-hero::after {
    background: linear-gradient(0deg, rgba(14,11,8,.88) 0%, rgba(14,11,8,.48) 68%, rgba(14,11,8,.18) 100%);
  }
  .page-hero .container { padding-top: 4rem; padding-bottom: 2.8rem; }
  .site-nav .btn { padding: .8rem 1.2rem; }
}

/* ---------- July 2 final corrections ---------- */
/* Ensure the interior hero image and tint are one continuous, fully covered layer. */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 52vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-bottom: 0;
}
.page-hero::after {
  inset: 0 !important;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14,11,8,.88) 0%, rgba(14,11,8,.62) 42%, rgba(14,11,8,.25) 75%, rgba(14,11,8,.16) 100%) !important;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero + .section { border-top: 1px solid var(--bark-line); }

/* Custom copper trigger opens Booksy's native on-page booking overlay. */
.booksy-slot { position: relative; }
.booksy-custom { cursor: pointer; }
.booksy-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  left: 0;
  bottom: 0;
}
.booksy-native .booksy-widget-button,
.booksy-native a,
.booksy-native button { pointer-events: auto; }

/* Phone number remains hidden until the phone icon is selected. */
.footer-phone-wrap { display: inline-flex; align-items: center; gap: .55rem; min-height: 36px; }
.footer-phone {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.footer-phone-number {
  color: var(--cream-dim);
  text-decoration: none;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-6px);
  transition: max-width .25s ease, opacity .2s ease, transform .25s ease;
}
.footer-phone-wrap.open .footer-phone-number {
  max-width: 150px;
  opacity: 1;
  transform: translateX(0);
}
.footer-phone-number:hover { color: var(--copper-bright); }

@media (max-width: 760px) {
  .page-hero { min-height: 46vh; }
  .page-hero::after {
    background: linear-gradient(0deg, rgba(14,11,8,.88) 0%, rgba(14,11,8,.52) 70%, rgba(14,11,8,.28) 100%) !important;
  }
}
