:root {
  --ink: #0b0b0a;
  --ink-soft: #11110f;
  --panel: #191816;
  --panel-light: #22211f;
  --cream: #f0eadf;
  --cream-soft: #c8c1b7;
  --muted: #8c877f;
  --gold: #e1b46f;
  --gold-light: #f0c98e;
  --gold-deep: #aa7940;
  --line: rgb(240 234 223 / 14%);
  --line-gold: rgb(225 180 111 / 45%);
  --display: "Lora", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-y: clamp(5.5rem, 8vw, 8.5rem);
  --header-height: 5.25rem;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--cream);
  background: linear-gradient(180deg, rgb(7 7 6 / 92%), rgb(7 7 6 / 72%));
  border-bottom: 1px solid rgb(240 234 223 / 10%);
  backdrop-filter: blur(14px);
  transition:
    min-height 240ms ease,
    background-color 240ms ease;
}

.site-header.is-scrolled {
  min-height: 4.65rem;
  background: rgb(10 10 9 / 94%);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}

.wordmark strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.wordmark > span {
  margin-top: 0.35rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.5vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
  color: #d0c9be;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.42rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-light);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    transform 180ms ease;
}

.button > span:first-child {
  padding: 0;
}

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

.button-gold {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #f6d49f;
  border-color: #f6d49f;
}

.button-outline {
  color: var(--cream);
  background: rgb(11 11 10 / 24%);
  border-color: rgb(225 180 111 / 70%);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

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

.header-book {
  justify-self: end;
  min-width: 9rem;
  min-height: 2.8rem;
}

.header-book > span:first-child {
  padding: 0;
}

.menu-button {
  display: none;
  position: relative;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-gold);
}

.menu-button span {
  position: absolute;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--gold-light);
  transform: translateX(-50%);
  transition:
    transform 220ms ease,
    top 220ms ease;
}

.menu-button span:first-child {
  top: 1.28rem;
}

.menu-button span:last-child {
  top: 1.78rem;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 1.52rem;
  transform: translateX(-50%) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 1.52rem;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section {
  padding: var(--section-y) var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(46rem, 89svh, 59rem);
  padding: calc(var(--header-height) + 5rem) var(--gutter) 8rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(4 4 3 / 93%) 0%, rgb(4 4 3 / 76%) 38%, rgb(4 4 3 / 24%) 74%, rgb(4 4 3 / 46%) 100%),
    linear-gradient(180deg, rgb(4 4 3 / 25%) 45%, rgb(4 4 3 / 95%) 100%);
}

.hero-inner {
  width: min(52rem, 65vw);
}

.hero h1 {
  max-width: 14.5ch;
  margin: clamp(1.4rem, 3vw, 2.6rem) 0 1.7rem;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.2vw, 7.2rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.hero h1 > span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-lead {
  max-width: 38rem;
  margin: 0;
  color: #d2cbc0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.hero-actions .button {
  min-width: 13.6rem;
}

.hero-bottom {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.25rem;
  color: var(--cream-soft);
  border-top: 1px solid rgb(240 234 223 / 25%);
}

.hero-rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.15rem 0.9rem;
  align-items: baseline;
}

.hero-rating .stars {
  grid-column: 1 / -1;
}

.stars {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.hero-rating strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-rating > span:last-child,
.hero-detail {
  font-size: 0.72rem;
}

.hero-detail {
  display: flex;
  gap: 2.5rem;
}

.hero-detail span {
  position: relative;
}

.hero-detail span + span::before {
  position: absolute;
  top: 50%;
  left: -1.35rem;
  width: 2px;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
  background: #070706;
}

.story-photo {
  position: relative;
  max-width: 38rem;
}

.story-photo::before {
  position: absolute;
  z-index: 1;
  top: 1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  left: 1.25rem;
  content: "";
  border: 1px solid var(--line-gold);
}

.story-photo::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgb(4 4 3 / 65%));
  pointer-events: none;
}

.story-photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.08) sepia(0.08);
}

.story-photo > span {
  position: absolute;
  z-index: 3;
  right: 1.4rem;
  bottom: 1.3rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-copy h2,
.section-heading h2,
.prices-intro h2,
.work-heading h2,
.team-heading h2,
.reviews h2,
.visit h2 {
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.story-copy h2 {
  max-width: 10ch;
}

.story-text {
  display: grid;
  gap: 1.1rem;
  max-width: 42rem;
  margin-top: 2.2rem;
  padding-left: clamp(0rem, 4vw, 4rem);
}

.story-text p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 42rem;
  margin: 2.5rem 0 2rem;
  padding: 0.6rem;
  background:
    linear-gradient(110deg, rgb(225 180 111 / 8%), transparent 55%),
    #12110f;
  border: 1px solid var(--line-gold);
}

.story-facts div {
  display: grid;
  min-height: 6.5rem;
  align-content: center;
  padding: 1rem 1.2rem;
  background: rgb(240 234 223 / 2.5%);
  border-right: 1px solid var(--line);
}

.story-facts div:first-child {
  padding-left: 1.2rem;
}

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

.story-facts dt {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.45vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.story-facts dt span {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0;
}

.story-facts dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-eyebrow {
  width: max-content;
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  color: var(--gold-light);
  background: linear-gradient(90deg, rgb(225 180 111 / 11%), transparent);
  border: 1px solid var(--line-gold);
}

.story-eyebrow::before {
  display: none;
}

.story-eyebrow > span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.story-eyebrow b {
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.4rem;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    gap 180ms ease,
    color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 1.2rem;
  color: var(--cream);
}

.services {
  background: var(--ink-soft);
}

.section-heading.centered {
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered h2 {
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.section-heading.centered > p:last-child {
  max-width: 34rem;
  margin: 1.3rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 92rem;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  padding: clamp(2rem, 3.2vw, 3.5rem);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid transparent;
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    transform 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 1px solid rgb(225 180 111 / 14%);
  border-radius: 50%;
}

.service-card:hover {
  z-index: 1;
  background: #201e1b;
  border-color: var(--line-gold);
  transform: translateY(-0.35rem);
}

.service-card.featured {
  border-color: var(--line-gold);
}

.service-number {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  color: #6f675d;
  font-family: var(--mono);
  font-size: 0.55rem;
}

.service-icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  place-items: center;
  color: var(--gold-light);
  background: #2a251f;
  border: 1px solid rgb(225 180 111 / 16%);
}

.service-icon svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  max-width: 10ch;
  margin: 2.5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.service-card > p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.service-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding: 2rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.service-meta span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-meta strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.3rem;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(27rem, 0.9fr);
  min-height: 48rem;
  background: var(--gold-light);
}

.craft-image {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
}

.craft-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 65%, rgb(240 201 142 / 16%));
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.craft-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem);
  color: var(--ink);
}

.craft-copy .eyebrow {
  color: #65441f;
}

.craft-copy h2 {
  margin: 1.5rem 0 1.7rem;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6vw, 6.4rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.04em;
}

.craft-copy h2 em {
  font-weight: 500;
}

.craft-copy > p {
  max-width: 36rem;
  margin: 0;
  color: #473c2e;
  font-size: 0.93rem;
  line-height: 1.75;
}

.craft-copy ul {
  display: grid;
  gap: 0;
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(11 11 10 / 22%);
}

.craft-copy li {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgb(11 11 10 / 22%);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.craft-copy li span {
  color: #725126;
  font-family: var(--mono);
  font-size: 0.55rem;
}

.craft-copy .button {
  align-self: flex-start;
  min-width: 13rem;
}

.prices {
  background:
    radial-gradient(circle at 100% 15%, rgb(225 180 111 / 6%), transparent 26rem),
    var(--ink-soft);
}

.prices-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.55fr);
  gap: 5rem;
  align-items: end;
  max-width: 92rem;
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
}

.prices-intro > p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  line-height: 1.8;
}

.price-group {
  max-width: 92rem;
  margin: 0 auto clamp(3.5rem, 6vw, 5.25rem);
}

.price-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-gold);
}

.price-group-title h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
}

.price-group-title span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-cards article {
  min-width: 0;
  min-height: 14rem;
  padding: clamp(1.6rem, 2.6vw, 2.5rem);
  background: var(--panel);
  border: 1px solid transparent;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.price-cards article:hover {
  background: #201f1d;
  border-color: var(--line-gold);
}

.price-cards article > div {
  display: flex;
  gap: 1.25rem;
  align-items: start;
  justify-content: space-between;
}

.price-cards h4 {
  min-width: 0;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
}

.price-cards strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.price-cards p {
  display: -webkit-box;
  max-width: 27rem;
  margin: 1.1rem 0 2rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-cards article > span {
  color: #6f6960;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: clamp(3rem, 8vw, 8rem);
  max-width: 92rem;
  margin: 2rem auto 0;
  padding: clamp(2.5rem, 5vw, 5.5rem);
  overflow: hidden;
  background: #292826;
  border: 1px solid var(--line-gold);
}

.signature-copy {
  position: relative;
  z-index: 1;
}

.signature-label {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.45rem 0.65rem;
  color: var(--gold-light);
  background: rgb(225 180 111 / 7%);
  border: 1px solid var(--line-gold);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-copy h3 {
  max-width: 10ch;
  margin: 1.25rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.4vw, 5.8rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.04em;
}

.signature-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: #bdb6ad;
  line-height: 1.75;
}

.signature-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  max-width: 42rem;
  margin: 2.3rem 0 0;
  padding: 0;
  list-style: none;
}

.signature-copy li {
  position: relative;
  padding-left: 1.4rem;
  color: #d6cfc5;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signature-copy li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  display: grid;
  width: 0.85rem;
  height: 0.85rem;
  place-items: center;
  color: var(--gold-light);
  content: "✓";
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.45rem;
}

.signature-action {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2rem, 3vw, 3.2rem);
  text-align: center;
  background: #11110f;
  border: 1px solid rgb(240 234 223 / 10%);
}

