:root {
  --ink: #181714;
  --ink-soft: #282621;
  --paper: #f1ede3;
  --paper-deep: #ddd6c8;
  --cream: #f8f4eb;
  --oxblood: #722f37;
  --gold: #b99b68;
  --green: #263c33;
  --line: rgb(24, 23, 20, 0.17);
  --line-light: rgb(248, 244, 235, 0.2);
  --serif: "Instrument Serif", georgia, serif;
  --sans: "DM Sans", arial, sans-serif;
  --shell: min(100% - 48px, 1380px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-160%);
  transition: transform 0.2s;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(92px, 10vw, 160px);
}

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-inline: 24px;
  color: var(--cream);
  background: var(--oxblood);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  display: none;
}

.announcement .demo-banner-link {
  display: inline-flex;
  padding-bottom: 1px;
  border-bottom: 1px solid rgb(248, 244, 235, 0.5);
}

.pulse-dot,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #91bf83;
  box-shadow: 0 0 0 4px rgb(145, 191, 131, 0.15);
}

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: clamp(24px, 4vw, 62px);
  color: var(--cream);
  border-bottom: 1px solid rgb(255, 255, 255, 0.16);
  transition: top 0.35s, height 0.35s, background 0.35s, color 0.35s, transform 0.35s;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  height: 72px;
  color: var(--ink);
  background: rgb(241, 237, 227, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 7px 30px rgb(24, 23, 20, 0.08);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 43px;
  height: 43px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
}

