:root {
  color-scheme: light;
  --ink: #101312;
  --charcoal: #232826;
  --muted: #68706c;
  --line: #dce2de;
  --paper: #f5f7f5;
  --white: #ffffff;
  --red: #d71928;
  --red-dark: #a9141f;
  --brass: #b8792f;
  --sage: #2f6f63;
  --night: #0b0f0d;
  --shadow: 0 18px 52px rgba(10, 15, 13, 0.14);
  --radius: 8px;
  --header-height: 76px;
  --mobile-dock-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 121, 47, 0.08), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.booking-modal-open,
body.external-modal-open,
body.photo-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  body:not(.admin-body) {
    cursor: url("brand/scissors-cursor.svg") 5 5, auto;
  }

  body:not(.admin-body).booking-body,
  body:not(.admin-body) :is(
      .site-header:not(.is-scrolled),
      .site-header:not(.is-scrolled) *,
      .hero,
      .hero *,
      .barbers,
      .barbers *,
      .gallery,
      .gallery *,
      .hours-panel,
      .hours-panel *,
      .social-card-instagram,
      .social-card-instagram *,
      .final-cta,
      .final-cta *,
      .site-footer,
      .site-footer *,
      .booksy-modal,
      .booksy-modal *,
      .external-modal,
      .external-modal *,
      .photo-modal,
      .photo-modal *,
      .booking-hero,
      .booking-hero *,
      .booksy-intro,
      .booksy-intro *
    ) {
    cursor: url("brand/scissors-cursor-white.svg") 5 5, auto;
  }

  body:not(.admin-body) :is(
      .site-header.is-scrolled,
      .site-header.is-scrolled *,
      .booksy-card,
      .booksy-card *,
      .booksy-modal-panel,
      .booksy-modal-panel *,
      .external-modal-panel,
      .external-modal-panel *,
      .external-modal-body,
      .external-modal-body *
    ) {
    cursor: url("brand/scissors-cursor.svg") 5 5, auto;
  }

  body:not(.admin-body) :is(.external-modal-bar, .external-modal-bar *) {
    cursor: url("brand/scissors-cursor-white.svg") 5 5, auto;
  }

  body:not(.admin-body) a,
  body:not(.admin-body) button,
  body:not(.admin-body) [role="button"],
  body:not(.admin-body) input[type="button"],
  body:not(.admin-body) input[type="submit"] {
    cursor: pointer;
  }

  body:not(.admin-body) input,
  body:not(.admin-body) textarea {
    cursor: text;
  }

  body:not(.admin-body) :is(
      .button-primary,
      .button-dark,
      .service-book,
      .header-cta,
      .mobile-action-dock a,
      .back-to-top,
      .site-header:not(.is-scrolled) a,
      .site-header:not(.is-scrolled) button,
      .hero a,
      .hero button,
      .barbers a,
      .barbers button,
      .gallery a,
      .gallery button,
      .hours-panel a,
      .hours-panel button,
      .social-card-instagram a,
      .social-card-instagram button,
      .final-cta a,
      .final-cta button,
      .site-footer a,
      .site-footer button,
      .booking-hero a,
      .booking-hero button,
      .booksy-intro a,
      .booksy-intro button,
      .booksy-modal-backdrop,
      .booksy-modal-close,
      .external-modal-backdrop,
      .external-modal-bar a,
      .external-modal-bar button,
      .photo-modal-backdrop,
      .photo-modal-close
    ) {
    cursor: url("brand/scissors-cursor-white.svg") 5 5, pointer;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.content-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.15rem, 3.35vw, 3.7rem);
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 12px 19px;
  font-size: 0.91rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: break-word;
  text-align: center;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(16, 19, 18, 0.14);
}

.button:active,
.service-book:active,
.mobile-action-dock a:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary[data-phone-link]:hover,
.button-secondary[data-phone-link]:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(216, 32, 45, 0.24);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 34px;
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 260ms var(--ease-out);
  animation: headerDrop 680ms var(--ease-out) both;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(16, 19, 18, 0.1);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 10px;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  width: 178px;
  height: 37px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 23, 23, 0.08);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 220ms ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
}

.logo-tube {
  position: absolute;
  top: -1px;
  bottom: -1px;
  z-index: 2;
  width: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 28, 56, 0.24);
  border-radius: 6px;
  background: #f8fbff;
  box-shadow:
    inset 4px 0 6px rgba(255, 255, 255, 0.64),
    inset -4px 0 7px rgba(11, 26, 48, 0.18),
    0 2px 5px rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.logo-tube::before {
  position: absolute;
  inset: -6px -2px;
  content: "";
  background:
    repeating-linear-gradient(
      -28deg,
      #e2293b 0 7px,
      #f5f8ff 7px 14px,
      #2364b5 14px 21px,
      #f5f8ff 21px 28px
    );
  background-size: 100% 64px;
  animation: logoTubeSpin 7.5s linear infinite;
  will-change: background-position;
}

.logo-tube::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), transparent 35%, rgba(0, 0, 0, 0.16) 72%, rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.16));
}

.logo-tube-left {
  left: 0;
}

.logo-tube-right {
  right: 0;
}

.logo-tube-right::before {
  animation-direction: reverse;
}

.brand-lockup:hover .brand-logo-wrap {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.14);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.86;
  position: relative;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(216, 32, 45, 0.18);
  background: var(--red);
  color: var(--white);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 220ms var(--ease-out),
    opacity 180ms ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: #070907;
  color: var(--white);
  isolation: isolate;
}

.hero-background,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(1.04) contrast(1.08) brightness(0.98);
  transform: scale(1.045);
  animation: heroImageSettle 1600ms var(--ease-out) both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.9) 0%, rgba(5, 8, 7, 0.52) 47%, rgba(5, 8, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 8, 7, 0.78) 0%, rgba(5, 8, 7, 0.02) 45%);
}

.barber-motion-loop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.barber-motion-item {
  position: absolute;
  display: grid;
  width: clamp(54px, 6vw, 86px);
  height: clamp(54px, 6vw, 86px);
  place-items: center;
  color: rgba(255, 255, 255, 0.48);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.22));
  opacity: 0.42;
  transform: translate3d(0, 0, 0) rotate(var(--tool-tilt, 0deg));
  animation: barberToolFloat var(--tool-duration, 17s) ease-in-out infinite;
  will-change: transform, opacity;
}

.barber-motion-item svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.barber-motion-scissors {
  --tool-drift-x: 18px;
  --tool-drift-y: -24px;
  --tool-return-x: -10px;
  --tool-return-y: 16px;
  --tool-duration: 16s;
  --tool-tilt: -14deg;
}

