:root {
  --header-bar: 84px;
  --bg: #070707;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --brand: #d4af37;
  --brand-2: #b8860b;
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-bar) + 12px);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 12% 12%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(800px 500px at 88% 18%, rgba(184, 134, 11, 0.11), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(255, 255, 255, 0.07), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--line);
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}
.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.05;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: var(--header-bar);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: block;
  width: 200px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.26);
}
.brand-text {
  display: grid;
  line-height: 1.1;
}
.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--text);
}
.brand-sub {
  color: var(--muted);
  font-size: clamp(13px, 1.5vw, 15px);
}

.site-nav {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 0;
}
.site-nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 18px);
  pointer-events: auto;
}
.site-nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.site-nav-links a {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: background 140ms ease, color 140ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.nav-call:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 134, 11, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text) !important;
  transition: background 140ms ease, border-color 140ms ease, transform 120ms ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(184, 134, 11, 0.22));
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}
.nav-toggle:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
  border-radius: 2px;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.nav-toggle-lines::before {
  top: -6px;
}
.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  padding: 0 0 56px;
}
.hero-brand {
  background: #000000;
  min-height: calc(100svh - var(--header-bar));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
}
.hero-brand-media {
  flex: 1 1 auto;
  position: relative;
  min-height: min(52vh, 560px);
  width: 100%;
}
.hero-brand-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-brand-cta {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding: clamp(18px, 4vw, 28px) 20px clamp(22px, 4vw, 36px);
}
.hero-brand-book {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}
.hero-intro {
  padding: 40px 0 0;
}
.hero-intro .hero-copy {
  max-width: none;
}
.hero-intro .hero-copy > h1,
.hero-intro .hero-copy > .lead,
.hero-intro .hero-copy > .hero-actions {
  max-width: 72ch;
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}
.hero-copy h1 {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}
.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.button.primary {
  border-color: rgba(212, 175, 55, 0.32);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(184, 134, 11, 0.14));
}
.button.ghost {
  background: transparent;
}
.button.block {
  width: 100%;
}

.hero-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.meta-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
}
@media (min-width: 981px) {
  .hero-meta {
    gap: 16px;
  }
  .meta-card {
    padding: 14px 16px;
  }
}
.meta-title {
  color: var(--muted-2);
  font-size: 12px;
}
.meta-value {
  margin-top: 6px;
  font-weight: 650;
  display: inline-block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 8px 0 0;
  color: var(--muted);
}
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.price {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.duration {
  color: var(--muted-2);
  font-size: 13px;
}

.service-groups {
  display: grid;
  gap: 28px;
}
.service-group-title {
  margin: 0 0 10px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.cards--compact {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.cards--compact .card {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.cards--compact .card h3 {
  font-size: 14px;
  line-height: 1.25;
}
.cards--compact .card p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
}
.cards--compact .card-row {
  margin-top: 10px;
  padding-top: 10px;
}
.cards--compact .price {
  font-size: 15px;
}
.cards--compact .duration {
  font-size: 12px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(184, 134, 11, 0.06));
  color: rgba(255, 255, 255, 0.86);
}

.review-content {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}
#gallery .review-content {
  margin-top: clamp(20px, 3vw, 36px);
  grid-template-columns: 1fr;
  width: 100%;
}
.review-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}
@media (min-width: 961px) {
  #gallery .review-showcase {
    flex-direction: row;
    align-items: stretch;
  }
  #gallery .review-tile {
    flex: 1 1 0;
    min-width: 0;
  }
}
.review-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, border-color 120ms ease;
  padding: 12px 10px;
}
.review-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
}
.review-tile:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.review-tile img {
  width: auto;
  max-width: 100%;
  max-height: 110px;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: contain;
}
.review-footnote {
  margin: 18px 0 0;
  text-align: center;
  font-size: 14px;
}