.signature-action > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-action > strong {
  display: block;
  margin: 0.55rem 0 1.6rem;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.signature-action .button {
  width: 100%;
}

.signature-mark {
  position: absolute;
  right: -0.08em;
  bottom: -0.32em;
  color: rgb(240 234 223 / 3.5%);
  font-family: var(--display);
  font-size: clamp(14rem, 27vw, 27rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.work {
  background: #070706;
}

.work-heading,
.team-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 92rem;
  margin: 0 auto clamp(3.25rem, 5vw, 4.5rem);
}

.work-heading h2 {
  max-width: 10ch;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: minmax(24rem, 38vw) minmax(18rem, 26vw);
  gap: 1rem;
  max-width: 92rem;
  margin: 0 auto;
}

.work-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.work-grid .work-main {
  grid-row: 1 / 3;
}

.work-grid .work-wide {
  grid-column: 2 / 4;
}

.work-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgb(4 4 3 / 82%));
  pointer-events: none;
}

.work-grid img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.06);
  transition:
    filter 350ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-grid figure:hover img {
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.035);
}

.work-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.work-grid figcaption span {
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-grid figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 600;
}

.team {
  background: var(--ink-soft);
}

.team-heading > div {
  min-width: 0;
}

.team-heading > p {
  max-width: 33rem;
  margin: 0 0 0.5rem 3rem;
  color: var(--muted);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 92rem;
  margin: 0 auto;
}

.team-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem 1.35rem;
  align-content: start;
  align-items: start;
  min-height: 27rem;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(120deg, rgb(225 180 111 / 7%), transparent 50%),
    var(--panel);
  border: 1px solid transparent;
  transition: border-color 180ms ease;
}

.team-grid article:hover {
  border-color: var(--line-gold);
}