.barber-motion-comb {
  --tool-drift-x: -22px;
  --tool-drift-y: 18px;
  --tool-return-x: 12px;
  --tool-return-y: -13px;
  --tool-duration: 19s;
  --tool-tilt: 18deg;
}

.barber-motion-spray {
  --tool-drift-x: 16px;
  --tool-drift-y: 22px;
  --tool-return-x: -9px;
  --tool-return-y: -15px;
  --tool-duration: 18s;
  --tool-tilt: 10deg;
}

.barber-motion-spray .spray-mist {
  animation: sprayMistPulse 2.6s ease-in-out infinite;
}

.barber-motion-loop-hero .barber-motion-scissors {
  top: 18%;
  right: 13%;
}

.barber-motion-loop-hero .barber-motion-comb {
  right: 31%;
  bottom: 20%;
  animation-delay: -7s;
}

.barber-motion-loop-hero .barber-motion-spray {
  right: 5%;
  bottom: 31%;
  animation-delay: -3.5s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  min-height: 88vh;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
  padding: 124px 0 76px;
}

.hero-message {
  max-width: 760px;
  min-width: 0;
}

.hero-side-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 14, 12, 0.58);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: heroReveal 620ms 340ms var(--ease-out) both;
}

.hero-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.03) contrast(1.04);
}

.hero-side-card div {
  padding: 18px;
}

.hero-side-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffbd6f;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-side-card strong {
  display: block;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.05;
}

.hero-side-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-location {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: heroReveal 520ms 80ms var(--ease-out) both;
}

.hero h1 {
  animation: heroTitle 620ms 120ms var(--ease-out) both;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  overflow-wrap: break-word;
  animation: heroReveal 520ms 200ms var(--ease-out) both;
}

.hero-service-link {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    text-decoration-color 180ms var(--ease-out);
}

.hero-service-link:hover,
.hero-service-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration-color: var(--jr-red);
}

.hero-actions,
.final-actions,
.visit-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  animation: heroReveal 520ms 280ms var(--ease-out) both;
}

.hero-facts {
  display: grid;
  width: min(100%, 760px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  animation: heroReveal 520ms 360ms var(--ease-out) both;
}

.hero-facts div {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 18px 16px 0;
}

.hero-facts div + div {
  padding-left: 18px;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.hero-facts dt .hero-service-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.hero-facts dt .hero-service-link:hover,
.hero-facts dt .hero-service-link:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--jr-red);
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 950;
  overflow-wrap: break-word;
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: scrollCue 1600ms ease-in-out infinite;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(16, 19, 18, 0.14);
}

.trust-strip a {
  display: grid;
  gap: 5px;
  min-height: 92px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 18px 20px;
  color: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.trust-strip a:last-child {
  border-right: 0;
}

.trust-strip a:hover {
  background: #f7f9f6;
  transform: translateY(-1px);
}

.trust-strip span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.intro-band {
  position: relative;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  gap: 56px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 690px;
}

.intro-copy {
  border-left: 4px solid var(--red);
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-actions a {
  border-bottom: 2px solid var(--red);
  color: var(--ink);
  font-weight: 800;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading-row h2 {
  max-width: 760px;
}

.section-note {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.95rem;
}

.services {
  background: var(--white);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.service-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 245, 0.98)),
    var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.05);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(216, 32, 45, 0.28);
  box-shadow: 0 22px 50px rgba(16, 19, 18, 0.09);
  transform: translateY(-3px);
}

.service-card h3 {
  margin-bottom: 5px;
  font-size: 1.28rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-price {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 950;
  text-align: right;
}

.service-book {
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-content: center;
  justify-self: start;
  grid-column: 1 / -1;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  padding: 10px 13px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  transition:
    transform 180ms var(--ease-out),
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.service-book:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.booksy-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3.5vw, 34px);
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.booksy-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.booksy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 42px));
  height: min(860px, calc(100dvh - 54px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms var(--ease-out);
}

.booksy-modal.is-open .booksy-modal-panel {
  transform: translateY(0) scale(1);
}

.booksy-modal-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.booksy-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  z-index: 4;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.booksy-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.04);
}

.booksy-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.booksy-modal-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.booksy-modal-loader strong {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.booksy-modal-loader span {
  color: var(--muted);
  font-weight: 650;
}

.booksy-modal.is-loaded .booksy-modal-loader {
  opacity: 0;
  pointer-events: none;
}

.booksy-modal-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(16, 19, 18, 0.92);
  color: var(--white);
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 900;
}

.booksy-modal.is-loaded .booksy-modal-fallback {
  opacity: 0;
  pointer-events: none;
}

.booksy-modal.is-loaded .booksy-modal-close {
  opacity: 0;
  pointer-events: none;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3.5vw, 34px);
  background: rgba(0, 0, 0, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.photo-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100vw - 42px));
  height: min(820px, calc(100dvh - 54px));
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #050706;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms var(--ease-out);
}

.photo-modal.is-open .photo-modal-panel {
  transform: translateY(0) scale(1);
}

.photo-modal-image {
  width: 100%;
  height: 100%;
  background-color: #050706;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.photo-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  z-index: 4;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.66);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.photo-modal-close:hover,
.photo-modal-close:focus-visible {
  background: var(--red);
  transform: scale(1.04);
}

.photo-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.external-modal {
  position: fixed;
  inset: 0;
  z-index: 2900;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3.5vw, 34px);
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.external-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.external-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(980px, calc(100vw - 42px));
  height: min(760px, calc(100dvh - 54px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms var(--ease-out);
}

.external-modal.is-open .external-modal-panel {
  transform: translateY(0) scale(1);
}

.external-modal-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: #050706;
  color: var(--white);
  padding: 16px 18px;
}

.external-modal-bar span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.external-modal-bar strong {
  display: block;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.external-modal-close {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.external-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.04);
}

.external-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.external-modal-body {
  position: relative;
  min-height: 0;
  background: #f7f8f4;
}

.external-modal-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.external-modal-loader,
.external-modal-card {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 25, 40, 0.08), transparent 34%),
    var(--white);
  color: var(--ink);
  text-align: center;
}

.external-modal-loader strong,
.external-modal-card strong {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.05;
}

.external-modal-loader span,
.external-modal-card p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 650;
}

.external-modal.is-loaded .external-modal-loader {
  opacity: 0;
  pointer-events: none;
}

.external-modal-actions {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
}

.external-modal-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 900;
}

