:root {
  --bg: #0c0a09;
  --paper: rgba(20, 17, 15, 0.84);
  --paper-strong: rgba(15, 13, 12, 0.97);
  --ink: #f2eadf;
  --muted: #c0b19f;
  --line: rgba(255, 243, 228, 0.11);
  --night: #0d0c0b;
  --night-soft: #171513;
  --night-line: rgba(255, 245, 231, 0.08);
  --night-text: #f4ecdf;
  --night-muted: #c7b8a6;
  --accent: #c38a58;
  --accent-deep: #345f4c;
  --accent-soft: rgba(195, 138, 88, 0.16);
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.4);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(52, 95, 76, 0.2), transparent 22%),
    radial-gradient(circle at 100% 8%, rgba(195, 138, 88, 0.16), transparent 24%),
    linear-gradient(180deg, #0a0908 0%, #100e0d 44%, #0b0a09 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 248, 237, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 237, 0.018) 1px, transparent 1px);
  background-size: 100% 36px, 36px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f4ead9;
  color: #171311;
  font-weight: 800;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(10, 9, 8, 0.72);
  border-bottom: 1px solid rgba(255, 243, 228, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.05);
  font-family: "Instrument Serif", serif;
  font-size: 1.3rem;
  color: var(--accent);
}

.nav {
  display: none;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 243, 228, 0.08);
  border-radius: 16px;
  background: rgba(255, 248, 237, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 248, 237, 0.08);
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.menu-toggle-lines span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.menu-drawer.is-open {
  max-height: min(80vh, 680px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu-drawer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 14px;
  padding: 18px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  border-radius: 28px;
  background: rgba(10, 9, 8, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.menu-drawer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.menu-drawer-links,
.menu-drawer-meta {
  display: grid;
  gap: 10px;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-link:hover,
.menu-link.is-active {
  background: rgba(255, 248, 237, 0.08);
  border-color: rgba(255, 243, 228, 0.14);
}

.menu-link strong {
  font-size: 1rem;
  font-weight: 700;
}

.menu-link span,
.menu-meta-copy,
.menu-meta-copy a {
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-meta-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background:
    radial-gradient(circle at top right, rgba(195, 138, 88, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.05), rgba(255, 248, 237, 0.02));
}

.menu-meta-card .pill {
  margin-bottom: 14px;
}

.menu-meta-card strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.menu-meta-copy {
  margin: 12px 0 0;
  line-height: 1.6;
}

.menu-drawer-actions {
  margin-top: auto;
  padding-top: 16px;
  padding-bottom: calc(4px + var(--viewport-bottom-gap, 0px));
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0), rgba(10, 9, 8, 0.96) 28%);
}

.menu-drawer-actions .button {
  width: 100%;
}

main {
  min-height: calc(100vh - 220px);
}

section {
  padding: 28px 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(52, 95, 76, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 44%);
  opacity: 0.55;
}

.hero {
  padding: 44px 0 28px;
}

.hero-grid,
.split-grid,
.location-grid,
.cards-3,
.quotes,
.masters,
.page-links,
.works-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

.split-grid,
.location-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.cards-3,
.quotes,
.page-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-3,
.page-links {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cards-3 > *,
.page-links > * {
  grid-column: span 4;
}

.cards-3 > *:nth-child(2),
.page-links > *:nth-child(2) {
  grid-column: 5 / span 5;
}

.cards-3 > *:nth-child(3),
.page-links > *:nth-child(3) {
  grid-column: 10 / span 3;
}

.masters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-copy,
.hero-visual,
.card,
.master-card,
.quote,
.location-card,
.cta-panel,
.price-table,
.work-card,
.stat-card,
.page-link {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: 30px;
}

.hero-copy,
.hero-visual {
  border-radius: 38px;
}

.hero-copy {
  padding: 36px;
}

.hero-visual {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(195, 138, 88, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.05), rgba(255, 250, 242, 0.01));
}

.page-hero {
  padding: 30px 0 14px;
}

.page-hero-copy {
  padding: 34px;
}

.eyebrow,
.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow,
.pill {
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
  color: var(--muted);
}

.badge {
  background: rgba(47, 106, 81, 0.18);
  color: #dceadd;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  line-height: 1.01;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 1.06;
}

.page-hero h1 {
  max-width: 11ch;
}

.barbers-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.works-hero-title {
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.04;
}

.home-hero-title {
  font-size: clamp(1.95rem, 3.9vw, 3rem);
  line-height: 1.06;
  max-width: 16ch;
}

.lead,
.section-head p,
.card p,
.master-card p,
.quote p,
.location-card p,
.cta-panel p,
.work-card p,
.page-link p {
  color: var(--muted);
  line-height: 1.62;
}

.lead {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero-promo {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(47, 106, 81, 0.14);
  border: 1px solid rgba(47, 106, 81, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-promo strong {
  font-size: 1rem;
}

.trust-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-footnote {
  margin-top: 18px;
  max-width: 48ch;
  color: rgba(255, 243, 228, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.trust-item,
.stat-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
}

.trust-item span,
.stat-card span,
.section-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-item strong,
.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.visual-frame,
.page-hero-visual,
.work-visual {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.visual-frame {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1622287162716-f311baa1a2b8?auto=format&fit=crop&w=1400&q=80") center/cover;
  transform: translate3d(0, 0, 0) scale(1.05);
  transition: transform 180ms linear;
}

.home-visual-frame {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72));
}

.page-hero-visual {
  min-height: 360px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.7));
}

.photo-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
  z-index: 1;
}

.page-hero-photo,
.work-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(8, 8, 8, 0.78);
}

.feature-photo {
  object-fit: cover;
}

.home-feature-photo {
  object-fit: contain;
  transform: scale(0.9);
  transform-origin: center;
}

.visual-frame::after,
.page-hero-visual::after,
.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 14%, rgba(195, 138, 88, 0.3), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.74));
}

