:root {
  --ink: #050505;
  --ink-soft: #101010;
  --paper: #080808;
  --paper-deep: #121212;
  --white: #ffffff;
  --red: #ff0000;
  --red-dark: #d40000;
  --blue: #ff0000;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
  --serif: "Barlow Condensed", "Arial Narrow", sans-serif;
  --container: 1180px;
  --section: clamp(5rem, 9vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(17, 16, 15, 0.045) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 229, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 16, 15, 0.25);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.brand small {
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 3vw, 2.8rem);
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 1.15rem;
  padding: 0.85rem 1.2rem 0.85rem 1.45rem;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button span {
  font-size: 1.1rem;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-block: 0.65rem;
  font-size: 0.72rem;
}

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

.button-light:hover {
  border-color: var(--paper-deep);
  color: var(--ink);
  background: var(--paper-deep);
}

.hero {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  isolation: isolate;
}

.barber-stripe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 8px;
  background: repeating-linear-gradient(
    125deg,
    var(--red) 0 32px,
    var(--white) 32px 64px,
    var(--blue) 64px 96px,
    var(--white) 96px 128px
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow,
.kicker {
  margin: 0 0 1.1rem;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff7478;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.8rem, 8.5vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: var(--red);
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 2rem;
  color: #403c37;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.text-link,
.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link:hover,
.map-link:hover {
  color: var(--red);
}

.microcopy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(17, 16, 15, 0.35);
  background: var(--paper-deep);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 90% 100%, 0 100%);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 16, 15, 0.35), transparent 45%);
  content: "";
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.85) contrast(1.04);
}

.hero-note {
  position: absolute;
  right: -1.2rem;
  bottom: 1.8rem;
  z-index: 2;
  display: grid;
  min-width: 190px;
  padding: 1.1rem 1.3rem;
  border-top: 4px solid var(--blue);
  color: var(--white);
  background: var(--red);
  transform: rotate(-2deg);
}

.hero-note span,
.hero-note small {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  margin: -0.2rem 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-style: italic;
  line-height: 1;
}

.hero-mark {
  position: absolute;
  top: -3.5rem;
  left: -3.5rem;
  z-index: -1;
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: 13rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.proof-rail {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  min-height: 142px;
}

.proof-item,
.proof-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--line-light);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-label {
  margin-bottom: 0.35rem;
  color: #a9a39a;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-item strong {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.15;
}

.stars {
  color: #f3b343;
  font-size: 0.78em;
  letter-spacing: 0.05em;
}

.proof-link {
  align-items: flex-end;
  flex-direction: row;
  gap: 1.1rem;
  border-right: 0;
  color: #ff777b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-link:hover {
  color: var(--white);
}

.section {
  padding-block: var(--section);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.section h2,
.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.split-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 350px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.4);
  transition:
    color 200ms ease,
    background 200ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
}

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.service-number {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.service-badge {
  padding: 0.25rem 0.5rem;
  border: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

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

.service-card:hover p,
.service-card:hover .service-meta span,
.service-card:hover .service-badge {
  color: #c9c2b8;
}

.service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
  border-top: 1px solid currentColor;
}

.service-meta strong {
  font-size: 1.5rem;
}

.service-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-action:hover {
  color: #ff777b;
}

.services-note {
  max-width: 760px;
  margin: 1.5rem 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.more-services {
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--ink-soft);
}

.more-services h3,
.visit-info h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.more-services-intro > p:last-child {
  color: #b9b3aa;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 62px;
  border-bottom: 1px solid var(--line-light);
}

.service-row:first-child {
  border-top: 1px solid var(--line-light);
}

.service-row strong {
  text-transform: uppercase;
}

.service-row span {
  color: #aaa49c;
  font-size: 0.8rem;
}

.service-row b {
  min-width: 70px;
  color: #ff777b;
  text-align: right;
}

.story {
  position: relative;
  color: var(--white);
  background: var(--red-dark);
  overflow: hidden;
}

.story::after {
  position: absolute;
  right: -6rem;
  bottom: -12rem;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--serif);
  font-size: 36rem;
  font-style: italic;
  line-height: 1;
  content: "F";
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.story h2 {
  margin-bottom: 2rem;
}

.story-lead {
  max-width: 700px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow) {
  color: #f3d9d6;
}

.story-copy .button {
  margin-top: 1.2rem;
}

.story-quote {
  padding: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(17, 16, 15, 0.14);
  transform: rotate(1.5deg);
}

.quote-mark {
  display: block;
  height: 70px;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.85;
}

.story-quote p {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1;
}

.story-quote small {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.25rem;
  background: var(--paper-deep);
}

.team-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, transparent 49%, var(--paper) 50%);
  content: "";
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 350ms ease;
}