.barbers {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.barbers-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.barbers-copy {
  position: sticky;
  top: 110px;
}

.barbers-copy p:not(.section-label) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.barber-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.barber-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.barber-card:hover {
  box-shadow: 0 18px 42px rgba(16, 19, 18, 0.1);
  transform: translateY(-4px);
}

.barber-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 700ms var(--ease-out);
}

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

.barber-card-content {
  padding: 20px;
}

.barber-card p {
  color: var(--muted);
}

.barber-specialties {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.gallery {
  background:
    linear-gradient(180deg, #101312, #17130f);
  color: var(--white);
}

.gallery .section-label,
.gallery .text-link {
  color: #ffb25f;
}

.gallery .section-note {
  color: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #262626;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
}

.gallery-photo-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.gallery-photo-button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -5px;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img,
.gallery-photo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04) brightness(0.98);
  transition:
    transform 900ms var(--ease-out),
    filter 320ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.gallery-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.58);
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-caption small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.25;
}

.gallery-status {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.google-maps-attribution {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Sans-Serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

.social-updates {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 32, 45, 0.08), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(47, 111, 99, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}

.social-updates-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(30px, 4.8vw, 64px);
}

.social-updates-copy {
  max-width: 560px;
}

.social-updates-copy h2 {
  max-width: 580px;
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
}

.social-updates-copy p:not(.section-label) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 16px;
}

.social-card {
  position: relative;
  display: grid;
  align-content: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 18, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(16, 19, 18, 0.1);
}

.social-card h3 {
  margin: 0 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 950;
  line-height: 1;
}

.social-card p:not(.section-label) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.social-card-header {
  padding: 22px 22px 14px;
}

.social-card-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red);
  box-shadow: 0 18px 42px rgba(16, 19, 18, 0.08);
}

.social-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.social-card-facebook {
  gap: 0;
  background: #f4f6f1;
}

.facebook-live-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid rgba(16, 19, 18, 0.08);
  border-bottom: 1px solid rgba(16, 19, 18, 0.08);
  background: #f0f2f5;
}

.facebook-live-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 560px;
  border: 0;
  background: var(--white);
}

.social-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 18px 22px 22px;
}

.social-card-actions .button-outline {
  border-color: rgba(216, 32, 45, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
}

.social-card-actions .button-outline:hover,
.social-card-actions .button-outline:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.social-card-body .social-card-actions {
  margin-top: 24px;
  padding: 0;
}

.social-card-instagram {
  gap: 18px;
  align-content: stretch;
  padding: 0;
  background: #101312;
  color: var(--white);
  transition:
    border-color 220ms ease,
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.social-card-instagram:hover,
.social-card-instagram:focus-within {
  border-color: rgba(216, 32, 45, 0.48);
  box-shadow: 0 34px 82px rgba(16, 19, 18, 0.16);
  transform: translateY(-2px);
}

.social-card-instagram .section-label {
  color: #ffb25f;
}

.social-card-instagram h3 {
  color: var(--white);
  overflow-wrap: anywhere;
}

.social-card-instagram p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.social-card-instagram .text-link {
  color: var(--white);
}

.social-card-instagram .button-dark {
  background: var(--white);
  color: var(--ink);
}

.social-card-instagram .button-dark:hover {
  background: var(--red);
  color: var(--white);
}

.social-card-stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-decoration: none;
}

.social-card-stretched-link:focus-visible {
  outline: 3px solid rgba(216, 32, 45, 0.44);
  outline-offset: -6px;
}

.social-card-instagram > :not(.social-card-stretched-link) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.social-card-instagram a:not(.social-card-stretched-link),
.social-card-instagram button {
  pointer-events: auto;
}

.social-card-body {
  display: grid;
  align-content: end;
  padding: 0 24px 24px;
}

.social-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-profile-badges a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 200ms var(--ease-out);
}

.social-profile-badges a:hover,
.social-profile-badges a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.social-profile-badges a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.48);
  outline-offset: 3px;
}

.social-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.social-photo-grid .instagram-feed-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #252827;
}

.social-photo-grid .instagram-feed-tile::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 46%);
  content: "";
  opacity: 0.66;
  transition: opacity 260ms ease;
}

.social-photo-grid .instagram-feed-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms var(--ease-out);
}

.social-photo-grid .instagram-feed-tile:hover img {
  transform: scale(1.06);
}

.social-photo-grid .instagram-feed-tile:hover::after {
  opacity: 0.36;
}

.reviews {
  background: var(--paper);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
}

.review-layout.is-review-link-only {
  grid-template-columns: minmax(0, 760px);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.google-review-panel {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  border: 1px solid rgba(183, 31, 42, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16, 19, 18, 0.05);
}

.google-review-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-review-panel strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 950;
}

.google-review-panel p:not(.google-review-kicker) {
  margin: 0;
  color: var(--muted);
}

.google-review-status {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px 12px;
  font-size: 0.9rem;
}

.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.google-profile-panel {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 18, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 244, 0.96)),
    var(--white);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(16, 19, 18, 0.06);
}

.google-profile-copy {
  display: grid;
  gap: 10px;
}

.google-profile-copy h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  font-weight: 950;
}