.brand-type {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-type b {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.brand-type small {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.header-phone {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentcolor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

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

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  color: var(--cream);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.button:hover {
  background: #873a44;
  border-color: #873a44;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: none;
}

.button-small:hover {
  color: var(--cream);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.site-header.sticky .button-small {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.site-header.sticky .button-small:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(930px, calc(100svh - 34px));
  display: flex;
  align-items: center;
  color: var(--cream);
  background: #171612;
  overflow: hidden;
}

.hero-image,
.hero-scrim,
.hero-grain {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes hero-in {
  from {
    opacity: 0.35;
    transform: scale(1.06);
  }

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

.hero-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgb(14, 13, 11, 0.94) 0%, rgb(14, 13, 11, 0.69) 34%, rgb(14, 13, 11, 0.05) 76%), linear-gradient(0deg, rgb(12, 11, 10, 0.75) 0%, transparent 35%);
}

.hero-grain,
.final-cta::after {
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 98px;
}

.hero-kicker {
  width: min(620px, 56vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(22px, 4vh, 44px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  margin-right: 14px;
  background: var(--cream);
}

.hero-kicker span:first-child {
  margin-right: auto;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 9.2vw, 142px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.hero h1 em,
.display em {
  font-weight: 400;
  color: var(--gold);
}

.hero-copy {
  max-width: 520px;
  margin: clamp(38px, 6vh, 64px) 0 0;
  color: rgb(248, 244, 235, 0.79);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-demo-note {
  width: max-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 7px 10px;
  color: rgb(248, 244, 235, 0.72);
  background: rgb(248, 244, 235, 0.08);
  border: 1px solid rgb(248, 244, 235, 0.18);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

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

.button-light:hover {
  color: var(--cream);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.play-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}

.play-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
}

.play-link:hover .play-icon {
  color: var(--ink);
  background: var(--cream);
  transform: translateY(4px);
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.stars {
  color: #d4b574;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.rating-lockup p {
  margin: 5px 0 0;
  color: rgb(248, 244, 235, 0.7);
  font-size: 11px;
}

.rating-lockup strong {
  color: var(--cream);
}

.open-card {
  min-width: 206px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgb(14, 13, 11, 0.45);
  border: 1px solid rgb(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.open-card small,
.open-card strong {
  display: block;
}

.open-card small {
  color: rgb(248, 244, 235, 0.65);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.open-card strong {
  margin-top: 2px;
  font-size: 12px;
}

.marquee {
  overflow: hidden;
  padding-block: 19px;
  color: var(--cream);
  background: var(--oxblood);
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
}

.marquee i {
  margin-inline: 38px;
  color: var(--gold);
  font-size: 11px;
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 42px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentcolor;
  border-radius: 50%;
  font-size: 8px;
}

.section-label-light {
  color: rgb(248, 244, 235, 0.68);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(65px, 8.2vw, 122px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.045em;
}

.display-light {
  color: var(--cream);
}

.intro-copy {
  max-width: 510px;
  padding-top: 14px;
  color: #625e55;
}

.lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.15;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentcolor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow-link span {
  transition: transform 0.25s;
}

.arrow-link:hover span {
  transform: translateX(5px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.section-heading > p {
  margin: 0 0 4px;
  color: rgb(248, 244, 235, 0.58);
}

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

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 160px 52px;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.3s, background 0.3s;
}

.service-item:hover {
  padding-inline: 20px;
  background: rgb(255, 255, 255, 0.035);
}

.service-number {
  color: rgb(248, 244, 235, 0.38);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.service-name h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 400;
}

.service-name p {
  margin: 4px 0 0;
  color: rgb(248, 244, 235, 0.5);
  font-size: 13px;
}

.service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.service-meta span {
  color: rgb(248, 244, 235, 0.45);
  font-size: 11px;
}

.service-meta strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.service-book {
  width: 48px;
  height: 48px;
  border: 1px solid rgb(248, 244, 235, 0.4);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.service-item:hover .service-book {
  color: var(--ink);
  background: var(--cream);
  transform: rotate(45deg);
}

.service-note {
  margin: 30px 0 0;
  color: rgb(248, 244, 235, 0.45);
  font-size: 11px;
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.team-photo-wrap {
  position: relative;
}

.team-photo-wrap > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-stamp {
  position: absolute;
  right: -53px;
  bottom: 9%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--oxblood);
  border-radius: 50%;
}

.photo-stamp svg {
  width: 94%;
  height: 94%;
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.4;
}

.photo-stamp text {
  fill: var(--cream);
  stroke: none;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2px;
}

.team-copy {
  padding-inline: clamp(0px, 2vw, 28px);
}

.fictional-label {
  margin: -24px 0 15px;
  color: var(--oxblood);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-copy .display {
  margin-bottom: 48px;
}

.team-copy > p:not(.lead) {
  max-width: 600px;
  color: #625e55;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.team-stats strong,
.team-stats span {
  display: block;
}

.team-stats strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.team-stats span {
  color: #777166;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work {
  background: #ded8cc;
}

.work-heading {
  color: var(--ink);
}

.work-heading .arrow-link {
  justify-self: end;
  margin-bottom: 6px;
}

.lookbook {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 340px 320px;
  gap: 16px;
}

.look {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.look img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.look::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgb(10, 10, 8, 0.7));
  pointer-events: none;
}

.look figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
}

.look figcaption span {
  color: rgb(248, 244, 235, 0.55);
  font-size: 9px;
}

.look-tall {
  grid-row: span 2;
}

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

.look-wide img {
  object-position: 58% 46%;
}

.look-square img {
  object-position: 50% 29%;
}

.look-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  color: var(--cream);
  background: var(--oxblood);
}

.look-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 51px);
  line-height: 1;
}

.look-quote span {
  color: rgb(248, 244, 235, 0.65);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reviews {
  color: var(--cream);
  background: var(--green);
}

.reviews-shell {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(60px, 9vw, 150px);
}

.review-score {
  padding-right: 40px;
  border-right: 1px solid var(--line-light);
}

.review-score > span {
  color: #d4b574;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.review-score strong {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(90px, 10vw, 145px);
  font-weight: 400;
  line-height: 0.8;
}

.review-score p {
  max-width: 130px;
  margin-top: 30px;
  color: rgb(248, 244, 235, 0.55);
  font-size: 11px;
}

.review-carousel {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  height: 54px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.9;
}

.review-slides {
  position: relative;
  flex: 1;
}

.review {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}

.review.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.review p {
  max-width: 790px;
  margin: 28px 0 36px;
  font-family: var(--serif);
  font-size: clamp(29px, 4vw, 55px);
  line-height: 1.07;
}

.review footer {
  display: grid;
  gap: 3px;
}

.review footer strong {
  font-size: 12px;
}

.review footer span {
  color: rgb(248, 244, 235, 0.46);
  font-size: 10px;
}

.review-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.review-controls > button {
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgb(248, 244, 235, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
}

.review-controls > button:hover {
  color: var(--green);
  background: var(--cream);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dots button {
  width: 22px;
  height: 2px;
  padding: 0;
  background: rgb(248, 244, 235, 0.25);
  border: 0;
  cursor: pointer;
}

.review-dots button.active {
  background: var(--cream);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.visit-map {
  position: relative;
  overflow: hidden;
}

.visit-map > svg {
  display: block;
  width: 100%;
}

.map-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 15px 20px;
  color: var(--cream);
  background: var(--ink);
}

.map-card span,
.map-card strong {
  display: block;
}

.map-card span {
  color: rgb(248, 244, 235, 0.55);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.visit-copy .display {
  font-size: clamp(61px, 6.8vw, 105px);
}

.visit-copy address {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 25px;
  font-style: normal;
  line-height: 1.25;
}

.visit-copy .fictional-label {
  margin: 34px 0 0;
}

.visit-copy .fictional-label + address {
  margin-top: 14px;
}

.hours {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hours strong {
  font-weight: 500;
}

.visit-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.visit-details span {
  padding: 8px 11px;
  background: rgb(24, 23, 20, 0.06);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  border-top: 1px solid var(--line);
}

.faq-heading .display {
  font-size: clamp(58px, 6.5vw, 96px);
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.accordion-item button i {
  font-family: var(--serif);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.3s;
}

.accordion-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #6d685f;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel p {
  padding: 0 48px 26px 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--oxblood);
}

.final-cta::before {
  content: "A";
  position: absolute;
  top: 50%;
  right: -2vw;
  color: rgb(248, 244, 235, 0.045);
  font-family: var(--serif);
  font-size: 42vw;
  line-height: 1;
  transform: translateY(-48%);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 12vw, 175px);
}

.final-cta p {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
}

.final-cta h2 {
  margin: 0 0 50px;
  font-family: var(--serif);
  font-size: clamp(80px, 13.5vw, 204px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.portfolio-note {
  color: var(--ink);
  background: var(--gold);
}

.portfolio-note-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  padding-block: clamp(86px, 10vw, 142px);
}

.portfolio-note-kicker {
  display: block;
  margin-bottom: 24px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 8.4vw, 126px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.05em;
}

.portfolio-note h2 em {
  color: var(--oxblood);
  font-weight: 400;
}

.portfolio-note-copy {
  align-self: center;
  max-width: 680px;
}

.portfolio-note-copy > p {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.15;
}

.portfolio-note-copy ul {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid rgb(24, 23, 20, 0.25);
  list-style: none;
  color: rgb(24, 23, 20, 0.7);
  font-size: 12px;
}

.portfolio-note-copy li {
  position: relative;
  padding-left: 20px;
}

.portfolio-note-copy li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--oxblood);
  font-size: 8px;
}

.site-footer {
  color: var(--cream);
  background: #11110f;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
  padding-block: 76px;
}

.brand-footer {
  align-self: start;
}

.brand-footer .brand-mark {
  width: 54px;
  height: 54px;
}

.brand-footer .brand-type b {
  font-size: 19px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer-columns small {
  display: block;
  margin-bottom: 18px;
  color: rgb(248, 244, 235, 0.4);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns p,
.footer-columns a {
  display: block;
  margin: 0 0 7px;
  font-size: 12px;
  line-height: 1.7;
}

.footer-columns a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 22px;
  color: rgb(248, 244, 235, 0.36);
  border-top: 1px solid rgb(248, 244, 235, 0.12);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.footer-bottom > a {
  justify-self: end;
}

.mobile-book {
  display: none;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgb(10, 9, 8, 0.7);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  transition: opacity 0.35s, visibility 0.35s;
}

.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 301;
  width: min(610px, 100vw);
  height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  box-shadow: -24px 0 70px rgb(0, 0, 0, 0.25);
  transform: translateX(102%);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.booking-drawer.open {
  transform: none;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px 22px;
  border-bottom: 1px solid var(--line);
}

.booking-eyebrow,
.step-heading > span {
  display: block;
  margin-bottom: 5px;
  color: var(--oxblood);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.booking-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.booking-close:hover {
  color: var(--cream);
  background: var(--ink);
  transform: rotate(90deg);
}

.booking-progress {
  padding: 16px 34px 17px;
  border-bottom: 1px solid var(--line);
}

.booking-demo-note {
  margin: 0;
  padding: 12px 34px;
  color: #6e413f;
  background: rgb(114, 47, 55, 0.08);
  border-bottom: 1px solid rgb(114, 47, 55, 0.2);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}

.progress-line {
  height: 2px;
  margin-bottom: 9px;
  background: rgb(24, 23, 20, 0.1);
}

.progress-line span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--oxblood);
  transition: width 0.35s;
}

.booking-progress ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #a29d93;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-progress li:nth-child(n+2) {
  text-align: center;
}

.booking-progress li:last-child {
  text-align: right;
}

.booking-progress li.active,
.booking-progress li.done {
  color: var(--ink);
}

.booking-form {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.booking-step {
  display: none;
  flex: 1;
  padding: 32px 34px;
  overflow-y: auto;
}

.booking-step.active {
  display: block;
  animation: step-in 0.35s ease both;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.step-heading {
  margin-bottom: 26px;
}

.step-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.option-list,
.barber-options {
  display: grid;
  gap: 9px;
}

.option-card,
.barber-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.option-card:hover,
.barber-option:hover {
  background: rgb(114, 47, 55, 0.04);
  border-color: rgb(114, 47, 55, 0.48);
}

.option-card:has(input:checked),
.barber-option:has(input:checked) {
  background: rgb(114, 47, 55, 0.06);
  border-color: var(--oxblood);
}

.option-card input,
.barber-option input,
.time-option input,
.date-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card strong,
.option-card small,
.barber-option strong,
.barber-option small {
  display: block;
}

.option-card strong,
.barber-option strong {
  font-size: 13px;
}

.option-card small,
.barber-option small {
  margin-top: 2px;
  color: #79736a;
  font-size: 10px;
}

.option-price {
  text-align: right;
  font-family: var(--serif);
  font-size: 22px;
}

.option-radio,
.barber-option i {
  width: 17px;
  height: 17px;
  border: 1px solid #a29d93;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--cream);
}

.option-card:has(input:checked) .option-radio,
.barber-option:has(input:checked) i {
  background: var(--oxblood);
  border-color: var(--oxblood);
}

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

.barber-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.barber-any { background: var(--oxblood); }
.avatar-malik { background: #4b332c; }
.avatar-tom { background: #596159; }
.avatar-rae { background: #44384e; }

.date-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-bottom: 25px;
}

.date-option {
  position: relative;
  display: grid;
  place-items: center;
  padding: 9px 4px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.date-option span,
.date-option strong {
  display: block;
}

.date-option span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.date-option strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.date-option:has(input:checked) {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.availability-note {
  margin: 0 0 17px;
  color: #777168;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.no-times {
  grid-column: 1 / -1;
  padding: 24px;
  color: #716c63;
  background: rgb(24, 23, 20, 0.045);
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
}

.time-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.time-option:hover {
  border-color: var(--oxblood);
}

.time-option:has(input:checked) {
  color: var(--cream);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.booking-summary,
.confirmation-card {
  display: grid;
  gap: 9px;
  margin-bottom: 25px;
  padding: 17px;
  color: var(--cream);
  background: var(--ink);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(248, 244, 235, 0.12);
  font-size: 10px;
}

.summary-row:last-child {
  padding: 0;
  border: 0;
}

.summary-row span {
  color: rgb(248, 244, 235, 0.52);
}

.summary-row strong {
  text-align: right;
  font-weight: 500;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-fields label:last-child {
  grid-column: 1 / -1;
}

.form-fields label > span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
}

.form-fields label em {
  color: #8f8a80;
  font-style: normal;
  font-weight: 400;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font-size: 12px;
  resize: vertical;
  transition: border-color 0.2s;
}

.form-fields input:focus,
.form-fields textarea:focus {
  border-color: var(--oxblood);
}

.form-fields input.invalid {
  border-color: #b33636;
}

.terms-note {
  margin: 14px 0 0;
  color: #827d74;
  font-size: 9px;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 34px;
  border-top: 1px solid var(--line);
}

.booking-back {
  padding: 10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}

.booking-back[hidden] {
  visibility: hidden;
}

.booking-next {
  min-height: 48px;
  min-width: 155px;
}

.confirmation {
  padding-top: 55px;
  text-align: center;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--cream);
  background: var(--green);
  border-radius: 50%;
  font-size: 25px;
}

.confirmation > span {
  color: var(--oxblood);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.confirmation h3 {
  margin: 7px 0 10px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
}

.confirmation > p {
  color: #6f6a61;
  font-size: 12px;
}

.confirmation-card {
  max-width: 390px;
  margin: 30px auto;
  text-align: left;
}

.booking-done {
  min-width: 150px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 500;
  padding: 12px 18px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 8px 25px rgb(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s, transform 0.25s;
  font-size: 11px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.hero .reveal {
  animation: reveal-up 0.9s 0.2s ease both;
}

.hero h1.reveal { animation-delay: 0.34s; }
.hero-copy.reveal { animation-delay: 0.5s; }
.hero-demo-note.reveal { animation-delay: 0.58s; }
.hero-cta.reveal { animation-delay: 0.66s; }
.hero-meta.reveal { animation-delay: 0.75s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.finder {
  position: relative;
  color: var(--cream);
  background: var(--oxblood);
  overflow: hidden;
}

.finder::before {
  content: "";
  position: absolute;
  top: -34vw;
  left: -14vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgb(248, 244, 235, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgb(248, 244, 235, 0.025), 0 0 0 18vw rgb(248, 244, 235, 0.018);
  pointer-events: none;
}

.finder-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: start;
}

.finder-heading {
  position: sticky;
  top: 110px;
}

.finder-heading .display {
  font-size: clamp(66px, 7.2vw, 112px);
}

.finder-heading > p {
  max-width: 460px;
  margin: 42px 0 0;
  color: rgb(248, 244, 235, 0.68);
}

.finder-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.finder-assurance span {
  padding: 8px 11px;
  border: 1px solid rgb(248, 244, 235, 0.25);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-card {
  padding: clamp(28px, 4vw, 56px);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 28px 80px rgb(36, 12, 15, 0.28);
}

.finder-question + .finder-question {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.finder-question-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.finder-question-heading > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 50%;
  font-size: 8px;
}

.finder-question-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.finder-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.finder-choice {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.finder-choice:hover {
  border-color: var(--oxblood);
  transform: translateY(-2px);
}

.finder-choice.active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.finder-choice strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.finder-choice small {
  color: #777166;
  font-size: 10px;
  line-height: 1.35;
}

.finder-choice.active small {
  color: rgb(248, 244, 235, 0.6);
}

.finder-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-top: 46px;
  padding: 28px;
  color: var(--cream);
  background: var(--ink);
  border-left: 3px solid var(--gold);
  transition: background 0.3s, border-color 0.3s;
}

.finder-result.ready {
  background: var(--green);
  border-left-color: #91bf83;
}

.finder-result-kicker {
  display: block;
  margin-bottom: 9px;
  color: rgb(248, 244, 235, 0.5);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.finder-result h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.finder-result p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgb(248, 244, 235, 0.58);
  font-size: 12px;
}

.finder-result-meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 8px;
  margin-top: -12px;
}

.finder-result-meta[hidden] {
  display: none;
}

.finder-result-meta span {
  padding: 6px 9px;
  border: 1px solid rgb(248, 244, 235, 0.22);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-book {
  grid-row: 1;
  grid-column: 2;
  align-self: end;
  min-width: 190px;
  color: var(--cream);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.finder-book:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.service-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -48px 0 40px;
}

.service-toolbar > span {
  margin-right: 8px;
  color: rgb(248, 244, 235, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-toolbar button {
  min-height: 34px;
  padding: 0 13px;
  color: rgb(248, 244, 235, 0.6);
  background: transparent;
  border: 1px solid rgb(248, 244, 235, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.service-toolbar button:hover,
.service-toolbar button.active {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.service-item[hidden] {
  display: none;
}

.service-tag {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 7px;
  color: rgb(248, 244, 235, 0.55);
  border: 1px solid rgb(248, 244, 235, 0.18);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.barber-roster {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.barber-roster article {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.barber-roster article > span,
.barber-roster small {
  color: #777166;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.barber-roster strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.barber-roster p {
  margin: 0;
  color: #777166;
  font-size: 10px;
}

.standard {
  position: relative;
  color: var(--cream);
  background: var(--ink-soft);
  overflow: hidden;
}

.standard::after {
  content: "A";
  position: absolute;
  right: -0.05em;
  bottom: -0.36em;
  color: rgb(248, 244, 235, 0.025);
  font-family: var(--serif);
  font-size: min(52vw, 760px);
  line-height: 1;
  pointer-events: none;
}

.standard > .shell {
  position: relative;
  z-index: 1;
}

.standard-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 70px;
  align-items: end;
  margin-bottom: 74px;
}

.standard-heading > p {
  margin: 0 0 7px;
  color: rgb(248, 244, 235, 0.56);
}

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

.standard-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.3s, transform 0.3s;
}

.standard-card:hover {
  z-index: 1;
  background: var(--oxblood);
  transform: translateY(-8px);
}

.standard-card > span,
.standard-card small {
  color: rgb(248, 244, 235, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.standard-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 60px 0 34px;
  color: var(--gold);
  border: 1px solid rgb(248, 244, 235, 0.24);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
}

.standard-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.standard-card p {
  margin: 12px 0 32px;
  color: rgb(248, 244, 235, 0.55);
  font-size: 12px;
}

.standard-card small {
  margin-top: auto;
}

.section-heading > .work-intro {
  max-width: 390px;
  justify-self: end;
  color: #69645b;
  font-size: 13px;
}

.look-open {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.look-open img {
  width: 100%;
}

.look-expand {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgb(248, 244, 235, 0.92);
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity 0.25s, transform 0.25s;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look:hover .look-expand,
.look-open:focus-visible .look-expand {
  opacity: 1;
  transform: none;
}

.look-expand i {
  font-style: normal;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgb(9, 8, 7, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(14px);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-panel {
  position: relative;
  width: min(1320px, 96vw);
  height: min(900px, 92svh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  color: var(--cream);
  background: #0d0c0a;
  border: 1px solid rgb(248, 244, 235, 0.2);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-lightbox.open .lightbox-panel {
  transform: none;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  color: var(--cream);
  background: rgb(24, 23, 20, 0.75);
  border: 1px solid rgb(248, 244, 235, 0.45);
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
}

.lightbox-image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 24px;
  border-top: 1px solid rgb(248, 244, 235, 0.18);
}

.lightbox-footer > div > span {
  color: rgb(248, 244, 235, 0.42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lightbox-footer p {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 24px;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lightbox-controls button {
  width: 40px;
  height: 40px;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgb(248, 244, 235, 0.35);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-count {
  min-width: 42px;
  color: rgb(248, 244, 235, 0.55);
  text-align: center;
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid rgb(248, 244, 235, 0.35);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.25s;
}

.back-to-top:hover {
  background: var(--oxblood);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

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

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 9px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    display: block;
    background: currentcolor;
    transition: transform 0.3s;
  }

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

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

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: min(480px, 100%);
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 132px 36px 40px;
    color: var(--cream);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.35s, visibility 0.35s, transform 0.4s;
  }

  .site-header.menu-open {
    position: fixed;
    top: 0;
    color: var(--cream);
    border-bottom-color: rgb(255, 255, 255, 0.15);
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-block: 14px;
    border-bottom: 1px solid rgb(248, 244, 235, 0.14);
    font-family: var(--serif);
    font-size: 45px;
    line-height: 1;
  }

  .mobile-menu nav span {
    color: rgb(248, 244, 235, 0.4);
    font-family: var(--sans);
    font-size: 9px;
  }

  .mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    color: rgb(248, 244, 235, 0.6);
    font-size: 11px;
  }

  .mobile-menu-footer p {
    margin: 0;
  }

  .mobile-menu-footer a {
    color: var(--cream);
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgb(14, 13, 11, 0.92), rgb(14, 13, 11, 0.42) 70%, rgb(14, 13, 11, 0.12)), linear-gradient(0deg, rgb(12, 11, 10, 0.72), transparent 40%);
  }

  .intro-grid,
  .team,
  .visit,
  .faq,
  .portfolio-note-grid {
    gap: 70px;
  }

  .lookbook {
    grid-template-rows: 300px 300px;
  }

  .reviews-shell {
    grid-template-columns: 0.3fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    height: 76px;
    padding-inline: 18px;
  }

  .header-actions .button-small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgb(14, 13, 11, 0.82), rgb(14, 13, 11, 0.2) 110%), linear-gradient(0deg, rgb(12, 11, 10, 0.96) 0%, rgb(12, 11, 10, 0.36) 70%, rgb(12, 11, 10, 0.26) 100%);
  }

  .hero-content {
    padding: 0 0 164px;
  }

  .hero-kicker {
    width: 100%;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(68px, 18vw, 105px);
  }

  .hero-copy {
    max-width: 430px;
    margin-top: 34px;
  }

  .hero-meta {
    bottom: 18px;
  }

  .open-card {
    min-width: 0;
  }

  .intro-grid,
  .team,
  .visit,
  .faq,
  .footer-top,
  .portfolio-note-grid {
    grid-template-columns: 1fr;
  }

  .display {
    font-size: clamp(63px, 15vw, 102px);
  }

  .intro-grid {
    gap: 45px;
  }

  .intro-copy {
    max-width: 580px;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading > p {
    max-width: 530px;
  }

  .service-item {
    grid-template-columns: 38px 1fr 110px 48px;
  }

  .team {
    gap: 70px;
  }

  .team-photo-wrap {
    width: calc(100% - 36px);
  }

  .team-copy {
    padding: 0;
  }

  .work-heading .arrow-link {
    justify-self: start;
  }

  .lookbook {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 510px 300px 360px;
  }

  .look-tall {
    grid-row: auto;
    grid-column: span 2;
  }

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

  .reviews-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .review-score {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 0 30px;
    padding: 0 0 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .review-score > span {
    grid-column: 1 / -1;
  }

  .review-score strong {
    font-size: 96px;
  }

  .review-score p {
    max-width: 160px;
    margin-bottom: 0;
  }

  .visit-map {
    order: 2;
  }

  .visit-copy {
    order: 1;
  }

  .faq {
    gap: 55px;
  }

  .footer-top {
    gap: 65px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero-image {
    object-position: 78% center;
  }

  body {
    padding-bottom: 64px;
  }

  .announcement {
    justify-content: center;
    padding-inline: 14px;
    font-size: 9px;
  }

  .announcement .demo-banner-link {
    display: none;
  }

  .brand-type b {
    font-size: 13px;
  }

  .site-header.sticky .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: calc(100svh - 34px);
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .hero h1 {
    font-size: clamp(64px, 19vw, 89px);
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 28px;
    font-size: 15px;
  }

  .hero-demo-note {
    max-width: 330px;
    font-size: 7px;
  }

  .hero-cta {
    margin-top: 26px;
  }

  .hero-cta .button {
    min-height: 50px;
  }

  .play-link {
    display: none;
  }

  .rating-lockup {
    display: none;
  }

  .hero-meta {
    justify-content: flex-start;
  }

  .section {
    padding-block: 76px;
  }

  .section-label {
    margin-bottom: 31px;
  }

  .display {
    font-size: clamp(57px, 17vw, 79px);
  }

  .lead {
    font-size: 26px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .service-item {
    grid-template-columns: 26px 1fr auto;
    gap: 12px;
    min-height: 112px;
  }

  .service-name p {
    padding-right: 10px;
    font-size: 11px;
  }

  .service-meta {
    align-self: start;
    margin-top: 21px;
  }

  .service-meta span,
  .service-book {
    display: none;
  }

  .service-meta strong {
    font-size: 23px;
  }

  .photo-stamp {
    right: -37px;
    width: 90px;
    height: 90px;
  }

  .team {
    gap: 52px;
  }

  .team-photo-wrap > img {
    aspect-ratio: 4 / 5;
    object-position: center 35%;
  }

  .team-copy .display {
    margin-bottom: 38px;
  }

  .team-stats {
    gap: 12px;
  }

  .team-stats strong {
    font-size: 34px;
  }

  .team-stats span {
    font-size: 8px;
  }

  .lookbook {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 470px 260px 280px 420px;
  }

  .look-tall,
  .look-wide {
    grid-column: auto;
  }

  .look-quote {
    padding: 30px;
  }

  .review-carousel {
    min-height: 405px;
  }

  .review p {
    font-size: 31px;
  }

  .visit {
    gap: 55px;
  }

  .visit-copy .display,
  .faq-heading .display {
    font-size: 61px;
  }

  .hours div {
    font-size: 11px;
  }

  .map-card {
    right: 12px;
    bottom: 12px;
  }

  .final-cta h2 {
    margin-bottom: 38px;
    font-size: 24vw;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .footer-columns > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom div {
    display: none;
  }

  .mobile-book {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 180;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--cream);
    background: var(--oxblood);
    border: 0;
    cursor: pointer;
  }

  .mobile-book span {
    font-family: var(--serif);
    font-size: 21px;
  }

  .mobile-book strong {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .booking-header,
  .booking-demo-note,
  .booking-progress,
  .booking-step,
  .booking-footer {
    padding-inline: 20px;
  }

  .booking-header {
    padding-top: 19px;
    padding-bottom: 16px;
  }

  .booking-step {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .step-heading h3 {
    font-size: 32px;
  }

  .date-strip {
    gap: 4px;
  }

  .date-option strong {
    font-size: 20px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .form-fields label:last-child {
    grid-column: auto;
  }

  .booking-next {
    min-width: 142px;
  }

  .mobile-menu {
    padding-inline: 24px;
  }
}

@media (max-width: 1100px) {
  .finder-shell {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 48px;
  }

  .finder-heading {
    position: static;
  }

  .finder-result {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .finder-book {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

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

  .standard-card {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .finder-shell,
  .standard-heading {
    grid-template-columns: 1fr;
  }

  .finder-shell {
    gap: 54px;
  }

  .finder-heading > p {
    max-width: 580px;
  }

  .finder-card {
    padding: 34px;
  }

  .standard-heading {
    gap: 32px;
  }

  .standard-heading > p {
    max-width: 540px;
  }

  .work-intro {
    max-width: 520px;
    justify-self: start;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 580px) {
  .hero-content {
    padding-bottom: 96px;
  }

  .hero-meta {
    display: none;
  }

  .mobile-menu {
    justify-content: flex-start;
    gap: 32px;
    padding: 96px 22px 84px;
    overflow-y: auto;
  }

  .mobile-menu nav a {
    padding-block: 9px;
    font-size: 34px;
  }

  .mobile-menu-footer {
    margin-top: auto;
  }

  .finder::before {
    top: -120px;
    left: -160px;
    width: 430px;
    height: 430px;
    box-shadow: 0 0 0 60px rgb(248, 244, 235, 0.025), 0 0 0 120px rgb(248, 244, 235, 0.018);
  }

  .finder-heading .display {
    font-size: clamp(57px, 17vw, 79px);
  }

  .finder-heading > p {
    margin-top: 30px;
  }

  .finder-card {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 20px;
  }

  .finder-question + .finder-question {
    margin-top: 30px;
    padding-top: 28px;
  }

  .finder-question-heading h3 {
    font-size: 27px;
  }

  .finder-choices {
    grid-template-columns: 1fr;
  }

  .finder-choice {
    min-height: 82px;
  }

  .finder-result {
    gap: 24px;
    margin-top: 32px;
    padding: 22px;
  }

  .finder-result h3 {
    font-size: 29px;
  }

  .finder-result-meta {
    flex-wrap: wrap;
    margin-top: -4px;
  }

  .finder-book {
    width: 100%;
    min-width: 0;
  }

  .service-toolbar {
    flex-wrap: nowrap;
    margin: -24px -14px 30px;
    padding: 0 14px 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-toolbar::-webkit-scrollbar {
    display: none;
  }

  .service-toolbar > span,
  .service-toolbar button {
    flex: 0 0 auto;
  }

  .service-tag {
    display: none;
  }

  .barber-roster {
    margin-top: 38px;
  }

  .barber-roster article {
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
  }

  .barber-roster strong {
    font-size: 21px;
  }

  .barber-roster small {
    font-size: 7px;
  }

  .standard-heading {
    margin-bottom: 50px;
  }

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

  .standard-card {
    min-height: 270px;
    padding: 28px;
  }

  .standard-card:hover {
    transform: none;
  }

  .standard-icon {
    margin: 34px 0 25px;
  }

  .look-expand {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 1;
    transform: none;
    font-size: 0;
  }

  .look-expand i {
    font-size: 13px;
  }

  .gallery-lightbox {
    padding: 0;
  }

  .lightbox-panel {
    width: 100%;
    height: 100svh;
    border: 0;
  }

  .lightbox-image-wrap {
    padding: 64px 12px 16px;
  }

  .lightbox-footer {
    align-items: flex-end;
    padding: 16px;
  }

  .lightbox-footer > div > span {
    display: none;
  }

  .lightbox-footer p {
    max-width: 160px;
    font-size: 19px;
    line-height: 1.05;
  }

  .lightbox-controls {
    gap: 8px;
  }

  .lightbox-controls button {
    width: 38px;
    height: 38px;
  }

  .back-to-top {
    display: none;
  }
}

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

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