.visual-tag-cluster {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visual-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 228, 0.12);
  background: rgba(12, 11, 10, 0.46);
  color: rgba(255, 243, 228, 0.92);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: var(--night-text);
}

.visual-copy strong {
  display: block;
  max-width: 10ch;
  font-size: 1.72rem;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.visual-copy p {
  margin: 10px 0 0;
  max-width: 26ch;
  color: var(--night-muted);
  line-height: 1.56;
  font-size: 0.96rem;
}

.work-visual {
  min-height: 280px;
  background: rgba(8, 8, 8, 0.86);
}

.work-photo {
  padding: 10px;
}

.dark-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(195, 138, 88, 0.1), transparent 20%),
    linear-gradient(180deg, #110f0e 0%, #171311 100%);
  color: var(--night-text);
}

.dark-band::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 131, 81, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.03), transparent 46%);
  opacity: 0.6;
}

.dark-band .card,
.dark-band .master-card,
.dark-band .quote,
.dark-band .work-card,
.dark-band .page-link,
.dark-band .stat-card {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.045), rgba(255, 248, 237, 0.02));
  border-color: var(--night-line);
  color: var(--night-text);
}

.dark-band .card p,
.dark-band .master-card p,
.dark-band .quote p,
.dark-band .master-meta,
.dark-band .master-services,
.dark-band .page-link p,
.dark-band .work-card p,
.dark-band .stat-card span {
  color: var(--night-muted);
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.dark-band .section-label,
.dark-band .section-head p {
  color: var(--night-muted);
}

.card,
.master-card,
.quote,
.location-card,
.price-table,
.cta-panel,
.work-card,
.page-link {
  padding: 26px;
}

.page-link,
.work-card {
  overflow: hidden;
}

.page-link,
.master-card,
.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-link h3,
.card h3,
.master-card h3,
.location-card h3,
.work-card h3,
.price-table h3 {
  font-size: 1.08rem;
}

.hero-mini-note {
  margin-top: 18px;
  max-width: 42ch;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 243, 228, 0.14);
  color: rgba(255, 243, 228, 0.72);
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.1);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 5, 0.74);
  backdrop-filter: blur(16px);
}

.booking-modal-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(195, 138, 88, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 16, 15, 0.98), rgba(12, 11, 10, 0.98));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 243, 228, 0.08);
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.05);
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

.booking-modal-head h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.booking-modal-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.booking-quick-picks {
  display: grid;
  gap: 10px;
}

.booking-quick-picks > span {
  font-size: 0.92rem;
  color: var(--muted);
}

.booking-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-chip {
  appearance: none;
  border: 1px solid rgba(255, 243, 228, 0.1);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 248, 237, 0.05);
  color: var(--night-text);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.booking-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(195, 138, 88, 0.34);
}

.booking-chip.is-active {
  background: rgba(52, 95, 76, 0.3);
  border-color: rgba(96, 164, 133, 0.55);
  color: #f7f3ea;
}

.booking-grid {
  display: grid;
  gap: 16px;
}

.booking-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 243, 228, 0.1);
  border-radius: 16px;
  background: rgba(255, 248, 237, 0.05);
  color: var(--ink);
  font: inherit;
}