.team-member:hover img {
  transform: scale(1.025);
}

.team-member h3 {
  margin-bottom: 0.15rem;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.team-member p {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.reviews-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.reviews-intro h2 {
  margin-bottom: 2.5rem;
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.rating-lockup > strong {
  font-family: var(--serif);
  font-size: 4.8rem;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
}

.rating-lockup > span {
  display: grid;
}

.rating-lockup small {
  color: var(--muted);
}

.review-card {
  margin: 0;
  padding: clamp(2rem, 4vw, 3.4rem) 0;
  border-top: 1px solid var(--line);
}

.review-card:last-child {
  border-bottom: 1px solid var(--line);
}

.review-text {
  max-width: 780px;
  margin: 1rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.35;
}

.review-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.review-card figcaption strong {
  text-transform: uppercase;
}

.review-card figcaption span {
  color: var(--muted);
}

.text-link-dark {
  font-size: 0.7rem;
}

.location {
  background: var(--paper-deep);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.location-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.location-card::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 250px;
  height: 250px;
  border: 55px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.location-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 2.3rem;
}

.location-card address {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 2.4rem;
  font-style: normal;
}

.location-card address strong {
  font-size: 1.3rem;
}

.location-card address span,
.location-card address small {
  color: #c5bfb6;
}

.location-actions {
  position: relative;
  z-index: 1;
}

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

.visit-info {
  align-self: center;
}

.visit-info ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.visit-info li {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.visit-info li:nth-child(odd) {
  padding-right: 1rem;
}

.visit-info li span {
  color: var(--red);
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-left: 4px solid var(--red);
  background: rgba(255, 253, 248, 0.55);
}

.schedule-note > span {
  color: var(--red);
  font-size: 1.8rem;
}

.schedule-note p,
.schedule-note strong,
.schedule-note span {
  display: block;
  margin: 0;
}

.schedule-note p > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}

.support-box > div {
  display: grid;
}

.support-box strong {
  font-size: 1.05rem;
}

.support-box span {
  color: var(--muted);
  font-size: 0.82rem;
}

.button-support {
  min-width: 190px;
  border-color: var(--ink);
  background: var(--ink);
}

.button-support:hover {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding-right: 3rem;
  cursor: pointer;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 0.8rem;
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 400;
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  padding: 0 3rem 1.8rem 0;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--white);
  background: var(--red-dark);
  overflow: hidden;
}

.barber-stripe-bottom {
  top: auto;
  bottom: 0;
  z-index: 1;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: #f6d7d5;
}

footer {
  padding: 2.5rem 0;
  color: #b9b3aa;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand,
footer address {
  display: grid;
  font-style: normal;
}

.footer-brand strong {
  color: var(--white);
  font-size: 2rem;
}

.footer-brand span,
footer address,
footer p {
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

.mobile-booksy {
  display: none;
}

.booking-dialog {
  width: min(770px, calc(100% - 2rem));
  height: min(850px, calc(100dvh - 3rem));
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  margin: auto;
  background: transparent;
  overflow: hidden;
}

.booking-dialog::backdrop {
  background: rgba(17, 16, 15, 0.82);
  backdrop-filter: blur(3px);
}

.booking-dialog-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.booking-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.booking-dialog-header > div {
  display: grid;
  min-width: 0;
}

.booking-dialog-header span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-dialog-header strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-close {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
}

.booking-close:hover {
  color: var(--white);
  background: var(--ink);
}

.booking-frame-wrap {
  position: relative;
  min-height: 0;
  background: var(--white);
}

.booking-frame {
  display: block;
}

#booking-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

#booking-frame.is-ready {
  opacity: 1;
}

.booking-loading {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (max-width: 980px) {
  nav {
    display: none;
  }

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

  .hero-grid,
  .story-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(3.8rem, 10vw, 6rem);
  }

  .hero-note {
    right: -0.5rem;
  }

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

  .proof-link {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 58px;
    border-top: 1px solid var(--line-light);
  }

  .service-card {
    min-height: 350px;
  }

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

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

  .reviews-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-grid,
  .story-grid,
  .location-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3.8rem;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.1rem);
  }

  .hero-visual {
    width: 90%;
    margin: 0 auto;
  }

  .hero-mark {
    top: -2rem;
    left: -2rem;
    font-size: 9rem;
  }

  .hero-note {
    right: -6%;
    min-width: 165px;
  }

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

  .proof-item,
  .proof-item:first-child {
    min-height: 100px;
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .service-card {
    min-height: 330px;
  }

  .more-services {
    padding: 1.5rem;
  }

  .service-row {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1rem;
    padding-block: 0.8rem;
  }

  .service-row span {
    grid-row: 2;
  }

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

  .story-quote {
    padding: 2rem;
  }

  .team-grid {
    gap: 2.8rem;
  }

  .team-photo {
    aspect-ratio: 5 / 6;
  }

  .review-card figcaption {
    flex-direction: column;
    gap: 0.2rem;
  }

  .location-card {
    padding: 2rem 1.35rem;
  }

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

  .visit-info li:nth-child(odd) {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 4.5rem;
  }

  .mobile-booksy {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: var(--red);
    box-shadow: 0 12px 30px rgba(17, 16, 15, 0.25);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .support-box {
    align-items: stretch;
    flex-direction: column;
  }

  .support-box .button {
    width: 100%;
  }

  .booking-dialog {
    width: 100%;
    height: 100dvh;
  }

  .booking-dialog-shell {
    border-radius: 0;
  }
}

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

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

  .button,
  .text-link,
  .map-link {
    width: 100%;
  }

  .text-link,
  .map-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  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;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Identidade Fiaiz: preto dominante, vermelho #ff0000 e detalhes brancos. */
body {
  color: var(--white);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
}

h1,
h2,
h3,
.brand,
.button,
nav,
.eyebrow,
.kicker,
.proof-rail,
.service-number,
.service-badge,
.service-action,
summary,
.mobile-booksy {
  font-family: var(--serif);
}

h1,
.section h2,
.final-cta h2 {
  font-weight: 900;
  letter-spacing: -0.035em;
}

p {
  letter-spacing: -0.012em;
}

:focus-visible {
  outline-color: var(--red);
  outline-offset: 5px;
}

.skip-link {
  color: var(--ink);
  background: var(--white);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.header-inner {
  grid-template-columns: 1fr auto 1fr;
  min-height: 104px;
  gap: 2.5rem;
}

.brand {
  grid-column: 2;
  justify-self: center;
  min-height: 86px;
}

.brand img {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.48));
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: scale(1.035);
}

nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
}

nav a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.button {
  border-width: 2px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.16);
}

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