.google-profile-copy p:not(.google-review-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.google-profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.google-review-actions .button,
.google-profile-actions .button {
  min-height: 52px;
  border-radius: 8px;
  padding-inline: 20px;
}

.google-review-actions .button-outline,
.google-profile-actions .button-outline {
  border-color: rgba(216, 32, 45, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: var(--red);
}

.google-review-actions .button-outline:hover,
.google-review-actions .button-outline:focus-visible,
.google-profile-actions .button-outline:hover,
.google-profile-actions .button-outline:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.google-review-actions .button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.google-profile-map {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.google-profile-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.facebook-link,
.instagram-link,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.facebook-link svg,
.instagram-link svg,
.footer-social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.review-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(16, 19, 18, 0.04);
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.review-card:hover {
  box-shadow: 0 14px 34px rgba(16, 19, 18, 0.07);
  transform: translateX(3px);
}

.review-card:focus-visible {
  outline: 3px solid rgba(216, 32, 45, 0.34);
  outline-offset: 4px;
}

.review-card blockquote {
  margin: 0 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.28;
}

.review-stars {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.review-card cite {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

.review-card-action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-card-action::after {
  content: " ->";
}

.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 48px;
  align-items: start;
}

.visit-copy p:not(.section-label) {
  max-width: 640px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.map-card {
  overflow: hidden;
  width: min(100%, 640px);
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 19, 18, 0.06);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(16, 19, 18, 0.04);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.panel-heading h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 950;
}

.panel-heading a {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.hours-list {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  padding: 13px 0;
  color: var(--muted);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list strong {
  color: var(--ink);
}

.quick-answers {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}

.quick-answers-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.quick-answers-copy {
  position: sticky;
  top: 112px;
}

.quick-answers-copy p:not(.section-label) {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.quick-answer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-answer-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-height: 174px;
  border: 1px solid rgba(16, 19, 18, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(16, 19, 18, 0.05);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 220ms var(--ease-out);
}

.quick-answer-card:hover {
  border-color: rgba(216, 32, 45, 0.25);
  box-shadow: 0 22px 46px rgba(16, 19, 18, 0.08);
  transform: translateY(-3px);
}

.quick-answer-card:focus-visible {
  outline: 3px solid rgba(216, 32, 45, 0.34);
  outline-offset: 4px;
}

.quick-answer-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 950;
}

.quick-answer-card p {
  margin: 0;
  color: var(--muted);
}

.quick-answer-card > span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-answer-card > span::after {
  content: " ->";
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(216, 32, 45, 0.94), rgba(11, 15, 13, 0.94)),
    var(--red);
  color: var(--white);
  padding: 72px 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: var(--night);
  color: var(--white);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.footer-grid > div:first-child {
  display: grid;
  justify-items: center;
  max-width: 680px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
  flex: 0 0 100%;
  justify-self: center;
  display: grid;
  max-width: 620px;
  width: 100%;
  gap: 7px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  text-align: center;
}

.footer-credit p {
  margin: 0;
}

.footer-credit-kicker {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-credit-name {
  justify-self: center;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out);
}

.footer-credit-line {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-credit-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-credit-contact a {
  text-decoration-line: underline;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    transform 220ms var(--ease-out);
}

.footer-credit .footer-credit-name {
  color: var(--white);
  text-decoration-line: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.64);
}

.footer-credit-name:hover,
.footer-credit-name:focus-visible {
  color: #ffffff;
  text-decoration-line: none;
  transform: translateY(-1px);
}

.footer-credit a:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.footer-logo-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  width: 220px;
  height: 45px;
  --logo-tube-width: clamp(14px, 8.4%, 19px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 220ms ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-social-link {
  color: var(--white);
}

.mobile-action-dock {
  display: none;
}

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 1100;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.42);
  color: var(--red);
  box-shadow:
    0 18px 42px rgba(16, 19, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out),
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  -webkit-backdrop-filter: blur(24px) saturate(1.42);
  backdrop-filter: blur(24px) saturate(1.42);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.52);
  color: var(--red-dark);
  box-shadow:
    0 20px 48px rgba(16, 19, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(226, 23, 43, 0.28);
  outline-offset: 4px;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal-ready {
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms),
    box-shadow 260ms var(--ease-out),
    border-color 220ms ease;
}

.service-card.reveal-ready.is-visible {
  transform: translateY(0) scale(1);
}

.service-card.reveal-ready.is-visible:hover {
  transform: translateY(-4px) scale(1.01);
}

.service-card.reveal-ready .service-icon {
  opacity: 0.68;
  transform: translateY(7px);
  transition:
    opacity 520ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 520ms var(--ease-out) var(--reveal-delay, 0ms);
}

.service-card.reveal-ready.is-visible .service-icon {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    opacity: 0.72;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1.045);
  }
}

@keyframes heroTitle {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes logoTubeSpin {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 64px;
  }
}

@keyframes barberToolFloat {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) rotate(var(--tool-tilt, 0deg));
  }

  34% {
    opacity: 0.58;
    transform: translate3d(var(--tool-drift-x, 16px), var(--tool-drift-y, -18px), 0)
      rotate(calc(var(--tool-tilt, 0deg) + 7deg));
  }

  68% {
    opacity: 0.38;
    transform: translate3d(var(--tool-return-x, -9px), var(--tool-return-y, 13px), 0)
      rotate(calc(var(--tool-tilt, 0deg) - 5deg));
  }
}

@keyframes sprayMistPulse {
  0%,
  100% {
    opacity: 0.28;
    stroke-dasharray: 1 10;
  }

  50% {
    opacity: 0.82;
    stroke-dasharray: 5 6;
  }
}

@keyframes serviceToolWink {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  38% {
    transform: rotate(-7deg) scale(1.08);
  }

  64% {
    transform: rotate(5deg) scale(1.04);
  }
}

.admin-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 32, 45, 0.12), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(77, 117, 106, 0.12), transparent 28%),
    #f4f3ef;
  color: var(--ink);
}

.booking-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 16, 14, 0.98), rgba(33, 26, 22, 0.98)),
    var(--night);
  color: var(--white);
}

.booking-page {
  min-height: 100vh;
}

.booking-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px 0 64px;
}

.booking-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: auto;
  grid-template-rows: auto 1fr;
  gap: 34px;
}

.barber-motion-loop-booking .barber-motion-item {
  color: rgba(255, 255, 255, 0.32);
}

.barber-motion-loop-booking .barber-motion-scissors {
  top: 13%;
  right: 8%;
}

.barber-motion-loop-booking .barber-motion-comb {
  bottom: 15%;
  left: 5%;
  animation-delay: -8s;
}

.barber-motion-loop-booking .barber-motion-spray {
  right: 30%;
  bottom: 10%;
  animation-delay: -4s;
}

.booking-brand {
  color: var(--white);
}

.booksy-shell {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 620px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
}

.booksy-intro {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 26px 0;
}

.booksy-intro h1 {
  max-width: 390px;
  font-size: clamp(2.65rem, 4.1vw, 4.2rem);
  line-height: 0.95;
}

.booksy-intro p:not(.section-label) {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
}

.booksy-assurance {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.booksy-assurance li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
}

.booksy-assurance span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.booksy-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 242, 0.98)),
    #fbfbf8;
  color: var(--ink);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.booksy-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
}

.booksy-card h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  letter-spacing: 0;
  line-height: 0.96;
}

.booksy-card-header p:not(.section-label) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.booksy-card-header > span {
  border: 1px solid rgba(77, 117, 106, 0.24);
  border-radius: 999px;
  background: #eef6f3;
  color: var(--sage);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.booksy-action-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(16, 19, 18, 0.04), rgba(77, 117, 106, 0.1)),
    #ffffff;
  padding: 16px;
}

.booksy-launch {
  min-height: 62px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  font-size: 1.04rem;
  box-shadow: 0 16px 32px rgba(216, 32, 45, 0.22);
}

