:root {
  color-scheme: light;
  --ink: #14110d;
  --coal: #11100e;
  --coal-2: #1c1712;
  --cream: #fff6e7;
  --paper: #f1e3cc;
  --paper-2: #e7d2b4;
  --gold: #d9aa4e;
  --gold-2: #f4cc75;
  --red: #9b2028;
  --blue: #285b9a;
  --green: #233f35;
  --muted: #6d604f;
  --line: rgba(20, 17, 13, 0.16);
  --light-line: rgba(255, 246, 231, 0.18);
  --shadow: 0 26px 70px rgba(20, 17, 13, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 17, 13, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(16px, 4vw, 44px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.34));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

.brand-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo circle:first-child {
  fill: var(--coal);
  stroke: var(--gold);
  stroke-width: 5;
}

.scissor-blade {
  fill: rgba(217, 170, 78, 0.18);
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linejoin: round;
}

.scissor-handle {
  fill: none;
  stroke: var(--cream);
  stroke-width: 5;
  stroke-linecap: round;
}

.logo-v {
  fill: none;
  stroke: var(--cream);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-pin {
  fill: var(--red);
  stroke: var(--gold);
  stroke-width: 2;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.brand small {
  display: block;
  color: rgba(255, 246, 231, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 246, 231, 0.74);
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

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

.header-actions,
.hero-actions,
.stacked-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--coal);
  box-shadow: 0 12px 28px rgba(217, 170, 78, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-2);
}

.btn-ghost {
  border-color: rgba(255, 246, 231, 0.36);
  color: var(--cream);
}

.btn-ghost.dark {
  border-color: rgba(20, 17, 13, 0.26);
  color: var(--ink);
}

.btn-light {
  border-color: rgba(255, 246, 231, 0.44);
  color: var(--cream);
  background: rgba(255, 246, 231, 0.08);
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 246, 231, 0.26);
  border-radius: 999px;
  background: rgba(255, 246, 231, 0.08);
  color: var(--cream);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 104px clamp(18px, 5vw, 64px) clamp(72px, 9vh, 104px);
  overflow: hidden;
  background: var(--coal);
  color: var(--cream);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 22px;
  background:
    repeating-linear-gradient(135deg, var(--red) 0 18px, var(--cream) 18px 36px, var(--blue) 36px 54px, var(--cream) 54px 72px);
  content: "";
  animation: barberStripe 18s linear infinite;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 42%, rgba(255, 246, 231, 0.12), transparent 23%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.92) 0%, rgba(17, 16, 14, 0.7) 34%, rgba(17, 16, 14, 0.23) 72%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.92), transparent 42%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroPhoto 22s ease-in-out infinite alternate;
  transform: scale(1.04);
}

.hero-animation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.light-sweep {
  position: absolute;
  inset: -20%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 235, 181, 0.2) 44%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.88;
  transform: translateX(-64%);
  animation: lightSweep 8.5s ease-in-out infinite;
}

.mirror-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 228, 165, 0.38), rgba(255, 228, 165, 0) 67%);
  filter: blur(5px);
  animation: glowPulse 4s ease-in-out infinite;
}

.glow-one {
  left: 17%;
  top: 18%;
}

.glow-two {
  left: 43%;
  top: 13%;
  animation-delay: 0.8s;
}

.glow-three {
  right: 16%;
  top: 18%;
  animation-delay: 1.5s;
}

.barber-pole {
  position: absolute;
  width: 32px;
  height: 132px;
  border: 3px solid var(--cream);
  border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, var(--cream) 0 13px, var(--red) 13px 26px, var(--cream) 26px 39px, var(--blue) 39px 52px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  animation: poleSpin 1.8s linear infinite;
}

.mini-pole {
  right: clamp(20px, 4vw, 56px);
  top: 120px;
  opacity: 0.88;
}