.review-slideshow {
  margin-top: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.review-slideshow-viewport {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 2.55 / 1;
  max-height: min(34vh, 280px);
  min-height: 120px;
}
.review-slideshow-track {
  display: flex;
  width: 600%;
  height: 100%;
  min-height: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}
.review-slide {
  flex: 0 0 calc(100% / 6);
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  box-sizing: border-box;
}
.review-slide-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  appearance: none;
  border-radius: 0;
}
.review-slide-trigger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.review-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.shot {
  margin: 0;
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  min-height: 190px;
  aspect-ratio: 3 / 4;
  position: relative;
}
.shot--thumb {
  grid-column: span 3;
  min-height: 0;
  max-height: 220px;
  aspect-ratio: 3 / 4;
}
.shot-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
  appearance: none;
}
.shot-trigger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.shot figcaption {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: min(96vw, 1100px);
  max-width: 100%;
  max-height: min(92vh, 920px);
  height: fit-content;
  margin: auto;
  padding: 48px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(10, 10, 10, 0.98);
  color: var(--text);
  overflow: auto;
  box-sizing: border-box;
}
.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}
.gallery-lightbox-img {
  display: block;
  width: auto;
  max-width: min(92vw, 1050px);
  max-height: min(82vh, 1200px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.gallery-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.85);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}
.gallery-lightbox-close:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: start;
}

.hours-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.store-coming-soon {
  margin: 8px auto 0;
  padding: clamp(22px, 4vw, 32px);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 520px;
}
.store-coming-soon .muted {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 16px);
}
.store-badge {
  margin: 0 0 12px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  text-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 18px rgba(212, 175, 55, 0.12);
}

.about-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(184, 134, 11, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 8px);
  padding: 20px;
  box-shadow: var(--shadow);
}
.about-card h3 {
  margin: 0;
  letter-spacing: -0.01em;
}
.about-steps {
  margin-top: 14px;
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.35);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.step-title {
  font-weight: 750;
}
.step-text {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3.5vw, 28px);
  align-items: stretch;
}
.barber-card {
  display: grid;
  grid-template-columns: minmax(0, 168px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 22px);
  align-items: center;
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}
.barber-photo {
  width: 100%;
  max-width: 168px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  justify-self: center;
}
.barber-body {
  min-width: 0;
}
.barber-name {
  margin: 0 0 4px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.barber-role {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}
.barber-bio {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.55;
}

.hours {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-row span:first-child {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}
.hours-row span:last-child {
  color: var(--muted);
}

.location-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 8px);
  padding: 20px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
}
.muted {
  color: var(--muted);
}
.location-map-actions {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 14px;
}
.location-actions {
  margin-top: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}
.location-note {
  margin-top: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  font-size: 13px;
}

.location-map {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}
.footer-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--muted);
}
.footer-leading {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}
.footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer-muted {
  color: var(--muted-2);
}
.footer-sep {
  color: var(--muted-2);
  user-select: none;
}
.footer-sep--contact {
  flex-shrink: 0;
}
.footer-contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.footer-contact a {
  color: var(--muted);
  padding: 4px 0;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 140ms ease;
}
.footer-contact a:hover {
  color: var(--text);
}
.footer-copy {
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--muted-2);
}

@media (max-width: 900px) {
  .footer-bar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
    column-gap: 16px;
  }
  .footer-leading {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-copy {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .review-content {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards.cards--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .cards.cards--compact {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .gallery .shot {
    grid-column: span 12;
  }

  .location-map-actions {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex: none;
  }
  .site-nav[data-open="true"] {
    display: flex;
  }
  .site-nav-links {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
  .site-nav-links a {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
  }
  .site-nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    padding-top: 10px;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav-actions .nav-call,
  .site-nav-actions .nav-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 12px;
    min-height: unset;
  }

  .barber-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .barber-body {
    text-align: center;
  }
  .barber-photo {
    max-width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
  .review-slideshow-track {
    transition: none;
  }
}