.booksy-launch.is-ready::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.booksy-support-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.booksy-support-row a {
  color: var(--red);
  font-weight: 950;
  white-space: nowrap;
}

.booksy-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booksy-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  padding: 9px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.booksy-widget {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.booksy-widget noscript {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.booksy-widget noscript a {
  color: var(--red);
}

.booksy-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.admin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 310px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 19, 18, 0.96), rgba(16, 19, 18, 0.92)),
    var(--ink);
  color: var(--white);
  padding: 24px;
}

.admin-brand {
  min-width: 0;
  align-items: center;
}

.admin-brand .brand-logo-wrap {
  width: 142px;
  height: 34px;
}

.admin-brand .brand-copy strong {
  color: var(--white);
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav a {
  border-radius: 13px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.admin-sidebar-note {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.admin-sidebar-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.admin-sidebar-note p {
  margin: 0;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
}

.login-card {
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.login-card h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.login-card p {
  color: var(--muted);
}

.login-hint {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.login-card code {
  border-radius: 5px;
  background: #f1eee7;
  padding: 2px 5px;
  color: var(--red);
}

.admin-main {
  padding: clamp(20px, 4vw, 44px);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-status {
  position: sticky;
  top: 14px;
  z-index: 5;
  min-height: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sage);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(16, 19, 18, 0.08);
  backdrop-filter: blur(18px);
}

.admin-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(18px, 2.5vw, 28px);
  margin-bottom: 18px;
  box-shadow: 0 20px 60px rgba(16, 19, 18, 0.06);
  backdrop-filter: blur(14px);
}

.admin-section-heading {
  margin-bottom: 20px;
}

.admin-section-heading.has-action {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-section-heading h2 {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.admin-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-help-grid,
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-help-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.admin-help-grid article,
.admin-metrics article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.admin-help-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.admin-help-grid strong,
.admin-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.admin-help-grid p,
.admin-metrics span {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-metrics article.is-dirty {
  border-color: rgba(216, 32, 45, 0.34);
  background: rgba(255, 245, 244, 0.88);
}

.span-2 {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.83rem;
  font-weight: 900;
}

.field-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-group > span,
.field-group label > span {
  color: var(--charcoal);
  font-size: 0.83rem;
  font-weight: 950;
}

.field-help {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--ink);
  padding: 11px 12px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.image-field {
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  padding: 12px;
}

.image-field-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.admin-image-preview {
  width: 128px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ece9e1;
  object-fit: cover;
}

.photo-tools {
  display: grid;
  gap: 8px;
  align-content: start;
}

.upload-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 32, 45, 0.22);
  border-radius: 14px;
  background: rgba(216, 32, 45, 0.08);
  color: var(--red);
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(183, 31, 42, 0.16);
  border-color: var(--red);
}

.admin-repeater {
  display: grid;
  gap: 12px;
}

.editor-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(249, 248, 244, 0.82);
  padding: 16px;
}

.editor-item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.editor-item-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.editor-item-header span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.move-button,
.duplicate-button,
.remove-button {
  min-height: 36px;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.move-button,
.duplicate-button {
  border: 1px solid rgba(16, 19, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.remove-button {
  border: 1px solid rgba(183, 31, 42, 0.24);
  background: #fff5f4;
  color: var(--red);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.editor-grid .wide {
  grid-column: span 2;
}

.editor-grid .full {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
  padding: 10px 12px;
}

.checkbox-row input {
  width: auto;
}

.hours-editor {
  display: grid;
  gap: 10px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 110px 1.4fr;
  gap: 10px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9f8f4;
  padding: 12px;
}

.hours-row .checkbox-row {
  min-height: 44px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top));
    right: 14px;
    left: 14px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.93);
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow);
    animation: mobileMenuIn 240ms var(--ease-out) both;
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open a {
    border-radius: 16px;
    padding: 15px 14px;
    font-size: 1.02rem;
  }

  .intro-grid,
  .hero-content,
  .barbers-grid,
  .booksy-shell,
  .social-updates-grid,
  .review-layout,
  .visit-grid,
  .quick-answers-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .barbers-copy {
    position: static;
  }

  .quick-answers-copy {
    position: static;
  }

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

  .trust-strip a:nth-child(2) {
    border-right: 0;
  }

  .trust-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .booksy-intro {
    position: static;
    order: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    padding: 18px;
  }

  .booksy-card {
    order: 2;
  }

  .booksy-intro h1 {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .booksy-intro p:not(.section-label) {
    max-width: 620px;
    margin-bottom: 0;
  }

  .booksy-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .booksy-assurance li {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
  }

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

  .social-updates-grid,
  .social-card-grid {
    gap: 28px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    display: none;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-login {
    min-height: auto;
  }

  .admin-form-grid,
  .admin-help-grid,
  .admin-metrics,
  .editor-grid,
  .hours-row {
    grid-template-columns: 1fr;
  }

  .editor-grid .wide,
  .editor-grid .full,
  .span-2 {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(var(--mobile-dock-height) + env(safe-area-inset-bottom));
  }

  .content-shell {
    width: min(100% - 28px, 1120px);
  }

  .section-pad {
    padding: 62px 0;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .site-header {
    min-height: var(--header-height);
    color: var(--white);
  }

  .site-header.is-scrolled {
    top: max(8px, env(safe-area-inset-top));
    left: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    border: 1px solid rgba(23, 23, 23, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(16, 19, 18, 0.18);
    backdrop-filter: blur(22px) saturate(1.15);
  }

  .brand-logo-wrap {
    width: 150px;
    height: 31px;
    border-radius: 5px;
  }

  .logo-tube {
    width: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled .mobile-nav-toggle {
    border-color: rgba(16, 19, 18, 0.12);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(16, 19, 18, 0.18);
  }

  .hero {
    min-height: 94svh;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.42) 0%, rgba(5, 8, 7, 0.2) 32%, rgba(5, 8, 7, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 8, 7, 0.74), rgba(5, 8, 7, 0.08));
  }

  .hero-background img {
    object-position: 60% center;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    display: flex;
    min-height: 94svh;
    flex-direction: column;
    justify-content: flex-end;
    padding: 88px 0 calc(var(--mobile-dock-height) + 20px);
  }

  .hero-message {
    max-width: none;
  }

  .hero-side-card {
    display: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.4vw, 3.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  .hero-location {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 0.98rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .hero-facts div {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    backdrop-filter: blur(12px);
  }

  .hero-facts div + div {
    padding-left: 12px;
  }

  .hero-facts div:last-child {
    grid-column: auto;
  }

  .hero-facts dd {
    font-size: 1.08rem;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .trust-strip-inner {
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(16, 19, 18, 0.12);
  }

  .trust-strip a {
    min-height: 82px;
    padding: 14px;
  }

  .trust-strip strong {
    font-size: 0.9rem;
  }

  .hero-actions {
    position: relative;
    display: grid;
    gap: 9px;
  }

  .hero-actions .button,
  .visit-actions .button,
  .final-actions .button {
    min-height: 54px;
    border-radius: 10px;
  }

  .section-heading-row,
  .admin-topbar,
  .admin-section-heading.has-action {
    align-items: start;
    flex-direction: column;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(23, 23, 23, 0.07);
  }

  .service-price {
    font-size: 1.8rem;
    text-align: left;
  }

  .service-book {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .booksy-modal {
    padding: 0;
  }

  .booksy-modal-panel {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .booksy-modal-close {
    top: max(10px, env(safe-area-inset-top));
    right: 10px;
  }

  .booksy-modal-loader {
    padding: 22px;
  }

  .external-modal {
    padding: 0;
  }

  .external-modal-panel {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .external-modal-bar {
    padding: max(12px, env(safe-area-inset-top)) 14px 12px;
  }

  .external-modal-actions {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .external-modal-actions a {
    width: 100%;
  }

  .photo-modal {
    padding: 0;
  }

  .photo-modal-panel {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .photo-modal-close {
    top: max(10px, env(safe-area-inset-top));
    right: 10px;
  }

  .photo-modal-image {
    background-position: center 38%;
    background-size: cover;
  }

  .intro-copy {
    border-left: 0;
    padding-left: 0;
  }

  .barber-cards,
  .gallery-grid,
  .social-updates-grid,
  .social-card-grid {
    grid-template-columns: 1fr;
  }

  .barber-card,
  .gallery-item,
  .social-card,
  .hours-panel,
  .google-review-panel,
  .google-profile-panel,
  .map-card,
  .review-card {
    border-radius: 10px;
  }

  .social-updates-copy p:not(.section-label),
  .social-card p:not(.section-label) {
    font-size: 0.98rem;
  }

  .social-card-facebook h3,
  .social-card-facebook p:not(.section-label) {
    max-width: calc(100% - 64px);
  }

  .social-card {
    align-content: start;
    min-height: 0;
    padding: 20px;
  }

  .social-card-facebook {
    min-height: 0;
    padding: 0;
  }

  .facebook-live-frame,
  .facebook-live-frame iframe {
    min-height: 520px;
    height: 520px;
  }

  .social-card-icon {
    position: static;
    margin-bottom: 18px;
  }

  .social-card-facebook::before,
  .social-card-facebook::after {
    display: none;
  }

  .social-card-actions {
    display: grid;
    gap: 10px;
  }

  .social-updates {
    padding-bottom: calc(var(--mobile-dock-height) + 44px);
  }

  .social-card-actions .text-link {
    min-height: 48px;
    justify-content: center;
    border: 1px solid rgba(16, 19, 18, 0.14);
    border-radius: 8px;
  }

  .social-card-instagram .social-card-actions .text-link {
    border-color: rgba(255, 255, 255, 0.28);
  }

  .social-photo-grid {
    display: flex;
    overflow-x: auto;
    gap: 3px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .social-photo-grid .instagram-feed-tile {
    flex: 0 0 38%;
    scroll-snap-align: start;
  }

  .map-card {
    aspect-ratio: 1 / 0.82;
  }

  .google-review-panel {
    gap: 10px;
    padding: 16px;
  }

  .google-review-actions {
    gap: 10px;
  }

  .google-review-actions .button {
    flex: 1 1 100%;
    justify-content: center;
  }

  .google-profile-actions {
    order: 2;
    gap: 10px;
  }

  .google-profile-copy p:not(.google-review-kicker) {
    order: 3;
  }

  .google-profile-panel {
    gap: 12px;
    padding: 16px;
  }

  .google-profile-actions .button {
    flex: 1 1 auto;
    justify-content: center;
  }

  .google-profile-map {
    aspect-ratio: 1 / 0.82;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .barber-card-content {
    padding: 18px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
    gap: 18px;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .final-actions,
  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .booking-body {
    padding-bottom: 0;
  }

  .booking-hero {
    padding: 18px 0 34px;
  }

  .booking-shell {
    gap: 14px;
  }

  .booksy-shell {
    gap: 14px;
  }

  .booksy-card {
    border-radius: 18px;
    gap: 12px;
    padding: 16px;
  }

  .booksy-card-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booksy-card-header > span {
    width: fit-content;
    white-space: normal;
  }

  .booksy-card h2 {
    margin-bottom: 5px;
    font-size: clamp(1.65rem, 7vw, 2.05rem);
  }

  .booksy-card-header p:not(.section-label) {
    font-size: 0.92rem;
  }

  .booksy-action-panel {
    gap: 9px;
    padding: 12px;
  }

  .booksy-launch {
    min-height: 54px;
  }

  .booksy-support-row {
    display: grid;
    gap: 6px;
    font-size: 0.78rem;
  }

  .booksy-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .booksy-proof span {
    border-radius: 10px;
    padding: 7px 6px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .booksy-help {
    display: none;
  }

  .booksy-intro {
    gap: 12px;
    padding: 14px;
  }

  .booksy-intro h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
  }

  .booksy-intro p:not(.section-label) {
    font-size: 0.94rem;
  }

  .booksy-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .booksy-assurance li {
    display: grid;
    min-height: 68px;
    justify-items: center;
    align-content: center;
    gap: 6px;
    padding: 8px 6px;
    font-size: 0.76rem;
    line-height: 1.2;
    text-align: center;
  }

  .booksy-assurance span {
    width: 24px;
    height: 24px;
  }

  .editor-item-header,
  .image-field-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .editor-actions {
    justify-content: stretch;
  }

  .editor-actions button {
    flex: 1 1 72px;
  }

  .admin-image-preview {
    width: 100%;
    height: 180px;
  }

  .booking-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .booking-quick-actions .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .intro-band,
  .barbers,
  .visit,
  .quick-answers {
    background: var(--paper);
  }

  .reviews {
    background: #f2f0ea;
  }

  .hours-list li {
    gap: 10px;
    font-size: 0.9rem;
  }

  .quick-answer-list {
    grid-template-columns: 1fr;
  }

  .quick-answer-card {
    min-height: 0;
    border-radius: 12px;
    padding: 18px;
  }

  .quick-answer-card h3 {
    font-size: 1.18rem;
  }

  .final-cta {
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    padding: 58px 0;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .mobile-action-dock {
    position: fixed;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
      rgba(255, 255, 255, 0.42);
    padding: 8px;
    box-shadow:
      0 18px 48px rgba(16, 19, 18, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(24px) saturate(1.42);
    backdrop-filter: blur(24px) saturate(1.42);
    animation: dockRise 620ms 420ms var(--ease-out) both;
  }

  .mobile-action-dock a {
    display: grid;
    min-width: 0;
    place-items: center;
    gap: 2px;
    border-radius: 17px;
    background: var(--red);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    transition:
      transform 180ms var(--ease-out),
      background 180ms ease,
      color 180ms ease;
  }

  .mobile-action-dock a:hover {
    background: var(--red-dark);
  }

  .mobile-action-dock svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .back-to-top {
    right: 18px;
    bottom: calc(var(--mobile-dock-height) + env(safe-area-inset-bottom) + 18px);
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow:
      0 16px 38px rgba(16, 19, 18, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .admin-main,
  .admin-sidebar {
    padding: 18px;
  }

  .admin-section,
  .login-card {
    padding: 18px;
  }
}

@media (max-width: 440px) {
  .booking-quick-actions {
    grid-template-columns: 1fr;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dockRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Homepage polish pass: premium, photo-led booking flow. */
:root {
  --ink: #101312;
  --charcoal: #252827;
  --muted: #626b66;
  --line: #e0e3df;
  --paper: #f7f8f4;
  --red: #d71928;
  --red-dark: #a9141f;
  --brass: #c9873f;
  --shadow: 0 22px 58px rgba(10, 14, 12, 0.16);
}

body {
  background: var(--paper);
}

.service-card,
.barber-card,
.social-card,
.google-review-panel,
.google-profile-panel,
.review-card,
.hours-panel,
.map-card,
.quick-answer-card,
.final-cta-inner,
.trust-strip a,
.mobile-action-dock a,
.site-footer,
.footer-credit {
  min-width: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 5rem;
  line-height: 0.96;
}

h2 {
  font-size: 3.45rem;
  line-height: 0.98;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 6, 0.36);
  box-shadow: 0 10px 34px rgba(5, 7, 6, 0.12);
  padding: 18px 44px;
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  backdrop-filter: blur(14px) saturate(1.16);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(16, 19, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(16, 19, 18, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.brand-logo-wrap {
  width: 206px;
  height: 43px;
  --logo-tube-width: clamp(13px, 8.4%, 18px);
  border-radius: 4px;
}

.brand-logo {
  object-fit: contain;
}

.brand-logo-wrap .logo-tube,
.footer-logo-wrap .logo-tube {
  display: block;
  width: var(--logo-tube-width);
  border-color: rgba(8, 24, 48, 0.28);
  border-radius: 4px;
  background: linear-gradient(90deg, #f7fbff, #dbe6f3);
  box-shadow:
    inset 5px 0 7px rgba(255, 255, 255, 0.78),
    inset -5px 0 9px rgba(8, 24, 48, 0.2),
    0 1px 4px rgba(0, 0, 0, 0.16);
}

.brand-logo-wrap .logo-tube::before,
.footer-logo-wrap .logo-tube::before {
  inset: -10px -4px;
  background:
    repeating-linear-gradient(
      -24deg,
      #d71928 0 6px,
      #fbfdff 6px 13px,
      #1f5aa9 13px 19px,
      #fbfdff 19px 26px
    );
  background-size: 100% 78px;
  animation: logoTubeSpin 11s linear infinite;
  transform: translateZ(0);
}

.brand-logo-wrap .logo-tube-right::before,
.footer-logo-wrap .logo-tube-right::before {
  animation-direction: reverse;
}

.brand-logo-wrap .logo-tube::after,
.footer-logo-wrap .logo-tube::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.08) 34%, rgba(0, 0, 0, 0.16) 76%, rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.14));
}

.brand-copy {
  gap: 2px;
}

.brand-copy strong {
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  font-size: 0.69rem;
}

.header-cta,
.button,
.service-book {
  border-radius: 6px;
}

.hero {
  min-height: 92vh;
  background: #050706;
}

.hero-background img {
  object-position: 58% center;
  filter: saturate(1.02) contrast(1.12) brightness(0.94);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.95) 0%, rgba(4, 6, 5, 0.68) 42%, rgba(4, 6, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.86) 0%, rgba(4, 6, 5, 0.02) 50%);
}

.hero-content {
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  padding: 130px 0 78px;
}

.hero-location {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-facts {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 16px 20px;
}

.hero-facts div + div {
  padding-left: 20px;
}

.hero-side-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(11, 12, 11, 0.66);
}

.hero-side-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-side-media img {
  width: 100%;
  height: 235px;
  aspect-ratio: auto;
  object-fit: cover;
}

.hero-side-media img:first-child {
  object-position: center 42%;
}

.hero-side-media img:last-child {
  object-position: center center;
}

.trust-strip-inner {
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(16, 19, 18, 0.16);
}

.intro-band {
  background: #ffffff;
}

.intro-grid {
  align-items: center;
}

.intro-copy {
  border-left-color: var(--red);
}

.intro-checks {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.intro-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
}

.intro-checks li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.services {
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
}

.service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 252px;
  grid-template-columns: 1fr;
  border-color: rgba(16, 19, 18, 0.1);
  background: #ffffff;
  padding: 24px;
}

.service-card-main {
  display: grid;
  gap: 8px;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  transform-origin: center;
}

.service-card:hover .service-icon {
  animation: serviceToolWink 680ms var(--ease-out);
}

.service-card h3 {
  margin-bottom: 2px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 950;
}

.service-card p {
  font-size: 0.92rem;
}

.service-price {
  justify-self: start;
  font-size: 2rem;
  text-align: left;
}

.service-book {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hero-copy .hero-service-link.service-book,
.hero-facts .hero-service-link.service-book {
  display: inline;
  width: auto;
  min-height: 0;
  align-self: auto;
  justify-self: auto;
  grid-column: auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

.hero-copy .hero-service-link.service-book {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.hero-copy .hero-service-link.service-book:hover,
.hero-copy .hero-service-link.service-book:focus-visible,
.hero-facts .hero-service-link.service-book:hover,
.hero-facts .hero-service-link.service-book:focus-visible {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration-color: var(--jr-red);
}

.barbers {
  background:
    linear-gradient(180deg, rgba(6, 8, 7, 0.96), rgba(16, 19, 18, 0.96)),
    #101312;
  color: var(--white);
}

.barbers .section-label {
  color: #f15b63;
}

.barbers-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.barbers .button-dark {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
}

.barbers .button-dark:hover {
  border-color: var(--red);
  background: var(--red);
}

.barbers-visual {
  display: grid;
  gap: 16px;
}

.barber-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.barber-card p {
  color: rgba(255, 255, 255, 0.72);
}

.barber-specialties {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.craft-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 12px;
}

.craft-strip img {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.craft-strip img:nth-child(1) {
  object-position: center 31%;
}

.craft-strip img:nth-child(2),
.craft-strip img:nth-child(3) {
  object-position: center 35%;
}

.gallery {
  background:
    linear-gradient(180deg, #101312 0%, #0a0c0b 100%);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 16vw, 220px);
  gap: 12px;
}

.gallery-item {
  border-radius: 8px;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(10) {
  grid-column: span 2;
}

.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.gallery-item-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 44%);
  opacity: 0.78;
  transition: opacity 320ms ease;
}

.gallery-item-atmosphere:hover::after {
  opacity: 0.42;
}

.gallery-caption {
  border-radius: 6px;
}

.gallery-caption-attribution {
  grid-template-columns: 1fr;
}

.reviews {
  background: #f7f8f4;
}

.google-review-panel,
.google-profile-panel,
.review-card,
.hours-panel,
.map-card {
  border-radius: 8px;
}

.google-review-panel,
.google-profile-panel {
  box-shadow: 0 18px 48px rgba(16, 19, 18, 0.07);
}

.visit {
  background: #ffffff;
}

.hours-panel {
  background:
    linear-gradient(180deg, rgba(16, 19, 18, 0.96), rgba(16, 19, 18, 0.91)),
    var(--ink);
  color: var(--white);
}

.panel-heading {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.panel-heading h3,
.hours-list strong {
  color: var(--white);
}

.hours-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(153, 16, 26, 0.92)),
    var(--night);
}

.final-cta-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 520px);
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 100%);
}

.final-cta-inner {
  min-height: 136px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-message,
  .hero-facts {
    width: min(100%, 720px);
    max-width: 720px;
  }

  h1 {
    font-size: 3.75rem;
  }

  .barber-motion-item {
    width: 56px;
    height: 56px;
    opacity: 0.26;
  }

  .site-header {
    padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  }

  .brand-logo-wrap {
    width: 186px;
    height: 39px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(6),
  .gallery-item:nth-child(10) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(8) {
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3.35rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    left: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
      rgba(255, 255, 255, 0.42);
    color: var(--ink);
    box-shadow:
      0 18px 46px rgba(16, 19, 18, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
    padding: 10px 12px;
    -webkit-backdrop-filter: blur(24px) saturate(1.42);
    backdrop-filter: blur(24px) saturate(1.42);
  }

  .site-header.is-scrolled {
    top: max(10px, env(safe-area-inset-top));
    left: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
    border-color: rgba(16, 19, 18, 0.14);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
      rgba(255, 255, 255, 0.64);
    box-shadow:
      0 18px 46px rgba(16, 19, 18, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    -webkit-backdrop-filter: blur(26px) saturate(1.48);
    backdrop-filter: blur(26px) saturate(1.48);
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-content {
    min-height: 94svh;
    padding: 94px 0 calc(var(--mobile-dock-height) + 26px);
  }

  .brand-copy {
    display: none;
  }

  .brand-logo-wrap {
    width: min(59vw, 178px);
    height: clamp(31px, 12.2vw, 37px);
    border-color: rgba(16, 19, 18, 0.12);
    box-shadow:
      0 8px 18px rgba(16, 19, 18, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .mobile-nav-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(16, 19, 18, 0.1);
    border-radius: 16px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(16, 19, 18, 0.18);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .mobile-nav-toggle {
    border-color: rgba(16, 19, 18, 0.12);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(16, 19, 18, 0.2);
  }

  .hero-copy {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }

  .barber-motion-loop-hero .barber-motion-comb,
  .barber-motion-loop-booking .barber-motion-comb {
    display: none;
  }

  .barber-motion-loop-hero .barber-motion-scissors {
    top: auto;
    right: 7%;
    bottom: calc(var(--mobile-dock-height) + 86px);
  }

  .barber-motion-loop-hero .barber-motion-spray {
    top: 16%;
    right: 5%;
    bottom: auto;
    opacity: 0.2;
  }

  .barber-motion-loop-booking .barber-motion-scissors {
    top: 8%;
    right: 5%;
  }

  .barber-motion-loop-booking .barber-motion-spray {
    right: 6%;
    bottom: 12%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(132px, 38vw, 176px);
    gap: 10px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .hero-facts {
    border: 0;
    background: transparent;
    backdrop-filter: none;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 0.68rem;
  }

  .hero-facts dd {
    font-size: 0.98rem;
  }

  .trust-strip-inner {
    border-radius: 8px;
  }

  .intro-checks {
    margin-bottom: 18px;
  }

  .service-card {
    min-height: 0;
  }

  .barbers {
    background: #101312;
  }

  .craft-strip {
    grid-template-columns: 1fr;
  }

  .craft-strip img {
    height: 220px;
  }

  .final-cta-photo {
    width: 100%;
    opacity: 0.22;
    mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }

  .barber-motion-loop {
    display: none;
  }
}

/* OpenDesign audit polish: calmer social handoff and leaner mobile hero. */
.social-card-facebook {
  min-height: 0;
}

.social-card-facebook .social-card-header {
  display: grid;
  min-height: 300px;
  align-content: end;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(216, 32, 45, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 241, 0.96));
}

.social-card-facebook .social-card-header p:not(.section-label) {
  margin-top: 6px;
}

.facebook-live-frame {
  display: none;
}

.social-card-facebook .social-card-actions {
  padding: 22px clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px);
}

@media (max-width: 700px) {
  .hero,
  .hero-content {
    min-height: min(760px, 92svh);
  }

  .hero-content {
    padding-top: 86px;
  }

  .barber-motion-loop-hero {
    opacity: 0.38;
  }

  .barber-motion-loop-hero .barber-motion-spray,
  .barber-motion-loop-hero .barber-motion-comb {
    display: none;
  }

  .barber-motion-loop-hero .barber-motion-scissors {
    right: 2%;
    bottom: calc(var(--mobile-dock-height) + 118px);
    opacity: 0.18;
  }

  .social-card-facebook .social-card-header {
    min-height: 0;
    padding: 24px;
  }
}