.shop-badge {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(56px, 8vw, 92px);
  display: grid;
  gap: 5px;
  max-width: min(330px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 246, 231, 0.22);
  border-left: 5px solid var(--gold);
  background: rgba(17, 16, 14, 0.72);
  color: var(--cream);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.shop-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.shop-badge span {
  color: rgba(255, 246, 231, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 980px;
  padding: 0;
}

.eyebrow,
.section-kicker,
.role {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.95;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 86px);
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.lede {
  max-width: 760px;
  color: rgba(255, 246, 231, 0.8);
  font-size: clamp(18px, 2vw, 24px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: clamp(28px, 5vw, 52px) 0 0;
  padding: 1px;
  background: rgba(255, 246, 231, 0.2);
}

.quick-info div {
  min-width: 0;
  padding: 18px;
  background: rgba(17, 16, 14, 0.66);
}

.quick-info dt {
  color: rgba(255, 246, 231, 0.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 25px);
}

.location-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--coal);
  color: var(--cream);
}

.location-band div {
  position: relative;
  display: flex;
  gap: 18px;
  min-height: 122px;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid var(--light-line);
}

.location-band div::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 170, 78, 0.56), transparent);
  content: "";
}

.location-band p {
  margin: 0;
  color: rgba(255, 246, 231, 0.82);
  font-weight: 800;
}

.icon {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 42px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 19px;
}

.shop-reference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
  transform: rotate(-1deg);
}

.shop-reference-grid figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 2px;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(20, 17, 13, 0.18);
}

.shop-reference-grid figure:nth-child(2) {
  transform: rotate(2deg) translateY(12px);
}

.shop-reference-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shop-reference-grid figcaption {
  padding: 10px 12px 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 42px);
  background:
    linear-gradient(rgba(17, 16, 14, 0.92), rgba(17, 16, 14, 0.92)),
    url("assets/savvas-sign-card-lg.jpg") center / cover;
  color: var(--cream);
}

.services .section-heading {
  max-width: var(--max);
  margin-inline: auto;
}

.services h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(255, 246, 231, 0.18);
  background: rgba(255, 246, 231, 0.18);
  box-shadow: var(--shadow);
}

.service-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  background: rgba(17, 16, 14, 0.84);
  color: var(--cream);
}

.service-grid article::before {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(217, 170, 78, 0.34);
  border-radius: 50%;
  content: "";
}

.loading-card {
  color: var(--muted);
  font-weight: 850;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.price {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.service-grid p,
.barber-card p,
.visit-card p,
.review-copy p {
  color: var(--muted);
}

.service-grid p {
  color: rgba(255, 246, 231, 0.68);
}

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

.barber-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.barber-card {
  position: relative;
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 13, 0.14);
  border-radius: 2px;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(20, 17, 13, 0.1);
}

.barber-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background: repeating-linear-gradient(180deg, var(--red) 0 18px, var(--cream) 18px 36px, var(--blue) 36px 54px, var(--cream) 54px 72px);
  content: "";
}

.barber-card.featured {
  background: var(--coal);
  color: var(--cream);
}

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

.availability {
  display: inline-flex;
  margin: 8px 0 12px;
  padding: 8px 11px;
  border: 1px solid rgba(217, 170, 78, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.barber-card:not(.featured) .availability {
  border-color: rgba(20, 17, 13, 0.18);
  color: var(--red);
}

.barber-card a {
  color: var(--gold);
  font-weight: 950;
  text-decoration: none;
}

.portrait {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 170, 78, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, var(--gold-2), var(--gold));
  box-shadow: inset 0 0 0 8px rgba(17, 16, 14, 0.1);
}

.portrait.initials {
  color: var(--coal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 900;
}

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

.barber-card .portrait.photo {
  border-radius: 12px;
  background: var(--coal);
}

.specials {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 42px);
  background: var(--green);
  color: var(--cream);
}

.specials .section-heading,
.specials-layout {
  max-width: var(--max);
  margin-inline: auto;
}

.specials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

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

.special-grid article,
.hospitality-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 231, 0.16);
  border-radius: 2px;
  background: rgba(255, 246, 231, 0.08);
  color: var(--cream);
}