.team-index {
  align-self: start;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.team-grid article > div > p {
  margin: 0 0 0.75rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.85;
}

.team-rating {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.team-grid article > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
  background: var(--panel);
}

.review-score {
  padding-right: clamp(2rem, 5vw, 5rem);
  border-right: 1px solid var(--line);
}

.review-score > div {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  margin: 2.4rem 0 0.7rem;
}

.review-score strong {
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.review-score > div span,
.review-score > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.76rem;
}

.review-score > p:not(.eyebrow) {
  margin: 1.5rem 0 2rem;
}

.review-content h2 {
  max-width: 11ch;
  margin-top: 0;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.review-cards blockquote {
  position: relative;
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.7rem, 3vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgb(225 180 111 / 9%), transparent 14rem),
    linear-gradient(145deg, #262421, #1e1d1b);
  border: 1px solid rgb(225 180 111 / 28%);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.review-cards blockquote::after {
  position: absolute;
  right: -3.5rem;
  bottom: -5.5rem;
  width: 11rem;
  height: 11rem;
  content: "";
  border: 1px solid rgb(225 180 111 / 10%);
  border-radius: 50%;
}

.review-cards blockquote:hover {
  border-color: var(--gold);
  transform: translateY(-0.3rem);
}

.review-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3rem;
}

.google-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
}

.quote-mark {
  margin-left: auto;
  color: rgb(225 180 111 / 28%);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.6;
}

.review-cards blockquote p {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 2.1rem 0 2.5rem;
  color: #d3ccc2;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.75vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

.review-cards footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.review-cards footer strong {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
}

.review-cards footer span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 0.65fr) minmax(22rem, 0.7fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  background:
    linear-gradient(rgb(4 4 3 / 82%), rgb(4 4 3 / 90%)),
    url("/assets/mrbarber-online/salon-01.jpg") center / cover fixed;
}

.visit-copy h2 {
  max-width: 9ch;
}

.visit address {
  display: grid;
  gap: 0.35rem;
  margin-top: 2.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: normal;
}

.visit address strong {
  font-weight: 600;
}

.visit address span {
  color: var(--cream-soft);
}

.visit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.visit-links a {
  padding-bottom: 0.3rem;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
}

.visit-hours {
  align-self: center;
  padding: clamp(2rem, 3vw, 3.2rem);
  background: rgb(14 14 12 / 86%);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.visit-hours h3 {
  margin: 0 0 1.4rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-hours dl {
  margin: 0;
}

.visit-hours dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.visit-hours dl div:last-child {
  border: 0;
}

.visit-hours dt,
.visit-hours dd {
  color: var(--cream-soft);
  font-size: 0.7rem;
}

.visit-hours dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.visit-booking {
  align-self: center;
  padding: clamp(2.2rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--gold-light);
}

.visit-booking > span {
  color: #6c4b25;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-booking h3 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.5vw, 3.8rem);
  font-weight: 600;
  line-height: 0.95;
}

.visit-booking p {
  margin: 0 0 2rem;
  color: #554733;
  font-size: 0.8rem;
  line-height: 1.65;
}

.visit-booking .button-gold {
  width: 100%;
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.visit-booking .button-gold > span:last-child {
  border-left-color: rgb(240 234 223 / 18%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter) 2rem;
  background: #070706;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 21rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer > div:not(.footer-brand, .footer-bottom) {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer h2 {
  margin: 0 0 0.5rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer > div > a,
.site-footer > div > span {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  color: #5e5a54;
  font-family: var(--mono);
  font-size: 0.47rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom .footer-legal-link {
  color: #5e5a54;
  font-family: var(--mono);
  font-size: 0.47rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom .footer-legal-link:hover,
.footer-bottom .footer-legal-link:focus-visible {
  color: var(--gold-soft);
}

.mobile-book {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .header-book {
    grid-column: 2;
  }

  .mobile-menu {
    position: fixed;
    z-index: 180;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto auto;
    gap: 2rem;
    padding: calc(var(--header-height) + 3rem) var(--gutter) 2rem;
    color: var(--cream);
    background:
      radial-gradient(circle at 90% 10%, rgb(225 180 111 / 11%), transparent 20rem),
      #0b0b0a;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    align-content: center;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.55rem 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu nav a span {
    order: 2;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.52rem;
  }

  .mobile-menu-meta {
    display: flex;
    gap: 2rem;
    color: var(--muted);
    font-size: 0.7rem;
  }

  .mobile-menu > .button {
    width: min(24rem, 100%);
  }

  .story {
    grid-template-columns: minmax(0, 0.8fr) minmax(26rem, 1fr);
    gap: 5rem;
  }

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

  .team-grid article {
    grid-template-columns: auto 1fr;
  }

  .team-grid article > p {
    grid-column: 2;
  }

  .visit {
    grid-template-columns: 1fr 1fr;
  }

  .visit-booking {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 4.5rem;
    --section-y: 5.75rem;
  }

  .header-book {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    grid-column: 2;
  }

  .hero {
    min-height: 51rem;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .hero-inner {
    width: min(100%, 40rem);
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .hero-bottom {
    align-items: start;
  }

  .hero-detail {
    flex-direction: column;
    gap: 0.45rem;
    text-align: right;
  }

  .hero-detail span + span::before {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-photo {
    max-width: 34rem;
  }

  .story-copy {
    max-width: 46rem;
  }

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

  .service-card {
    min-height: 27rem;
  }

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

  .craft-image {
    min-height: 32rem;
  }

  .prices-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-cards article {
    min-height: 11.5rem;
  }

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

  .signature-action {
    width: min(25rem, 100%);
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 34rem 24rem 20rem;
  }

  .work-grid .work-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-grid .work-wide {
    grid-column: 1 / -1;
  }

  .team-heading {
    display: grid;
    gap: 1.5rem;
  }

  .team-heading > p {
    margin: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .review-score {
    padding: 0 0 3rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit {
    grid-template-columns: 1fr;
    background-attachment: scroll;
  }

  .visit-booking {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.15rem;
    --section-y: 5rem;
  }

  body {
    padding-bottom: 4.8rem;
  }

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

  .site-header.is-scrolled {
    min-height: var(--header-height);
  }

  .wordmark strong {
    font-size: 1.55rem;
  }

  .menu-button {
    width: 2.85rem;
    height: 2.85rem;
  }

  .menu-button span:first-child {
    top: 1.14rem;
  }

  .menu-button span:last-child {
    top: 1.64rem;
  }

  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:last-child {
    top: 1.38rem;
  }

  .mobile-menu {
    padding-bottom: 5.8rem;
  }

  .mobile-menu nav a {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .mobile-menu-meta {
    flex-direction: column;
    gap: 0.6rem;
  }

  .mobile-menu > .button {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 47rem;
    padding: calc(var(--header-height) + 4rem) var(--gutter) 10.5rem;
  }

  .hero-media img {
    object-position: 58% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(4 4 3 / 82%), rgb(4 4 3 / 35%)),
      linear-gradient(180deg, rgb(4 4 3 / 34%) 20%, rgb(4 4 3 / 96%) 78%);
  }

  .hero h1 {
    max-width: 9ch;
    margin-top: 1.3rem;
    font-size: clamp(3.85rem, 17vw, 5.4rem);
    line-height: 0.8;
  }

  .hero-lead {
    max-width: 30rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.7rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-outline {
    display: none;
  }

  .hero-bottom {
    right: var(--gutter);
    bottom: 1.5rem;
    left: var(--gutter);
  }

  .hero-rating {
    gap: 0.1rem 0.6rem;
  }

  .hero-rating strong {
    font-size: 1.6rem;
  }

  .hero-rating > span:last-child {
    max-width: 7rem;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .hero-detail {
    max-width: 8.8rem;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .eyebrow {
    font-size: 0.52rem;
  }

  .story {
    gap: 4.5rem;
  }

  .story-photo {
    margin-right: 1rem;
  }

  .story-photo::before {
    top: 0.75rem;
    right: -0.75rem;
    bottom: -0.75rem;
    left: 0.75rem;
  }

  .story-copy h2,
  .section-heading h2,
  .prices-intro h2,
  .work-heading h2,
  .team-heading h2,
  .reviews h2,
  .visit h2 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  .story-text {
    padding-left: 0;
  }

  .story-facts {
    grid-template-columns: 1fr 1fr;
  }

  .story-facts div {
    padding: 0 1rem;
  }

  .story-facts div:nth-child(2) {
    border-right: 0;
  }

  .story-facts div:last-child {
    display: none;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

  .section-heading.centered > p:last-child {
    margin-left: 0;
  }

  .service-card {
    min-height: 25rem;
    padding: 1.6rem;
  }

  .service-card h3 {
    margin-top: 2rem;
  }

  .craft-image {
    min-height: 24rem;
  }

  .craft-copy {
    padding: 4.5rem var(--gutter);
  }

  .craft-copy h2 {
    font-size: clamp(3.4rem, 16vw, 4.6rem);
  }

  .price-group-title {
    display: block;
  }

  .price-group-title span {
    display: block;
    margin-top: 0.35rem;
  }

  .price-cards article {
    min-height: 10.5rem;
    padding: 1.4rem;
  }

  .signature-card {
    padding: 1.4rem;
  }

  .signature-copy {
    padding-top: 1.2rem;
  }

  .signature-copy h3 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .signature-copy ul {
    grid-template-columns: 1fr;
  }

  .signature-action {
    padding: 1.5rem;
  }

  .signature-action > strong {
    font-size: 3.3rem;
  }

  .work-heading {
    display: grid;
    gap: 2rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 31rem 22rem 26rem 18rem;
  }

  .work-grid .work-main,
  .work-grid .work-wide {
    grid-column: auto;
  }

  .work-grid figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .work-grid figcaption {
    display: grid;
    gap: 0.3rem;
  }

  .team-grid article {
    grid-template-columns: auto 1fr;
    min-height: 18rem;
    padding: 1.6rem;
  }

  .team-grid article > p {
    grid-column: 1 / -1;
  }

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

  .review-cards blockquote {
    min-height: 15rem;
  }

  .visit {
    gap: 1rem;
  }

  .visit-copy {
    margin-bottom: 2rem;
  }

  .visit-hours,
  .visit-booking {
    padding: 1.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 0.7rem;
  }

  .mobile-book {
    position: fixed;
    z-index: 170;
    right: 0.75rem;
    bottom: 0.7rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 3.5rem;
    min-height: 3.8rem;
    color: var(--ink);
    background: var(--gold-light);
    border: 1px solid rgb(11 11 10 / 16%);
    box-shadow: 0 0.6rem 2rem rgb(0 0 0 / 38%);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
    transition:
      opacity 180ms ease,
      transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
  }

  .mobile-book.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-book span {
    display: grid;
    place-items: center start;
    padding-left: 1rem;
  }

  .mobile-book span:last-child {
    place-items: center;
    padding: 0;
    border-left: 1px solid rgb(11 11 10 / 20%);
    font-size: 1rem;
  }
}

/* Reference-led hero, services and reviews */
.hero {
  align-items: center;
  min-height: max(46rem, 100svh);
  padding: calc(var(--header-height) + 3.5rem) var(--gutter) 8.5rem;
}

.hero-media img {
  object-position: center 52%;
  filter: saturate(0.74) contrast(1.06) brightness(0.93);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(4 4 3 / 96%) 0%, rgb(4 4 3 / 78%) 34%, rgb(4 4 3 / 22%) 72%, rgb(4 4 3 / 44%) 100%),
    linear-gradient(180deg, rgb(4 4 3 / 10%) 50%, rgb(4 4 3 / 80%) 100%);
}

.hero-inner {
  width: min(52rem, 64vw);
}

.hero h1 {
  max-width: 8.2ch;
  margin: 1.4rem 0 1.35rem;
  font-size: clamp(4.35rem, 6.5vw, 6.65rem);
  font-weight: 600;
  line-height: 0.89;
  letter-spacing: -0.055em;
}

.hero h1 em {
  font-weight: 500;
}

.hero-lead {
  max-width: 31rem;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-actions .button {
  min-width: 12.8rem;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  width: min(47rem, 100%);
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(240 234 223 / 22%);
}

.hero-trust-row > div {
  display: grid;
  grid-template-columns: 2.45rem 1fr;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}

.hero-trust-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
}

.hero-trust-icon svg,
.hero-info-icon svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.hero-trust-row p {
  display: grid;
  gap: 0.25rem;
  margin: 0;
}

.hero-trust-row strong {
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.49rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust-row p span {
  color: #c7c0b5;
  font-size: 0.62rem;
  line-height: 1.4;
}

.hero-info-card {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(32rem, 39vw);
  padding: 0.75rem;
  background: rgb(13 13 12 / 91%);
  border: 1px solid var(--line-gold);
  box-shadow: 0 1.4rem 4rem rgb(0 0 0 / 34%);
  backdrop-filter: blur(10px);
}

.hero-info-card__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  align-items: start;
  min-width: 0;
  padding: 0.65rem 1rem;
}

.hero-info-card__item + .hero-info-card__item {
  border-left: 1px solid var(--line);
}

.hero-info-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--gold-light);
}

.hero-info-card__item > span:last-child {
  display: grid;
  gap: 0.22rem;
}

.hero-info-card strong {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-info-card small {
  color: #c8c1b7;
  font-size: 0.61rem;
  line-height: 1.5;
}

.services {
  position: relative;
  isolation: isolate;
  padding-top: 4.7rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(13 13 12 / 98%) 0%, rgb(13 13 12 / 88%) 45%, rgb(13 13 12 / 98%) 100%),
    linear-gradient(rgb(13 13 12 / 70%), rgb(13 13 12 / 92%)),
    url("/assets/mrbarber-online/salon-01.jpg") center / cover fixed;
}

.services::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, transparent, rgb(0 0 0 / 40%) 78%),
    linear-gradient(180deg, rgb(225 180 111 / 4%), transparent 30%);
  pointer-events: none;
}

.services .section-heading.centered {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.services .section-heading.centered h2 {
  margin: 0;
  font-size: clamp(3.8rem, 5.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.services .section-heading.centered .eyebrow {
  justify-content: center;
  margin-top: 0.8rem;
}

.services .section-heading.centered .eyebrow::after {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.services .section-heading.centered > p:last-child {
  max-width: 40rem;
  margin-top: 0.9rem;
  color: #aaa39a;
  font-size: 0.82rem;
}

.services .service-grid {
  gap: 0.75rem;
  max-width: 74rem;
}

.services .service-card {
  min-height: 25.5rem;
  padding: 1.7rem 1.7rem 0;
  background:
    radial-gradient(circle at 50% 20%, rgb(225 180 111 / 6%), transparent 9rem),
    rgb(28 27 25 / 94%);
  border-color: rgb(225 180 111 / 24%);
  box-shadow: 0 1.2rem 3rem rgb(0 0 0 / 18%);
}

.services .service-card::after {
  display: none;
}

.services .service-card.featured {
  background:
    radial-gradient(circle at 50% 20%, rgb(225 180 111 / 10%), transparent 10rem),
    rgb(31 29 26 / 97%);
  border-color: var(--gold);
}

.services .service-number {
  top: 1.25rem;
  right: auto;
  left: 1.35rem;
  color: var(--gold-light);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.38rem 0.55rem;
  color: var(--gold-light);
  background: rgb(225 180 111 / 7%);
  border: 1px solid rgb(225 180 111 / 25%);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.services .service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0.35rem auto 0;
  background: rgb(225 180 111 / 4%);
  border-color: var(--line-gold);
  border-radius: 50%;
}

.services .service-icon svg {
  width: 1.8rem;
}

.services .service-card h3 {
  max-width: none;
  margin: 2rem 0 0.8rem;
  font-size: clamp(1.7rem, 2.35vw, 2.4rem);
  font-weight: 500;
  text-align: center;
}

.services .service-card > p {
  max-width: 20rem;
  margin: 0 auto;
  color: #a8a198;
  font-size: 0.76rem;
  line-height: 1.7;
  text-align: center;
}

.services .service-meta {
  margin-top: auto;
  padding: 1.6rem 0 0.9rem;
}

.services .service-meta span::before {
  margin-right: 0.5rem;
  content: "◷";
  color: var(--gold-light);
  font-size: 0.8rem;
}

.services .service-meta strong {
  font-size: 2rem;
  font-weight: 500;
}

.services .service-card > a {
  margin: 0 -1.7rem;
  padding: 0.95rem 1.45rem;
  background: rgb(225 180 111 / 7%);
  border-top: 1px solid var(--line-gold);
}

.services .service-card.featured > a {
  background: linear-gradient(90deg, rgb(225 180 111 / 17%), rgb(225 180 111 / 7%));
}

.service-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 74rem;
  margin: 1.65rem auto 0;
  background: rgb(20 20 18 / 88%);
  border: 1px solid var(--line);
}

.service-trust > div {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  padding: 1rem 1.15rem;
}

.service-trust > div + div {
  border-left: 1px solid var(--line);
}

.service-trust-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.service-trust p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.service-trust strong {
  color: var(--cream);
  font-size: 0.62rem;
}

.service-trust small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.5rem;
  line-height: 1.4;
  text-overflow: ellipsis;
}

.reviews {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(14rem, 0.32fr) minmax(31rem, 1fr);
  gap: clamp(3rem, 5vw, 5rem);
  min-height: 40rem;
  padding-top: 4.25rem;
  padding-right: clamp(21rem, 32vw, 31rem);
  padding-bottom: 4.25rem;
  overflow: hidden;
  background: #181816;
}

.reviews::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  content: "";
  background: url("/assets/mrbarber-online/salon-01.jpg") center / cover;
  filter: saturate(0.55) sepia(0.15) brightness(0.58);
}

.reviews::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #181816 0%, #181816 59%, rgb(24 24 22 / 86%) 69%, transparent 100%),
    linear-gradient(180deg, rgb(24 24 22 / 8%), rgb(24 24 22 / 25%));
}

.reviews .review-score {
  align-self: stretch;
  padding-right: clamp(2rem, 3.5vw, 3.5rem);
}

.reviews .review-score > div {
  margin-top: 2.2rem;
}

.reviews .review-score strong {
  font-size: clamp(5.4rem, 7.5vw, 7.4rem);
  font-weight: 500;
}

.review-count {
  display: block;
  margin-top: 0.7rem;
  color: var(--cream-soft);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews .review-score > p:not(.eyebrow) {
  max-width: 14rem;
  margin: 2rem 0;
  color: #aaa39a;
  font-size: 0.68rem;
  line-height: 1.65;
}

.google-business {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 4rem;
  color: #a8a198;
  font-size: 0.56rem;
  line-height: 1.5;
}

.google-g {
  font-family: var(--body);
  font-size: 1.55rem;
  font-weight: 700;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 63%, #ea4335 0 82%, #4285f4 0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-content {
  align-self: center;
}

.reviews .review-content h2 {
  max-width: none;
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.review-intro {
  max-width: 30rem;
  margin: 1.4rem 0 0;
  color: #b6afa5;
  font-size: 0.8rem;
  line-height: 1.7;
}

.reviews .review-cards {
  gap: 0.8rem;
  margin-top: 2rem;
}

.reviews .review-cards blockquote {
  min-height: 16.75rem;
  padding: 1.65rem;
  background: linear-gradient(145deg, rgb(45 43 38 / 96%), rgb(33 32 29 / 96%));
  border-color: rgb(225 180 111 / 35%);
}

.review-avatar {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.reviews .review-cards blockquote p {
  margin: 1.45rem 0 1.7rem;
  font-size: clamp(1.15rem, 1.35vw, 1.42rem);
  line-height: 1.55;
}

.reviews .review-cards footer::before {
  width: 2rem;
  height: 1px;
  margin-bottom: 0.3rem;
  content: "";
  background: var(--gold);
}

@media (max-width: 1180px) {
  .hero-inner {
    width: min(47rem, 66vw);
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 5.7rem);
  }

  .hero-trust-row {
    width: min(42rem, 100%);
  }

  .hero-info-card {
    width: min(29rem, 42vw);
  }

  .reviews {
    grid-template-columns: minmax(13rem, 0.3fr) minmax(0, 1fr);
    padding-right: var(--gutter);
  }

  .reviews::before {
    width: 46%;
    opacity: 0.32;
  }

  .reviews::after {
    background: linear-gradient(90deg, #181816 0%, rgb(24 24 22 / 95%) 56%, rgb(24 24 22 / 76%) 100%);
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 50rem;
    padding-bottom: 9.5rem;
  }

  .hero-inner {
    width: min(100%, 40rem);
  }

  .hero-trust-row {
    display: none;
  }

  .hero-info-card {
    right: var(--gutter);
    bottom: 1.2rem;
    left: var(--gutter);
    width: auto;
  }

  .services .service-grid {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }

  .services .service-card {
    min-height: 25rem;
  }

  .service-trust {
    grid-template-columns: 1fr 1fr;
    max-width: 34rem;
  }

  .service-trust > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-trust > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .reviews {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-right: var(--gutter);
  }

  .reviews::before {
    width: 100%;
    opacity: 0.18;
  }

  .reviews::after {
    background: rgb(24 24 22 / 90%);
  }

  .reviews .review-score {
    padding: 0 0 2.8rem;
  }

  .google-business {
    margin-top: 2rem;
  }
}

@media (max-width: 620px) {
  .hero {
    align-items: center;
    min-height: 50rem;
    padding: calc(var(--header-height) + 2.6rem) var(--gutter) 8.5rem;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(4 4 3 / 88%), rgb(4 4 3 / 35%)),
      linear-gradient(180deg, rgb(4 4 3 / 20%) 25%, rgb(4 4 3 / 94%) 82%);
  }

  .hero h1 {
    max-width: 8ch;
    margin-top: 1.1rem;
    font-size: clamp(3.35rem, 15.5vw, 4.55rem);
    line-height: 0.88;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-info-card {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.45rem;
  }

  .hero-info-card__item {
    grid-template-columns: 1.8rem 1fr;
    gap: 0.4rem;
    padding: 0.55rem 0.45rem;
  }

  .hero-info-icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero-info-icon svg {
    width: 1rem;
  }

  .hero-info-card strong {
    font-size: 0.54rem;
  }

  .hero-info-card small {
    font-size: 0.48rem;
    line-height: 1.45;
  }

  .services {
    background-attachment: scroll;
  }

  .services .section-heading.centered {
    text-align: center;
  }

  .services .section-heading.centered .eyebrow {
    justify-content: center;
  }

  .services .section-heading.centered > p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .services .section-heading.centered h2 {
    font-size: clamp(3.35rem, 15vw, 4.3rem);
  }

  .services .service-card {
    min-height: 25rem;
    padding: 1.5rem 1.5rem 0;
  }

  .services .service-card > a {
    margin: 0 -1.5rem;
  }

  .service-trust > div {
    grid-template-columns: 2rem 1fr;
    gap: 0.55rem;
    padding: 0.85rem 0.7rem;
  }

  .service-trust-icon {
    width: 2rem;
    height: 2rem;
  }

  .service-trust strong {
    font-size: 0.54rem;
  }

  .service-trust small {
    font-size: 0.45rem;
  }

  .reviews {
    gap: 3rem;
  }

  .reviews .review-content h2 {
    font-size: clamp(3.1rem, 14.5vw, 4.2rem);
  }

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

  .reviews .review-cards blockquote {
    min-height: 16.5rem;
  }
}

/* Editorial rebuild: authentic photography, image-led services and brand values */
.hero-media img {
  object-position: center 48%;
  filter: saturate(0.65) contrast(1.08) brightness(0.72);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(4 4 3 / 97%) 0%, rgb(4 4 3 / 87%) 32%, rgb(4 4 3 / 36%) 68%, rgb(4 4 3 / 38%) 100%),
    linear-gradient(180deg, rgb(4 4 3 / 8%) 45%, rgb(4 4 3 / 88%) 100%);
}

.story {
  grid-template-columns: minmax(32rem, 1.08fr) minmax(30rem, 0.92fr);
  gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 39rem;
  padding: 0 5rem 4rem 0;
}

.story-main-photo,
.story-inset-photo {
  position: relative;
  margin: 0;
}

.story-main-photo {
  height: 100%;
  min-height: 35rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-main-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgb(4 4 3 / 70%));
  pointer-events: none;
}

.story-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.72) contrast(1.05) brightness(0.78);
}

.story-main-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-inset-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(13rem, 32%);
  padding: 0.45rem;
  background: #11100e;
  border: 1px solid var(--line-gold);
  box-shadow: 0 1.4rem 3rem rgb(0 0 0 / 42%);
}

.story-inset-photo img {
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.74) contrast(1.04) brightness(0.8);
}

.story-inset-photo figcaption {
  padding: 0.7rem 0.25rem 0.25rem;
  color: var(--cream-soft);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 5.1vw, 5.5rem);
}

.story-text {
  padding-left: 0;
}

.services {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(circle at 85% 15%, rgb(225 180 111 / 7%), transparent 25rem),
    #0d0d0c;
}

.services::after {
  background:
    linear-gradient(90deg, transparent 49.92%, rgb(240 234 223 / 4%) 50%, transparent 50.08%),
    linear-gradient(180deg, rgb(225 180 111 / 3%), transparent 26%);
}

.services .services-heading {
  display: grid;
  grid-template-columns: minmax(24rem, 0.9fr) minmax(22rem, 0.7fr);
  gap: 1.5rem clamp(3rem, 8vw, 9rem);
  align-items: end;
  max-width: 86rem;
  margin: 0 auto clamp(2.7rem, 4vw, 4rem);
  text-align: left;
}

.services .services-heading .eyebrow {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin: 0;
}

.services .services-heading .eyebrow::after {
  display: none;
}

.services .services-heading h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.services .services-heading > p:last-child {
  max-width: 32rem;
  margin: 0 0 0.45rem;
  color: #aaa39a;
  font-size: 0.86rem;
  line-height: 1.8;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 86rem;
}

.services .service-card {
  grid-column: span 5;
  display: block;
  min-height: 31rem;
  padding: 0;
  overflow: hidden;
  background: #171613;
  border: 1px solid rgb(225 180 111 / 24%);
  box-shadow: none;
}

.services .service-card--wide {
  grid-column: span 7;
}

.services .service-card::after {
  display: block;
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgb(5 5 4 / 32%) 50%, rgb(5 5 4 / 96%) 100%),
    linear-gradient(90deg, rgb(5 5 4 / 28%), transparent 60%);
  pointer-events: none;
}

.services .service-card:hover {
  border-color: var(--gold);
  transform: translateY(-0.25rem);
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.7) contrast(1.04) brightness(0.72);
  transform: scale(1.015);
  transition:
    filter 450ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:nth-child(2) .service-card-media img {
  object-position: 48% center;
}

.service-card:nth-child(3) .service-card-media img {
  object-position: center 35%;
}

.service-card:nth-child(4) .service-card-media img {
  object-position: center 32%;
}

.service-card:hover .service-card-media img {
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
  transform: scale(1.045);
}

.service-card-copy {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
}

.service-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services .service-card h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.25rem, 3.35vw, 3.75rem);
  font-weight: 500;
  line-height: 0.95;
  text-align: left;
}

.service-card-copy > p:not(.service-kicker) {
  max-width: 32rem;
  margin: 0.9rem 0 1.2rem;
  color: #c6bfb5;
  font-size: 0.78rem;
  line-height: 1.7;
}

.service-card-copy > a {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.35rem;
  color: var(--gold-light);
  border-bottom: 1px solid rgb(225 180 111 / 62%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.services .service-trust {
  max-width: 86rem;
  margin-top: 0.85rem;
  background: #151411;
  border-color: rgb(225 180 111 / 20%);
}

.services .service-trust-icon {
  font-size: 0.46rem;
}

.values {
  display: grid;
  grid-template-columns: minmax(23rem, 0.72fr) minmax(38rem, 1.28fr);
  padding: 0;
  background: #090908;
}

.values-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 46rem;
  padding: clamp(4rem, 7vw, 8rem) var(--gutter);
  color: var(--ink);
  background:
    linear-gradient(155deg, rgb(255 255 255 / 18%), transparent 42%),
    var(--gold-light);
}

.values-intro .eyebrow {
  color: #68451f;
}

.values-intro h2 {
  max-width: 10ch;
  margin: 1.7rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.45rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.values-intro > p:last-of-type {
  max-width: 31rem;
  margin: 0;
  color: #4b3d2d;
  font-size: 0.9rem;
  line-height: 1.8;
}

.values-intro .button {
  margin-top: 2.2rem;
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.values-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 46rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem);
  overflow: hidden;
}

.values-seal {
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -8rem;
  width: min(36rem, 58vw);
  opacity: 0.09;
  transform: rotate(8deg);
  filter: grayscale(1) sepia(1);
}

.values-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.values-heading > p:last-child {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.7;
}

.values-grid {
  border-bottom: 1px solid var(--line);
}

.values-grid article {
  display: grid;
  grid-template-columns: 3.4rem minmax(15rem, 0.68fr) minmax(16rem, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  align-items: center;
  min-height: 9.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.values-grid article > span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
}

.values-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  font-weight: 500;
}

.values-grid p {
  margin: 0;
  color: #aaa39a;
  font-size: 0.76rem;
  line-height: 1.75;
}

.craft-image img {
  object-position: center 58%;
}

.work-grid .work-main img {
  object-position: center 36%;
}

.work-grid figure:nth-child(2) img {
  object-position: center 40%;
}

.work-grid figure:nth-child(3) img {
  object-position: center 33%;
}

@media (max-width: 1180px) {
  .story {
    grid-template-columns: minmax(26rem, 0.9fr) minmax(27rem, 1fr);
    gap: 4rem;
  }

  .story-visual {
    min-height: 35rem;
    padding-right: 3.8rem;
  }

  .story-main-photo,
  .story-main-photo img {
    min-height: 31rem;
  }

  .values {
    grid-template-columns: minmax(22rem, 0.78fr) minmax(32rem, 1.22fr);
  }

  .values-grid article {
    grid-template-columns: 3.4rem 1fr;
  }

  .values-grid p {
    grid-column: 2;
    margin-top: -0.75rem;
  }
}

@media (max-width: 880px) {
  .story {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(100%, 42rem);
  }

  .services .services-heading {
    grid-template-columns: 1fr;
  }

  .services .services-heading .eyebrow {
    grid-column: auto;
  }

  .services .services-heading > p:last-child {
    max-width: 38rem;
  }

  .services .service-card,
  .services .service-card--wide {
    grid-column: span 6;
    min-height: 29rem;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .values-intro,
  .values-panel {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .hero-media img {
    object-position: 56% center;
  }

  .story {
    gap: 3.5rem;
  }

  .story-visual {
    min-height: 30rem;
    padding: 0 2.8rem 3rem 0;
  }

  .story-main-photo,
  .story-main-photo img {
    min-height: 27rem;
  }

  .story-inset-photo {
    width: 34%;
  }

  .story-copy h2 {
    font-size: clamp(3.15rem, 14vw, 4.1rem);
  }

  .services .services-heading h2 {
    font-size: clamp(3.2rem, 14.5vw, 4.25rem);
  }

  .services .service-card,
  .services .service-card--wide {
    grid-column: 1 / -1;
    min-height: 30rem;
  }

  .service-card-copy {
    right: 1.25rem;
    bottom: 1.35rem;
    left: 1.25rem;
  }

  .services .service-card h3 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
  }

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

  .services .service-trust > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .values-intro,
  .values-panel {
    padding: 5rem var(--gutter);
  }

  .values-intro h2 {
    font-size: clamp(3.2rem, 14.5vw, 4.15rem);
  }

  .values-heading {
    display: grid;
    gap: 1rem;
  }

  .values-grid article {
    grid-template-columns: 3rem 1fr;
    gap: 0.8rem 1rem;
    padding: 1.4rem 0;
  }

  .values-grid article > span {
    width: 2.8rem;
    height: 2.8rem;
  }

  .values-grid p {
    grid-column: 1 / -1;
    margin-top: 0.3rem;
  }

  .values-seal {
    right: -7rem;
    width: 26rem;
  }
}

/* First-glance hero, official brand lockup, film and moving review lane */
.wordmark {
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
}

.wordmark-logo {
  width: 3.15rem;
  height: 3.15rem;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
}

.wordmark > .wordmark-copy {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.wordmark-copy strong {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  white-space: nowrap;
}

.wordmark-copy small {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.link-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.link-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.footer-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.hero {
  min-height: max(43rem, 100svh);
  padding: calc(var(--header-height) + 2.6rem) var(--gutter) 9.6rem;
}

.hero-inner {
  width: min(47rem, 59vw);
}

.hero h1 {
  max-width: 8.8ch;
  margin-top: 1.15rem;
  font-size: clamp(4rem, 6.15vw, 6.35rem);
  line-height: 0.94;
}

.hero h1 em {
  margin-top: 0.04em;
}

.hero-glance {
  position: absolute;
  right: var(--gutter);
  bottom: 1rem;
  left: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.18fr) minmax(0, 1fr);
  background: rgb(10 10 9 / 88%);
  border: 1px solid rgb(225 180 111 / 30%);
  box-shadow: 0 1.3rem 3.5rem rgb(0 0 0 / 32%);
  backdrop-filter: blur(14px);
}

.hero-coin {
  position: absolute;
  z-index: 1;
  top: 22%;
  right: 15.5%;
  width: clamp(11rem, 16vw, 18rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.92;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 1.2rem 2.6rem rgb(0 0 0 / 40%));
}

.hero-coin picture,
.hero-coin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-glance-card {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  min-height: 5.5rem;
  padding: 0.8rem 0.9rem;
}

.hero-glance-card + .hero-glance-card {
  border-left: 1px solid var(--line);
}

.hero-glance-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
}

.hero-glance-icon svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-glance-card > span:last-child {
  display: grid;
  gap: 0.25rem;
}

.hero-glance-card strong {
  color: var(--cream);
  font-size: 0.62rem;
  line-height: 1.35;
}

.hero-glance-card small {
  overflow: hidden;
  color: #9f998f;
  font-size: 0.5rem;
  line-height: 1.45;
  text-overflow: ellipsis;
}

.hero-glance-card--link {
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.hero-glance-card--link:hover,
.hero-glance-card--link:focus-visible {
  background: rgb(225 180 111 / 9%);
}

.barber-film {
  position: relative;
  isolation: isolate;
  min-height: clamp(36rem, 55vw, 52rem);
  overflow: hidden;
  color: var(--cream);
  background: #030303;
}

.barber-film::before,
.services::before,
.values::after,
.craft-feature::before,
.prices::before,
.work::before,
.team::before,
.visit::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(2.5rem, 6vw, 6rem);
  content: "";
  background: linear-gradient(180deg, rgb(0 0 0 / 42%), transparent);
  pointer-events: none;
}

.barber-film__media,
.barber-film__shade {
  position: absolute;
  inset: 0;
}

.barber-film__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barber-film__shade {
  background:
    linear-gradient(90deg, rgb(3 3 3 / 94%) 0%, rgb(3 3 3 / 25%) 31%, transparent 45%, transparent 58%, rgb(3 3 3 / 68%) 76%, rgb(3 3 3 / 95%) 100%),
    linear-gradient(180deg, rgb(3 3 3 / 16%), transparent 45%, rgb(3 3 3 / 64%));
  pointer-events: none;
}

.barber-film__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--gutter);
  width: min(25rem, 31vw);
  transform: translateY(-50%);
}

.barber-film__copy h2 {
  margin: 1.4rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.barber-film__copy h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.barber-film__copy > p:last-child {
  max-width: 22rem;
  margin: 0;
  color: #bcb5ab;
  font-size: 0.82rem;
  line-height: 1.75;
}

.barber-film__seal {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(2rem, 7vw, 7rem);
  width: clamp(9rem, 15vw, 15rem);
  opacity: 0.82;
  transform: translateY(-50%);
  filter: saturate(0.8) contrast(1.04);
}

.reveal-item {
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.review-content {
  min-width: 0;
  overflow: hidden;
}

.review-marquee {
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  animation: review-lane 46s linear infinite;
}

.review-set {
  display: flex;
  gap: 0.8rem;
  padding-right: 0.8rem;
}

.review-set blockquote,
.review-topic {
  width: clamp(18rem, 28vw, 23.5rem);
  min-height: 16.5rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 1.65rem;
  background: linear-gradient(145deg, rgb(45 43 38 / 96%), rgb(33 32 29 / 96%));
  border: 1px solid rgb(225 180 111 / 35%);
}

.review-set blockquote {
  display: flex;
  flex-direction: column;
}

.review-set blockquote > p {
  margin: 1.45rem 0 1.7rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.35vw, 1.42rem);
  font-style: italic;
  line-height: 1.55;
}

.review-set blockquote footer,
.review-topic footer {
  display: grid;
  gap: 0.2rem;
  margin-top: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-set blockquote footer::before,
.review-topic footer::before {
  width: 2rem;
  height: 1px;
  margin-bottom: 0.3rem;
  content: "";
  background: var(--gold);
}

.review-topic {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-topic__count {
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-topic h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.review-topic > p {
  margin: 0;
  color: #b8b1a7;
  font-size: 0.72rem;
  line-height: 1.75;
}

.review-marquee:hover .review-track,
.review-marquee:focus-within .review-track {
  animation-play-state: paused;
}

@keyframes review-lane {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(15rem, 1fr) auto auto;
  }

  .hero {
    padding-bottom: 14.2rem;
  }

  .hero-glance {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-glance-card:nth-child(4) {
    grid-column: span 2;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-glance-card:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  .hero {
    display: block;
    min-height: auto;
    padding: calc(var(--header-height) + 3rem) var(--gutter) 1rem;
  }

  .hero-inner {
    width: min(100%, 40rem);
  }

  .hero-glance {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }

  .hero-glance-card {
    grid-template-columns: 2.25rem 1fr;
    min-height: 5rem;
    padding: 0.7rem;
  }

  .hero-glance-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .barber-film {
    display: grid;
    min-height: auto;
    padding-top: 4.5rem;
  }

  .barber-film__copy {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    grid-row: 1;
    width: auto;
    padding: 0 var(--gutter) 3rem;
    transform: none;
  }

  .barber-film__media {
    position: relative;
    grid-row: 2;
    min-height: 30rem;
  }

  .barber-film__shade {
    background: linear-gradient(180deg, rgb(3 3 3 / 22%), transparent 50%, rgb(3 3 3 / 45%));
  }

  .barber-film__seal {
    top: auto;
    right: var(--gutter);
    bottom: 3rem;
    width: 8rem;
    opacity: 0.7;
    transform: none;
  }

  .review-set blockquote,
  .review-topic {
    width: min(78vw, 22rem);
  }
}

@media (max-width: 620px) {
  .wordmark {
    gap: 0.55rem;
  }

  .wordmark-logo {
    width: 2.55rem;
    height: 2.55rem;
  }

  .wordmark-copy strong {
    font-size: 1.22rem;
  }

  .wordmark-copy small {
    font-size: 0.37rem;
  }

  .hero {
    align-items: initial;
    min-height: auto;
    padding: calc(var(--header-height) + 2.1rem) var(--gutter) 0.8rem;
  }

  .hero h1 {
    max-width: 8.7ch;
    margin-top: 1rem;
    font-size: clamp(3.25rem, 15vw, 4.25rem);
    line-height: 0.94;
  }

  .hero h1 em {
    margin-top: 0.08em;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-glance {
    margin-top: 1rem;
  }

  .hero-glance-card {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    align-content: start;
    min-height: 6.8rem;
    padding: 0.75rem 0.55rem;
  }

  .hero-glance-card:nth-child(4),
  .hero-glance-card:nth-child(5) {
    grid-template-columns: 2.2rem 1fr;
    align-content: center;
    min-height: 4.8rem;
  }

  .hero-glance-card strong {
    font-size: 0.51rem;
  }

  .hero-glance-card small {
    font-size: 0.43rem;
  }

  .hero-glance-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero-glance-icon svg {
    width: 1.05rem;
  }

  .barber-film__copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.15rem);
  }

  .barber-film__media {
    min-height: 23rem;
  }

  .barber-film__seal {
    width: 6.5rem;
  }

  .review-marquee {
    overflow-x: auto;
    mask-image: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .review-set blockquote,
  .review-topic {
    width: min(82vw, 20rem);
    min-height: 15.5rem;
    scroll-snap-align: start;
  }
}

/* Feedback pass: restore the stronger split hero and make the review rail unmistakably social proof. */
.hero-glance {
  gap: clamp(1rem, 3.2vw, 4rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-benefits,
.hero-visit-card {
  display: grid;
}

.hero-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 2rem);
  align-self: end;
  padding-top: 0.65rem;
  border-top: 1px solid rgb(225 180 111 / 28%);
}

.hero-benefits .hero-glance-card {
  min-width: 0;
  padding: 0.55rem 0;
}

.hero-benefits .hero-glance-card + .hero-glance-card {
  border-left: 0;
}

.hero-visit-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  background: rgb(9 9 8 / 93%);
  border: 1px solid rgb(225 180 111 / 42%);
  box-shadow: 0 1.4rem 3rem rgb(0 0 0 / 32%);
  backdrop-filter: blur(14px);
}

.hero-visit-card .hero-glance-card {
  min-height: 6.2rem;
}

.hero-visit-card .hero-glance-card + .hero-glance-card {
  border-left-color: rgb(225 180 111 / 24%);
}

.review-rail-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.7rem;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews {
  padding-right: 0;
}

.review-content {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.review-marquee {
  width: 100%;
  margin-top: 0.85rem;
  padding-right: var(--gutter);
}

.review-track {
  animation-duration: 88s;
}

.review-set blockquote {
  width: clamp(17.5rem, 21vw, 20.5rem);
  min-height: 15.75rem;
}

.review-set blockquote > p {
  font-size: clamp(1.3rem, 1.55vw, 1.62rem);
}

@media (min-width: 881px) {
  .hero {
    height: 100svh;
    min-height: 42rem;
    max-height: 100svh;
    padding: calc(var(--header-height) + 2rem) var(--gutter) 7.8rem;
  }

  .hero-inner {
    align-self: center;
    width: min(43rem, 53vw);
    margin-top: -0.9rem;
  }

  .hero h1 {
    max-width: 8.5ch;
    margin-top: 0.9rem;
    margin-bottom: 1.15rem;
    font-size: clamp(4rem, 5.35vw, 5.65rem);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 34rem;
    font-size: clamp(0.88rem, 1.05vw, 1.02rem);
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.45rem;
  }

  .hero-glance {
    grid-template-columns: minmax(0, 1.7fr) minmax(26rem, 0.9fr);
  }

  .hero-glance-card {
    min-height: 5.1rem;
  }
}

@media (min-width: 881px) and (max-height: 760px) {
  .hero {
    min-height: 38rem;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 7rem;
  }

  .hero-inner {
    margin-top: -0.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 5vw, 5rem);
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-glance-card,
  .hero-visit-card .hero-glance-card {
    min-height: 5rem;
  }
}

@media (max-width: 1180px) {
  .hero-coin {
    top: 25%;
    right: 7%;
    width: clamp(9rem, 15vw, 12rem);
    opacity: 0.78;
  }

  .hero-glance {
    gap: 0.8rem;
  }

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

  .reviews {
    padding-right: var(--gutter);
  }
}

@media (max-width: 880px) {
  .hero-coin {
    display: block;
    top: calc(var(--header-height) + 4.3rem);
    right: 0.75rem;
    width: 4.5rem;
    opacity: 0.68;
    filter: drop-shadow(0 0.7rem 1.5rem rgb(0 0 0 / 32%));
  }

  .hero-glance {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-visit-card {
    width: 100%;
  }

  .review-content {
    overflow: hidden;
  }
}

@media (max-width: 620px) {
  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    padding-top: 0.5rem;
  }

  .hero-benefits .hero-glance-card {
    padding: 0.75rem 0.55rem;
  }

  .hero-visit-card .hero-glance-card {
    min-height: 4.8rem;
  }

  .review-rail-meta span:last-child {
    display: none;
  }

  .review-track {
    animation: none;
  }

  .review-set[aria-hidden="true"] {
    display: none;
  }
}

/* Services feedback pass: price-free, editorial service stories with matching imagery. */
.services .services-heading h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.service-showcase {
  display: grid;
  gap: clamp(3.5rem, 7vw, 7.5rem);
  max-width: 86rem;
  margin: 0 auto;
}

.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
  min-height: clamp(31rem, 42vw, 38rem);
  overflow: hidden;
  background: #151411;
  border: 1px solid rgb(225 180 111 / 26%);
  box-shadow: 0 2.4rem 5rem rgb(0 0 0 / 24%);
}

.service-feature::before {
  position: absolute;
  z-index: 3;
  top: 1.15rem;
  left: 1.15rem;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.service-feature:nth-child(even) {
  grid-template-columns: minmax(24rem, 0.92fr) minmax(0, 1.08fr);
}

.service-feature:nth-child(even) .service-feature__media {
  order: 2;
}

.service-feature__media {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background: #0b0b0a;
}

.service-feature__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 58%, rgb(11 11 10 / 36%) 100%),
    linear-gradient(180deg, transparent 72%, rgb(11 11 10 / 25%) 100%);
  content: "";
  pointer-events: none;
}

.service-feature:nth-child(even) .service-feature__media::after {
  background:
    linear-gradient(270deg, transparent 58%, rgb(11 11 10 / 36%) 100%),
    linear-gradient(180deg, transparent 72%, rgb(11 11 10 / 25%) 100%);
}

.service-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.05) brightness(0.82);
  transform: scale(1.01);
  transition:
    filter 500ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature:nth-child(1) .service-feature__media img {
  object-position: center 39%;
}

.service-feature:nth-child(2) .service-feature__media img {
  object-position: center 52%;
}

.service-feature:nth-child(3) .service-feature__media img {
  object-position: center;
}

.service-feature:nth-child(4) .service-feature__media img {
  object-position: center 48%;
}

.service-feature:hover .service-feature__media img {
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
  transform: scale(1.035);
}

.service-feature__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.6rem, 5.5vw, 5.5rem);
  background:
    radial-gradient(circle at 90% 10%, rgb(225 180 111 / 9%), transparent 16rem),
    linear-gradient(145deg, #191815, #11110f 82%);
}

.service-feature__copy::after {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.2rem, 2.5vw, 2rem);
  color: rgb(225 180 111 / 8%);
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 0.8;
  content: attr(data-service-number);
  pointer-events: none;
}

.service-index {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.service-index::after {
  width: 2.3rem;
  height: 1px;
  background: rgb(225 180 111 / 62%);
  content: "";
}

.service-feature .service-kicker {
  margin-bottom: 0.75rem;
}

.service-feature h3 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.1vw, 5.25rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.service-feature:nth-child(3) h3,
.service-feature:nth-child(4) h3 {
  max-width: none;
  font-size: clamp(2.9rem, 3.65vw, 4rem);
}

.service-feature__copy > p:not(.service-kicker) {
  max-width: 33rem;
  margin: 1.4rem 0 2rem;
  color: #bcb4a9;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.82;
}

.service-feature .button {
  position: relative;
  z-index: 2;
  min-width: 13.5rem;
}

@media (max-width: 880px) {
  .service-showcase {
    gap: 2.5rem;
  }

  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-feature:nth-child(even) .service-feature__media {
    order: 0;
  }

  .service-feature__media,
  .service-feature__media img {
    min-height: 24rem;
  }

  .service-feature__media::after,
  .service-feature:nth-child(even) .service-feature__media::after {
    background: linear-gradient(180deg, transparent 64%, rgb(11 11 10 / 46%) 100%);
  }

  .service-feature__copy {
    min-height: 27rem;
    padding: clamp(2rem, 7vw, 4rem);
  }

  .service-index {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 620px) {
  .services .services-heading h2 {
    font-size: clamp(3rem, 13.8vw, 4rem);
  }

  .service-showcase {
    gap: 1.5rem;
  }

  .service-feature__media,
  .service-feature__media img {
    min-height: 19rem;
  }

  .service-feature__copy {
    min-height: 25rem;
    padding: 2.25rem 1.35rem 2.5rem;
  }

  .service-index {
    margin-bottom: 2.2rem;
  }

  .service-feature h3 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .service-feature:nth-child(3) h3,
  .service-feature:nth-child(4) h3 {
    font-size: clamp(2.45rem, 10.6vw, 3.35rem);
  }

  .service-feature__copy > p:not(.service-kicker) {
    margin-top: 1rem;
    font-size: 0.84rem;
  }

  .service-feature .button {
    width: 100%;
  }
}

/* Team feedback: three distinct specialisms in the requested order. */
@media (max-width: 1180px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid article {
    min-height: 0;
  }

  .team-grid article > p {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }

  .review-set[aria-hidden="true"] {
    display: none;
  }

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final design pass: one refined concierge rail and compact service tickets. */
.hero-glance {
  right: var(--gutter);
  bottom: 1.15rem;
  left: var(--gutter);
  grid-template-columns: minmax(0, 1.52fr) minmax(24rem, 0.82fr);
  gap: 0.75rem;
}

.hero-benefits,
.hero-visit-card {
  position: relative;
  min-height: 5.65rem;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgb(17 16 14 / 96%), rgb(8 8 7 / 92%)),
    radial-gradient(circle at 8% 0%, rgb(225 180 111 / 12%), transparent 16rem);
  border: 1px solid rgb(225 180 111 / 28%);
  box-shadow: 0 1.2rem 3rem rgb(0 0 0 / 28%);
  backdrop-filter: blur(16px);
}

.hero-benefits::before,
.hero-visit-card::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 5.5rem;
  height: 1px;
  background: var(--gold-light);
  content: "";
}

.hero-benefits {
  gap: 0;
  align-self: stretch;
  padding: 0;
  border-top: 1px solid rgb(225 180 111 / 28%);
}

.hero-benefits .hero-glance-card,
.hero-visit-card .hero-glance-card {
  min-height: 5.65rem;
  padding: 0.8rem clamp(0.75rem, 1.3vw, 1.25rem);
}

.hero-benefits .hero-glance-card + .hero-glance-card,
.hero-visit-card .hero-glance-card + .hero-glance-card {
  border-left: 1px solid rgb(225 180 111 / 18%);
}

.hero-visit-card {
  align-self: stretch;
  background:
    linear-gradient(110deg, rgb(22 20 16 / 97%), rgb(9 9 8 / 95%)),
    radial-gradient(circle at 0% 100%, rgb(225 180 111 / 12%), transparent 14rem);
  border-color: rgb(225 180 111 / 34%);
}

.hero-glance-icon {
  width: 2.35rem;
  height: 2.35rem;
  background: rgb(225 180 111 / 4%);
  border-color: rgb(225 180 111 / 48%);
}

.hero-glance-icon svg {
  width: 1.12rem;
}

.hero-glance-card strong {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.hero-glance-card small {
  color: #aaa297;
  font-size: 0.47rem;
  line-height: 1.55;
}

.service-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
  max-width: 88rem;
}

.service-feature,
.service-feature:nth-child(even) {
  grid-template-columns: minmax(11rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 22rem;
  overflow: hidden;
  background: #12110f;
  border-color: rgb(225 180 111 / 24%);
  box-shadow: 0 1.5rem 3.5rem rgb(0 0 0 / 18%);
}

.service-feature::before {
  top: 0;
  left: 0;
  width: 4.5rem;
}

.service-feature:nth-child(even) .service-feature__media {
  order: 0;
}

.service-feature__media,
.service-feature__media img {
  min-height: 22rem;
}

.service-feature__media::after,
.service-feature:nth-child(even) .service-feature__media::after {
  background:
    linear-gradient(90deg, transparent 54%, rgb(10 10 9 / 38%) 100%),
    linear-gradient(180deg, rgb(4 4 4 / 4%), rgb(4 4 4 / 18%));
}

.service-feature__copy {
  justify-content: flex-start;
  min-width: 0;
  padding: clamp(1.65rem, 2.7vw, 2.6rem);
  background:
    linear-gradient(145deg, rgb(28 26 22 / 98%), rgb(15 15 13 / 99%)),
    radial-gradient(circle at 100% 0%, rgb(225 180 111 / 10%), transparent 14rem);
}

.service-feature__copy::after {
  right: 1rem;
  bottom: 0.7rem;
  font-size: clamp(3.5rem, 5vw, 5rem);
  opacity: 0.7;
}

.service-index {
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem);
  font-size: 0.55rem;
}

.service-feature .service-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.48rem;
}

.service-feature h3,
.service-feature:nth-child(3) h3,
.service-feature:nth-child(4) h3 {
  max-width: 100%;
  font-size: clamp(2rem, 2.65vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.service-feature__copy > p:not(.service-kicker) {
  margin: 0.8rem 0 1.2rem;
  color: #bdb5aa;
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  line-height: 1.65;
}

.service-feature .button {
  min-width: 10.5rem;
  min-height: 2.85rem;
  margin-top: auto;
  padding: 0 1.05rem;
  font-size: 0.52rem;
}

@media (max-width: 1120px) {
  .hero-glance {
    grid-template-columns: minmax(0, 1.25fr) minmax(21rem, 0.9fr);
  }

  .service-showcase {
    grid-template-columns: 1fr;
    max-width: 52rem;
  }

  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
  }
}

@media (max-width: 880px) {
  .hero-glance {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-benefits,
  .hero-visit-card {
    min-height: 0;
  }

  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: minmax(12rem, 0.82fr) minmax(0, 1.18fr);
  }

  .service-feature__media,
  .service-feature__media img {
    min-height: 20rem;
  }
}

@media (max-width: 620px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits .hero-glance-card,
  .hero-visit-card .hero-glance-card {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    min-height: 4.35rem;
    padding: 0.65rem 0.75rem;
  }

  .hero-benefits .hero-glance-card + .hero-glance-card {
    border-top: 1px solid rgb(225 180 111 / 16%);
    border-left: 0;
  }

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

  .hero-visit-card .hero-glance-card + .hero-glance-card {
    border-top: 1px solid rgb(225 180 111 / 16%);
    border-left: 0;
  }

  .service-showcase {
    gap: 1rem;
  }

  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-feature__media,
  .service-feature__media img {
    min-height: 14.5rem;
  }

  .service-feature__media::after,
  .service-feature:nth-child(even) .service-feature__media::after {
    background: linear-gradient(180deg, transparent 62%, rgb(10 10 9 / 46%) 100%);
  }

  .service-feature__copy {
    min-height: 20rem;
    padding: 1.55rem 1.25rem 1.35rem;
  }

  .service-index {
    margin-bottom: 1rem;
  }

  .service-feature h3,
  .service-feature:nth-child(3) h3,
  .service-feature:nth-child(4) h3 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  .service-feature:nth-child(4) h3 {
    font-size: clamp(1.8rem, 8.25vw, 2rem);
    letter-spacing: -0.045em;
  }

  .service-feature__copy > p:not(.service-kicker) {
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .service-feature .button {
    width: auto;
  }
}

/* Alternate brand plate supplied by Mister Barber, positioned beside the atmosphere film. */
.barber-film__seal {
  right: clamp(1.5rem, 5vw, 5rem);
  width: clamp(16rem, 22vw, 22rem);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  background: #171717;
  border: 1px solid rgb(225 180 111 / 32%);
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 38%);
  filter: saturate(0.7) contrast(1.04);
}

@media (max-width: 880px) {
  .barber-film__seal {
    right: var(--gutter);
    bottom: 2rem;
    width: min(12rem, 42vw);
  }
}

@media (max-width: 620px) {
  .barber-film__seal {
    right: 1rem;
    bottom: 1.25rem;
    width: 9.5rem;
  }
}

/* Social-first hero links and final mobile refinement. */
.hero-socials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-social-card {
  min-height: 5.65rem;
}

.hero-social-card--facebook .hero-glance-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-credit {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 180ms ease;
}

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

@media (max-width: 620px) {
  :root {
    --section-y: 4.25rem;
  }

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

  .hero-socials .hero-glance-card {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.55rem;
    min-height: 4.75rem;
    padding: 0.6rem;
  }

  .hero-socials .hero-glance-card + .hero-glance-card {
    border-top: 0;
    border-left: 1px solid rgb(225 180 111 / 16%);
  }

  .hero-socials .hero-glance-icon {
    width: 2rem;
    height: 2rem;
  }

  .hero-socials .hero-glance-card small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .story {
    gap: 2.6rem;
  }

  .story-visual {
    min-height: 25rem;
    padding: 0 2.25rem 2.4rem 0;
  }

  .story-main-photo,
  .story-main-photo img {
    min-height: 22.5rem;
  }

  .story-copy h2 {
    font-size: clamp(2.85rem, 12.5vw, 3.55rem);
  }

  .barber-film__copy {
    padding-bottom: 2.25rem;
  }

  .services {
    padding-top: 4.15rem;
    padding-bottom: 4.35rem;
  }

  .services .services-heading {
    gap: 1.1rem;
    margin-bottom: 2rem;
  }

  .services .services-heading h2 {
    max-width: 9.5ch;
    font-size: clamp(2.65rem, 11.8vw, 3.25rem);
    line-height: 0.92;
  }

  .services .services-heading > p:last-child {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .service-showcase {
    gap: 0.85rem;
  }

  .service-feature__media,
  .service-feature__media img {
    height: 11.25rem;
    min-height: 11.25rem;
  }

  .service-feature__copy {
    min-height: 0;
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .service-index {
    margin-bottom: 0.7rem;
  }

  .service-feature h3,
  .service-feature:nth-child(3) h3 {
    font-size: clamp(2rem, 9.5vw, 2.45rem);
  }

  .service-feature:nth-child(4) h3 {
    font-size: clamp(1.7rem, 7.8vw, 1.9rem);
  }

  .service-feature__copy > p:not(.service-kicker) {
    margin: 0.65rem 0 0.9rem;
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .service-feature .button {
    min-width: 9.75rem;
    min-height: 2.7rem;
    padding: 0 0.9rem;
  }

  .site-footer {
    gap: 2rem 1.25rem;
    padding-top: 4rem;
  }

  .footer-bottom {
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1.2rem;
  }

  .service-feature__media,
  .service-feature__media img {
    height: 9.75rem;
    min-height: 9.75rem;
  }

  .service-feature__copy {
    padding: 1.05rem 1rem;
  }

  .service-index {
    margin-bottom: 0.55rem;
  }

  .service-feature__copy > p:not(.service-kicker) {
    margin: 0.55rem 0 0.75rem;
  }

  .service-feature .button {
    min-height: 2.5rem;
  }

  .craft-image {
    min-height: 20rem;
  }

  .craft-copy {
    padding: 3.6rem var(--gutter);
  }

  .craft-copy h2 {
    margin: 1.1rem 0 1.3rem;
    font-size: clamp(2.9rem, 13.5vw, 3.65rem);
  }

  .craft-copy ul {
    margin: 1.75rem 0;
  }

  .work-heading,
  .team-heading {
    gap: 1.35rem;
    margin-bottom: 2.1rem;
  }

  .work-heading h2,
  .team-heading h2 {
    font-size: clamp(2.9rem, 13vw, 3.55rem);
  }

  .work-grid {
    grid-template-rows: 18rem 15rem 18rem 12rem;
    gap: 0.7rem;
  }

  .team-heading > p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.65;
  }

  .team-grid {
    gap: 0.75rem;
  }

  .team-grid article {
    min-height: 0;
    gap: 1.25rem 0.9rem;
    padding: 1.25rem;
  }

  .team-grid h3 {
    font-size: clamp(2.65rem, 12vw, 3.15rem);
  }

  .team-grid article > p {
    font-size: 0.77rem;
    line-height: 1.62;
  }
}

/* Compact hero contact rail and unframed film watermark. */
.hero-glance {
  grid-template-columns: minmax(24rem, 32rem) minmax(27rem, 34rem);
  justify-content: space-between;
  align-items: end;
  gap: clamp(1rem, 3vw, 3rem);
}

.hero-benefits.hero-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  min-height: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-benefits.hero-socials::before {
  display: none;
}

.hero-socials .hero-social-card,
.hero-socials .hero-social-card + .hero-social-card {
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.7rem;
  min-height: 4.15rem;
  padding: 0.65rem 0.75rem;
  background:
    linear-gradient(110deg, rgb(225 180 111 / 8%), transparent 42%),
    rgb(9 9 8 / 86%);
  border: 1px solid rgb(225 180 111 / 28%);
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 20%);
  backdrop-filter: blur(12px);
}

.hero-socials .hero-social-card:hover,
.hero-socials .hero-social-card:focus-visible {
  background:
    linear-gradient(110deg, rgb(225 180 111 / 14%), transparent 46%),
    rgb(13 12 10 / 94%);
  border-color: rgb(239 199 134 / 65%);
  transform: translateY(-2px);
}

.hero-socials .hero-glance-icon {
  width: 2.15rem;
  height: 2.15rem;
  background: rgb(225 180 111 / 8%);
}

.hero-socials .hero-glance-card strong {
  font-size: 0.61rem;
}

.hero-socials .hero-glance-card small {
  margin-top: 0.18rem;
  font-size: 0.46rem;
  line-height: 1.45;
}

.hero-visit-card {
  min-height: 4.15rem;
  background: rgb(9 9 8 / 86%);
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 20%);
}

.hero-visit-card .hero-glance-card {
  min-height: 4.15rem;
  padding-block: 0.65rem;
}

.barber-film__seal {
  right: clamp(1.5rem, 4.5vw, 4.5rem);
  width: clamp(18rem, 25vw, 25rem);
  aspect-ratio: auto;
  object-fit: contain;
  opacity: 0.46;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: grayscale(1) contrast(1.55) brightness(0.7);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 68% 58% at 50% 48%, #000 38%, rgb(0 0 0 / 82%) 58%, transparent 88%);
  mask-image: radial-gradient(ellipse 68% 58% at 50% 48%, #000 38%, rgb(0 0 0 / 82%) 58%, transparent 88%);
}

.barber-film__seal.reveal-item.is-revealed {
  opacity: 0.46;
}

@media (max-width: 880px) {
  .barber-film__seal {
    right: var(--gutter);
    bottom: 1.5rem;
    width: min(14rem, 44vw);
  }
}

@media (max-width: 620px) {
  .hero-glance {
    right: 0;
    left: 0;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    align-items: stretch;
  }

  .hero-benefits.hero-socials,
  .hero-visit-card {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .hero-socials .hero-social-card,
  .hero-socials .hero-social-card + .hero-social-card {
    grid-template-columns: 1.85rem minmax(0, 1fr);
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 0.48rem 0.55rem;
    border: 1px solid rgb(225 180 111 / 28%);
  }

  .hero-socials .hero-glance-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .hero-socials .hero-glance-card strong {
    font-size: 0.53rem;
  }

  .hero-socials .hero-glance-card small {
    display: none;
  }

  .hero-visit-card .hero-glance-card,
  .hero-visit-card .hero-glance-card + .hero-glance-card {
    grid-template-columns: 1.85rem minmax(0, 1fr);
    gap: 0.5rem;
    min-height: 4.75rem;
    padding: 0.55rem;
    background: rgb(9 9 8 / 88%);
    border: 1px solid rgb(225 180 111 / 24%);
  }

  .hero-visit-card .hero-glance-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .hero-visit-card .hero-glance-card strong {
    font-size: 0.48rem;
    line-height: 1.35;
  }

  .hero-visit-card .hero-glance-card small {
    margin-top: 0.15rem;
    font-size: 0.39rem;
    line-height: 1.45;
  }

  .hero-coin {
    top: calc(var(--header-height) + 3rem);
    right: 0.25rem;
    width: 6.4rem;
    opacity: 0.78;
    filter: drop-shadow(0 0.75rem 1.5rem rgb(0 0 0 / 48%));
  }

  .barber-film__seal {
    right: 0.35rem;
    bottom: 0.85rem;
    width: min(12rem, 48vw);
    opacity: 0.5;
  }

  .barber-film__seal.reveal-item.is-revealed {
    opacity: 0.5;
  }
}

/* Final responsive rhythm audit: keep the mobile conversion path clear of content. */
@media (max-width: 620px) {
  .mobile-book,
  .mobile-book.is-visible {
    display: none;
  }

  .hero-lead {
    max-width: calc(100% - 7.55rem);
  }

  .hero-actions {
    margin-top: 1.85rem;
  }

  .hero-coin {
    top: 22.75rem;
    right: 0.15rem;
    width: 7rem;
    opacity: 0.98;
    background: radial-gradient(circle, rgb(225 180 111 / 12%), transparent 68%);
    box-shadow:
      0 0 0 1px rgb(239 199 134 / 24%),
      0 0 2.25rem rgb(225 180 111 / 22%);
    filter:
      drop-shadow(0 0.45rem 0.9rem rgb(225 180 111 / 30%))
      drop-shadow(0 1.1rem 1.8rem rgb(0 0 0 / 52%));
  }
}