.booking-field select {
  color: #111111 !important;
  background: #f5ede2 !important;
  -webkit-text-fill-color: #111111;
}

.booking-field select option {
  color: #111111 !important;
  background: #ffffff !important;
}

.booking-field textarea {
  min-height: 108px;
  padding: 14px 16px;
  resize: vertical;
}

.booking-time-field {
  min-width: 0;
}

.booking-slot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 54px;
}

.booking-slot,
.booking-slot-placeholder {
  min-height: 42px;
  border-radius: 12px;
}

.booking-slot {
  appearance: none;
  border: 1px solid rgba(255, 243, 228, 0.12);
  background: rgba(255, 248, 237, 0.05);
  color: var(--night-text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-slot:hover {
  transform: translateY(-1px);
  border-color: rgba(195, 138, 88, 0.42);
}

.booking-slot.is-active {
  border-color: rgba(96, 164, 133, 0.62);
  background: rgba(52, 95, 76, 0.34);
  color: #f7f3ea;
}

.booking-slot-placeholder {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
  color: var(--muted);
  line-height: 1.35;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(185, 171, 153, 0.72);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(195, 138, 88, 0.56);
  box-shadow: 0 0 0 3px rgba(195, 138, 88, 0.12);
}

.booking-form-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(52, 95, 76, 0.14);
  color: var(--muted);
  line-height: 1.6;
}

.booking-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 243, 228, 0.86);
}

.booking-consent input {
  margin: 2px 0 0;
  inline-size: 18px;
  block-size: 18px;
  accent-color: #d4a25a;
}

.booking-consent a,
.legal-copy a,
.map-privacy-note a {
  color: #f2c986;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.booking-form-feedback {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

.booking-form-feedback.is-success {
  border-color: rgba(73, 181, 123, 0.28);
  background: rgba(73, 181, 123, 0.12);
  color: #d7f2df;
}

.booking-form-feedback.is-error {
  border-color: rgba(215, 90, 90, 0.28);
  background: rgba(215, 90, 90, 0.12);
  color: #ffd7d7;
}

.booking-form-feedback.is-info {
  border-color: rgba(195, 138, 88, 0.26);
  background: rgba(195, 138, 88, 0.12);
  color: #f6e5cf;
}

.legal-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.legal-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.legal-copy p,
.legal-copy li {
  color: rgba(255, 243, 228, 0.84);
  line-height: 1.75;
}

.legal-copy ul {
  margin: 0;
  padding-left: 1.2rem;
}

.map-privacy-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 243, 228, 0.7);
}

.booking-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-form-actions .button {
  flex: 1 1 220px;
}

.page-link-head,
.page-link-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-link-foot {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-weight: 700;
}

.section-aside-note {
  margin-top: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 243, 228, 0.14);
  max-width: 34ch;
  color: rgba(255, 243, 228, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

.num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}

.master-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(185, 131, 81, 0.24), rgba(47, 106, 81, 0.18));
  color: var(--night-text);
  font-size: 1.15rem;
  font-weight: 800;
}

.master-photo {
  position: relative;
  overflow: hidden;
  margin: -24px -24px 20px;
  border-radius: 28px 28px 22px 22px;
  aspect-ratio: 0.9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
}

.master-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.5)),
    radial-gradient(circle at 78% 10%, rgba(195, 138, 88, 0.22), transparent 26%);
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.master-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.master-badge-row {
  margin-top: -2px;
  margin-bottom: 10px;
}

.master-services {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.56;
}

.selection-rail {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.selection-rail div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
}

.selection-rail span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-rail strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.master-link,
.inline-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.price-table th,
.price-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 243, 228, 0.08);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote footer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-list,
.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.route-list li,
.bullet-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 243, 228, 0.08);
}

.cta-panel {
  background:
    radial-gradient(circle at top left, rgba(52, 95, 76, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(195, 138, 88, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(19, 17, 16, 0.98), rgba(27, 23, 20, 0.99));
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--accent-deep);
  color: #f7f3ea;
  box-shadow: 0 18px 44px rgba(52, 95, 76, 0.26);
}

.button-secondary {
  background: rgba(255, 248, 237, 0.05);
  border-color: rgba(255, 243, 228, 0.1);
}

.work-visual {
  min-height: 280px;
  margin: -24px -24px 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.76)),
    var(--work-image) center/cover;
}

.work-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
}

.work-copy strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.work-copy span {
  display: block;
  margin-top: 8px;
  color: var(--night-muted);
  font-size: 0.95rem;
}