.special-grid article:nth-child(2) {
  background: rgba(17, 16, 14, 0.36);
}

.special-grid article:nth-child(3) {
  background: rgba(155, 32, 40, 0.52);
}

.special-grid article::after,
.hospitality-card::after {
  position: absolute;
  right: -44px;
  bottom: -52px;
  color: rgba(255, 246, 231, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 138px;
  line-height: 1;
  content: "S";
}

.special-grid p,
.hospitality-card p,
.hospitality-card li {
  color: rgba(255, 246, 231, 0.76);
}

.hospitality-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hospitality-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 850;
}

.hospitality-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
}

.comfort-photo {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 231, 0.16);
  border-radius: 2px;
}

.comfort-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.review-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 64px);
  background: var(--coal);
  color: var(--cream);
}

.review-copy {
  max-width: 520px;
  justify-self: end;
}

.review-copy p {
  color: rgba(255, 246, 231, 0.72);
}

.quote-stack {
  display: grid;
  gap: 18px;
  max-width: 740px;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 246, 231, 0.16);
  border-left: 6px solid var(--gold);
  background: rgba(255, 246, 231, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

blockquote p {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.05;
}

cite {
  color: rgba(255, 246, 231, 0.58);
  font-style: normal;
  font-weight: 850;
}

.visit {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 42px);
}

.visit .section-heading,
.visit-grid {
  max-width: var(--max);
  margin-inline: auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(240px, 0.72fr) minmax(280px, 0.9fr) minmax(300px, 1.2fr);
  gap: 18px;
}

.visit-card,
.map-card,
.exterior-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(20, 17, 13, 0.1);
}

.visit-card {
  padding: 28px;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li.today {
  color: var(--red);
}

.hours-list strong {
  text-align: right;
}

.visit-card a {
  font-weight: 850;
  text-decoration-color: rgba(20, 17, 13, 0.25);
  text-underline-offset: 4px;
}

.map-card {
  min-height: 430px;
  overflow: hidden;
}

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

.exterior-card {
  margin: 0;
  overflow: hidden;
}

.exterior-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.exterior-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 38px clamp(18px, 4vw, 42px);
  background: var(--coal);
  color: var(--cream);
}

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

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

.footer-links a {
  color: rgba(255, 246, 231, 0.78);
  font-weight: 850;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 74px;
    background: rgba(17, 16, 14, 0.9);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    padding-top: 16px;
    border-top: 1px solid var(--light-line);
    font-size: 18px;
  }

  .hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(17, 16, 14, 0.93), rgba(17, 16, 14, 0.3) 50%, rgba(17, 16, 14, 0.68)),
      linear-gradient(90deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.12));
  }

  .shop-badge {
    right: 18px;
    bottom: 48px;
  }

  .hero,
  .split,
  .barber-layout,
  .review-section,
  .visit-grid,
  .specials-layout {
    grid-template-columns: 1fr;
  }

  .location-band,
  .service-grid,
  .special-grid {
    grid-template-columns: 1fr;
  }

  .location-band div {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .review-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 760px;
    padding: 104px 18px 86px;
  }

  .hero-actions,
  .header-actions,
  .stacked-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-info,
  .shop-reference-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    display: none;
  }

  .shop-reference-grid,
  .shop-reference-grid figure:nth-child(2) {
    transform: none;
  }

  .mini-pole,
  .mirror-glow {
    display: none;
  }

  .shop-badge {
    right: 18px;
    left: 18px;
    bottom: 42px;
  }

  .barber-card {
    grid-template-columns: 1fr;
  }

  .portrait {
    max-width: 152px;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hours-list strong {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes heroPhoto {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
}

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

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

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

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

@keyframes lightSweep {
  0%, 22% {
    transform: translateX(-64%);
  }

  58%, 100% {
    transform: translateX(42%);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.34;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.08);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