.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

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

.hero {
  background:
    radial-gradient(circle at 82% 23%, rgba(255, 0, 0, 0.19), transparent 32%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
}

.barber-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    125deg,
    var(--red) 0 44px,
    var(--white) 44px 62px,
    var(--ink) 62px 106px,
    var(--white) 106px 124px
  );
}

.eyebrow,
.kicker,
.eyebrow-light {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 7.4vw, 6.6rem);
  line-height: 0.82;
}

h1 em {
  color: var(--red);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-lead,
.microcopy,
.split-heading > p,
.services-note,
.service-card p,
.service-meta span,
.rating-lockup small,
.review-card figcaption span,
.support-box span,
details p,
.schedule-note p > span {
  color: var(--muted);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.text-link,
.map-link {
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 800;
}

.photo-frame {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--ink-soft);
  box-shadow: 22px 22px 0 rgba(255, 0, 0, 0.85);
}

.photo-frame::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 50%);
}

.photo-frame img,
.team-photo img {
  filter: saturate(0.88) contrast(1.08);
}

.hero-note {
  border-top-color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.hero-note strong,
.rating-lockup > strong,
.review-text,
.story-lead,
.story-quote p,
.quote-mark,
.footer-brand strong {
  font-family: var(--serif);
}

.hero-mark {
  color: rgba(255, 0, 0, 0.14);
}

.proof-rail {
  border-top: 1px solid rgba(255, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #090909;
}

.proof-label {
  color: #9f9f9f;
}

.stars,
.proof-link {
  color: var(--red);
}

.services {
  background: #080808;
}

.section h2,
.final-cta h2 {
  font-family: var(--serif);
  line-height: 0.88;
}

.service-grid {
  border-color: var(--line);
}

.service-card {
  border-color: var(--line);
  background: #101010;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

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

.service-card:hover .service-number,
.service-card:hover .service-action,
.service-card:hover p,
.service-card:hover .service-meta span,
.service-card:hover .service-badge {
  color: var(--white);
}

.service-number {
  font-weight: 800;
}

.service-card h3,
.team-member h3,
.more-services h3,
.visit-info h3 {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.service-badge {
  color: #d0d0d0;
}

.service-action:hover {
  color: var(--white);
}

.story {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    var(--red);
}

.story::after {
  color: rgba(0, 0, 0, 0.12);
}

.story-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.story-quote {
  border: 2px solid var(--white);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.26);
}

.team {
  background: #050505;
}

.team-photo {
  border: 1px solid var(--line);
  background: #161616;
}

.team-photo::after {
  background: linear-gradient(135deg, transparent 49%, #050505 50%);
}

.reviews {
  border-color: var(--line);
  background: #101010;
}

.review-card {
  border-color: var(--line);
}

.review-text {
  font-weight: 600;
  line-height: 1.25;
}

.location {
  background: #050505;
}

.location-card {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.35)),
    var(--red);
  box-shadow: 18px 18px 0 #161616;
}

.location-card address span,
.location-card address small {
  color: rgba(255, 255, 255, 0.82);
}

.visit-info li,
.visit-info ul,
.faq-list,
details {
  border-color: var(--line);
}

.schedule-note {
  border-left-color: var(--red);
  background: #151515;
}

.faq {
  background: #0b0b0b;
}

.support-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  background: #121212;
}

.button-support {
  border-color: var(--red);
  background: var(--red);
}

.button-support:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.final-cta {
  background:
    radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.34), transparent 45%),
    var(--red);
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #a8a8a8;
  background: #030303;
}

.footer-brand strong {
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mobile-booksy {
  border-color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}

.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.booking-dialog-shell,
.booking-frame-wrap {
  background: var(--white);
}

.booking-dialog-header {
  border-bottom: 3px solid var(--red);
  color: var(--white);
  background: var(--ink);
}

.booking-close {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.booking-close:hover {
  color: var(--ink);
  background: var(--white);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .brand {
    grid-column: 2;
  }

  .header-cta {
    grid-column: 3;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .location-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4.5rem;
  }

  .hero-copy {
    max-width: 690px;
  }

  h1 {
    font-size: clamp(4.5rem, 13vw, 6.2rem);
  }

  .hero-visual {
    width: min(78%, 520px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    grid-template-columns: 1fr;
    min-height: 86px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-height: 72px;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .photo-frame {
    box-shadow: 12px 12px 0 rgba(255, 0, 0, 0.85);
  }

  .location-card {
    box-shadow: 10px 10px 0 #161616;
  }
}

@media print {
  .site-header,
  .mobile-booksy,
  .booking-dialog,
  .barber-stripe {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