.works-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.works-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 228, 0.08);
  background: rgba(255, 248, 237, 0.04);
  color: var(--night-muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #171513;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.footer {
  padding: 18px 0 54px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 243, 228, 0.08);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .location-grid,
  .section-head,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .masters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .quotes,
  .page-links {
    grid-template-columns: 1fr;
  }

  .cards-3 > *,
  .page-links > *,
  .cards-3 > *:nth-child(2),
  .page-links > *:nth-child(2),
  .cards-3 > *:nth-child(3),
  .page-links > *:nth-child(3) {
    grid-column: auto;
  }

  .trust-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-drawer-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid-2 {
    grid-template-columns: 1fr;
  }

  .booking-slot-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 92px; }
  .shell { width: min(calc(100% - 20px), var(--max)); }
  .topbar { position: static; }
  .footer-inner,
  .cta-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
  }
  .brand {
    justify-content: flex-start;
    min-width: 0;
    flex: 1;
  }
  .hero { padding: 28px 0 18px; }
  .hero-grid { gap: 16px; }
  .hero-copy,
  .hero-visual,
  .page-hero-copy,
  .card,
  .master-card,
  .quote,
  .location-card,
  .cta-panel,
  .price-table,
  .page-link,
  .work-card {
    padding: 22px;
    border-radius: 26px;
  }

  .skip-link:focus {
    left: 10px;
    right: 10px;
    top: 10px;
  }
  .hero-copy,
  .page-hero-copy {
    padding: 20px;
  }
  h1 {
    font-size: clamp(1.95rem, 7.2vw, 2.65rem);
    line-height: 1.06;
    max-width: 100%;
  }
  .home-hero-title {
    font-size: clamp(1.55rem, 5.4vw, 2.15rem);
    max-width: 100%;
  }
  .barbers-hero-title {
    font-size: clamp(1.7rem, 6vw, 2.25rem);
  }
  .works-hero-title {
    font-size: clamp(1.65rem, 5.7vw, 2.1rem);
  }
  h2 {
    font-size: clamp(1.5rem, 5.8vw, 2rem);
    line-height: 1.08;
  }
  .lead,
  .section-head p,
  .quote p,
  .location-card p,
  .work-card p {
    font-size: 0.98rem;
    line-height: 1.64;
  }
  .eyebrow,
  .hero-promo {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .hero-promo strong {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-footnote,
  .section-aside-note,
  .hero-mini-note {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .visual-frame,
  .page-hero-visual {
    min-height: 320px;
  }
  .visual-tag-cluster {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 8px;
  }
  .visual-tag {
    min-height: 32px;
    font-size: 0.76rem;
  }
  .visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .visual-copy strong {
    font-size: 1.55rem;
    max-width: 100%;
  }
  .visual-copy p {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.52;
  }
  .trust-grid,
  .masters,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions .button,
  .button {
    width: 100%;
  }
  .price-table th:last-child,
  .price-table td:last-child {
    text-align: right;
  }
  .work-visual {
    min-height: 210px;
    margin: -22px -22px 18px;
  }
  .work-photo {
    padding: 8px;
  }
  .lightbox {
    padding: 14px;
  }
  .lightbox img {
    max-width: 100%;
    max-height: 82vh;
  }
  .booking-modal {
    padding: 12px;
  }
  .booking-modal-dialog {
    padding: 22px 16px;
    border-radius: 22px;
  }
  .booking-modal-close {
    top: 12px;
    right: 12px;
  }
  .booking-slot-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .booking-form-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }
  .booking-form-actions .button {
    width: auto;
    min-height: 46px;
    padding: 0 14px;
    flex: 1 1 0;
  }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(16, 15, 14, 0.92);
    border: 1px solid rgba(255, 243, 228, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
  }
  .mobile-cta .button {
    min-height: 50px;
    padding: 0 16px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .menu-drawer-inner {
    width: min(calc(100% - 20px), var(--max));
    padding: 14px;
    border-radius: 24px;
    margin-bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-gap, 0px));
  }

  .menu-drawer.is-open {
    max-height: calc(100dvh - 84px - env(safe-area-inset-bottom, 0px) - var(--viewport-bottom-gap, 0px));
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-gap, 0px));
  }

  .menu-drawer-meta {
    gap: 0;
  }

  .menu-meta-card {
    padding: 16px;
    border-radius: 20px;
  }

  .menu-meta-card strong {
    font-size: 1rem;
  }

  .menu-meta-copy {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .menu-drawer-actions {
    padding-top: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-gap, 0px));
    bottom: 10px;
  }

  .menu-drawer-actions .button {
    min-height: 50px;
  }

  .menu-link {
    padding: 12px 14px;
  }
}
