:root {
  --font-sans: "Manrope";
  --paper: #ffffff;
  --paper-deep: #f2f0eb;
  --ink: #121212;
  --soft-ink: #5a554d;
  --heading-brown: #3b2b24;
  --accent: #9b6748;
  --line: rgba(18, 18, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  overflow-x: hidden;
}

p {
  font-family: var(--font-sans), Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 24px 4vw;
  color: white;
  background: linear-gradient(180deg, rgba(8, 8, 8, .66) 0%, rgba(8, 8, 8, .16) 78%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.header-socials {
  display: flex;
  gap: 7px;
}

.header-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, border 250ms ease, transform 250ms ease;
}

.header-socials svg {
  width: 14px;
  height: 14px;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  color: var(--ink);
  background: white;
  border-color: white;
  transform: translateY(-2px);
}

.brand {
  width: 150px;
}

.brand img {
  width: 100%;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  width: max-content;
  justify-self: center;
  padding: 13px 28px;
  background: rgba(12, 12, 12, .62);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-shadow: 0 1px 8px rgba(0, 0, 0, .65);
}

.nav a,
.header-cta,
.text-link,
.footer a {
  position: relative;
}

.nav a::after,
.text-link::after,
.footer a::after {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -6px;
  background: currentColor;
  transition: right 300ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer a:hover::after,
.footer a:focus-visible::after {
  right: 0;
}

.header-cta {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: white;
  color: var(--ink);
}

.menu-button {
  display: none;
}

.mobile-nav-index,
.mobile-nav-footer,
.menu-scrim {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #171717;
  color: white;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: -35px;
  width: calc(100% + 70px);
  height: calc(100% + 70px);
  object-fit: cover;
  filter: blur(24px) brightness(0.48) saturate(0.6);
  transform: scale(1.05);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.72) contrast(1.08);
  animation: hero-in 1.3s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.64) 0%, rgba(11, 11, 11, 0.07) 58%, rgba(11, 11, 11, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.58) 0%, transparent 48%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(5vw, calc((100vw - 1800px) / 2 + 72px));
  top: 50%;
  max-width: 840px;
  transform: translateY(-50%);
}

.kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker.light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-sans), Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.07em;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: 0.86;
  text-transform: uppercase;
}

h1 em,
h2 em {
  font-style: normal;
  font-weight: 750;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
  white-space: normal;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(48px, 5.45vw, 84px);
  line-height: .88;
}

.hero-copy h1 em {
  color: #d3c8bc;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 166px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease;
}

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

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

.button-outline {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

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

.hero-side {
  position: absolute;
  z-index: 2;
  right: max(6vw, calc((100vw - 1800px) / 2 + 72px));
  bottom: 12vh;
  width: min(360px, 34vw);
}

.hero-side > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.55;
}

.text-link {
  font-size: 15px;
}

.text-link span {
  margin-left: 12px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 13vh;
  width: 210px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-note span {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hero-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4vw;
  top: 44%;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.6);
}

.section {
  padding: clamp(88px, 11vw, 180px) 5vw;
}

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

h2 {
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.92;
}

.section-intro {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.7;
}

.services-section {
  background: var(--paper);
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(70px, 7vw, 105px);
  overflow: hidden;
}

.services-section h2,
.team-section h2,
.contact-section h2 {
  color: var(--heading-brown);
}

.services-title {
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(50px, 7vw, 96px);
  text-align: center;
}

.services-title .kicker {
  color: var(--soft-ink);
}

.services-title h2 {
  max-width: 16ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(54px, 7.2vw, 116px);
  line-height: 0.86;
  text-wrap: balance;
}

.service-tabs {
  display: flex;
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
  min-height: 170px;
  margin-bottom: 86px;
}

.service-mobile-nav {
  display: none;
}

.service-tab {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid var(--ink);
  border-right: 0;
  text-align: left;
  cursor: pointer;
  transition: flex 550ms cubic-bezier(.16,.7,.25,1), color 300ms ease;
}

.service-tab:last-child {
  border-right: 1px solid var(--ink);
}

.service-tab.is-active {
  flex: 1.55 1 0;
  color: white;
}

.service-tab > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.72) brightness(0.66);
  transform: scale(1.08);
  transition: opacity 320ms ease, transform 650ms cubic-bezier(.16,.7,.25,1);
}

.service-tab.is-active > img {
  opacity: 1;
  transform: scale(1);
}

.service-tab-copy,
.service-tab-mark {
  position: relative;
  z-index: 2;
}

.service-tab-copy {
  display: grid;
  gap: 7px;
}

.service-tab-copy strong {
  max-width: 240px;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1;
  text-transform: uppercase;
}

.service-tab-copy small {
  opacity: 0.72;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-tab-mark {
  flex: 0 0 auto;
  font-size: 22px;
}

.service-category {
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
  min-height: 0;
}

.category-intro {
  display: block;
  margin-bottom: 46px;
}

.category-intro h3 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.075em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
}

.category-intro > div {
  min-width: 0;
  max-width: 550px;
}

.category-intro p {
  margin: 4px 0 18px;
  font-size: 19px;
  line-height: 1.65;
}

.category-intro small {
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  margin-bottom: 78px;
}

.offer-grid-count-2 {
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
}

.offer-grid-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid-count-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offer-grid-compact .offer-card:nth-child(4n) {
  border-right: 0;
}

.offer-grid-compact .offer-card:last-of-type {
  border-right: 1px solid var(--ink);
}

.offer-card {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid var(--ink);
  border-right: 0;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease;
}

.offer-card:nth-child(4n) {
  border-right: 1px solid var(--ink);
}

.offer-card:hover,
.offer-card:focus-visible {
  color: white;
  background: var(--ink);
}

.offer-card > img {
  width: 45%;
  object-fit: cover;
  filter: saturate(0.7);
}

.offer-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.offer-topline strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
}

.offer-topline i {
  flex: 0 0 auto;
  font-style: normal;
  transition: transform 250ms ease;
}

.offer-card:hover .offer-topline i {
  transform: translate(3px, -3px);
}

.offer-card-content > span:not(.offer-topline) {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.offer-card-content .offer-description {
  display: -webkit-box;
  font-size: 16px;
  max-height: calc(1.45em * 4);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.offer-card-content .offer-staff {
  margin-top: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-card:hover .offer-card-content > span:not(.offer-topline) {
  color: rgba(255, 255, 255, 0.66);
}

.offer-card-content .offer-price {
  margin-top: auto;
  padding-top: 24px;
  color: var(--heading-brown);
  font-family: Georgia, serif;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  letter-spacing: -0.025em;
}

.offer-card:hover .offer-price,
.offer-card:focus-visible .offer-price {
  color: white;
}

.offer-center-mark {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: calc(100% + 38px);
  width: 148px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 14px 20px;
  background: var(--ink);
  border: 1px solid var(--ink);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.offer-center-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(12px);
  animation: modal-in 220ms ease both;
}

@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.service-modal {
  position: relative;
  width: min(100%, 1180px);
  height: min(760px, calc(100svh - 40px));
  max-height: calc(100svh - 40px);
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid var(--ink);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-image {
  min-height: 0;
  height: 100%;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.modal-copy {
  min-height: 0;
  padding: 28px 42px;
  overflow-y: auto;
}

.modal-copy h3 {
  margin: 0 0 14px;
  padding-right: 44px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-meta .modal-price {
  color: var(--heading-brown);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
}

.modal-copy > p:not(.kicker),
.modal-copy li {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.6;
}

.modal-copy h4 {
  margin: 30px 0 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.booking-steps span {
  padding-top: 9px;
  color: #aaa;
  border-top: 2px solid #ddd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-steps span.is-current {
  color: var(--heading-brown);
  border-color: var(--heading-brown);
}

.stylist-picker {
  margin-top: 16px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stylist-picker-heading {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.stylist-picker-heading > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  background: var(--heading-brown);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.stylist-picker-heading h4 {
  margin: 1px 0 5px;
  font-size: 15px;
}

.stylist-picker-heading p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
}

.stylist-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stylist-option {
  position: relative;
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 52px 1fr 22px;
  gap: 13px;
  align-items: center;
  padding: 8px 12px 8px 8px;
  color: var(--ink);
  background: #f3f0eb;
  border: 1px solid transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.stylist-option:hover,
.stylist-option:focus-visible,
.stylist-option.is-selected {
  background: white;
  border-color: var(--heading-brown);
  transform: translateY(-2px);
}

.stylist-option img {
  width: 52px;
  height: 54px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.72);
}

.stylist-option > span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.stylist-option strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.stylist-option small {
  color: var(--soft-ink);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.stylist-option i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: white;
  background: var(--heading-brown);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  padding-bottom: 1px;
}

.booking-confirmation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  animation: booking-reveal 280ms ease both;
}

.booking-confirmation > span {
  color: var(--heading-brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@keyframes booking-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-copy ul {
  padding-left: 18px;
  margin: 0 0 34px;
}

.modal-copy .includes-title {
  margin: 16px 0 8px;
  color: var(--heading-brown);
  letter-spacing: .1em;
}

.modal-copy .service-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.modal-copy .service-includes li {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 12px 9px 0;
  border-bottom: 1px solid var(--line);
}

.modal-copy .service-includes li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.modal-copy .service-includes li:nth-child(even) {
  padding-left: 14px;
}

.service-includes li > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.modal-copy .service-includes li > strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1.2fr;
  gap: 5vw;
  align-items: stretch;
}

.service-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #252525;
}

.service-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.7);
  transition: opacity 500ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}

.service-visual > img.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-visual-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 20px 0 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.service-visual-label span {
  font-family: Georgia, serif;
  font-size: 42px;
}

.service-visual-label p {
  max-width: 170px;
  margin: 0;
  text-align: right;
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.service-row {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.service-number {
  padding-top: 7px;
  color: var(--soft-ink);
  font-size: 13px;
}

.service-content {
  display: block;
}

.service-content strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.15vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.65;
  transition: max-height 450ms ease, opacity 350ms ease, margin 450ms ease;
}

.service-details small {
  color: var(--ink);
  white-space: nowrap;
}

.service-row.is-active .service-details {
  max-height: 130px;
  margin-top: 24px;
  opacity: 1;
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.service-row.is-active .service-arrow {
  color: white;
  background: var(--accent);
  transform: rotate(45deg);
}

.manifesto {
  padding: 14vw 8vw;
  color: var(--ink);
  background: white;
  text-align: center;
}

.manifesto p {
  margin: 0;
  font-size: clamp(48px, 8vw, 124px);
  font-weight: 780;
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.manifesto em {
  color: #a6a6a6;
  font-style: normal;
}

.team-section {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  padding-top: 0;
}

.team-section .section-heading,
.team-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
}

.brand-strip {
  position: relative;
  z-index: 2;
  margin: 0 -5vw clamp(70px, 8vw, 118px);
  padding: 0 5vw;
  color: white;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.brand-strip-label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-strip-label span {
  color: var(--accent);
}

.brand-strip-label strong {
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.brand-marquee {
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 26s linear infinite;
  will-change: transform;
}

.brand-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(60px, 8vw, 140px);
  width: max(100vw, 1080px);
  padding: clamp(30px, 3.6vw, 52px) clamp(40px, 5vw, 80px);
  box-sizing: border-box;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(72px, 7vw, 104px);
}

.brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-lavish {
  height: clamp(88px, 8vw, 118px);
}

.brand-lavish img {
  width: auto;
  height: clamp(88px, 8vw, 118px);
  max-height: none;
}

.brand-joico img {
  width: min(100%, 250px);
}

.brand-moroccanoil img {
  width: min(100%, 310px);
}

@keyframes brand-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.team-card {
  animation: team-rise 900ms cubic-bezier(.2,.7,.2,1) both;
}

.team-card:nth-child(2) { animation-delay: 140ms; }
.team-card:nth-child(3) { animation-delay: 280ms; }

@keyframes team-rise {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: translateY(0); }
}

.team-card-1 {
  margin-top: 0;
}

.team-card-2 {
  margin-top: 7vw;
}

.team-card-3 {
  margin-top: 2vw;
}

.team-card-4 {
  margin-top: 9vw;
}

.team-card-5 {
  margin-top: 4vw;
}

.team-photo {
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: #222;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.075);
  filter: saturate(1);
}

.team-index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 12px;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.team-card:hover .team-index {
  color: white;
  background: var(--accent);
  transform: rotate(12deg);
}

.team-hover-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px 16px;
  color: var(--ink);
  background: white;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(calc(100% + 20px));
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}

.team-hover-label i {
  font-style: normal;
  font-size: 16px;
}

.team-card:hover .team-hover-label {
  transform: translateY(0);
}

.team-hover-label:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.team-modal-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(10px);
  animation: team-modal-fade 300ms ease both;
}

.team-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr);
  width: min(1160px, 100%);
  height: min(700px, calc(100svh - 48px));
  max-height: calc(100svh - 48px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
  animation: team-modal-rise 500ms cubic-bezier(.2,.7,.2,1) both;
}

@keyframes team-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes team-modal-rise {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.team-modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.team-modal-close:hover,
.team-modal-close:focus-visible {
  color: var(--ink);
  background: var(--accent);
  transform: rotate(90deg);
}

.team-modal-image {
  position: relative;
  min-height: 0;
  margin: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.09), transparent 48%),
    #181818;
}

.team-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.82);
}

.team-modal-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--heading-brown);
  border-radius: 50%;
  font-size: 11px;
}

.team-modal-copy {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  align-content: center;
  padding: 40px 52px 40px 34px;
  overflow-y: auto;
}

.team-modal-eyebrow {
  width: fit-content;
  padding: 8px 12px;
  color: white;
  background: var(--heading-brown);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-modal-copy h3 {
  max-width: 560px;
  margin: 18px 0 20px;
  color: var(--heading-brown);
  font-size: clamp(36px, 4vw, 60px);
  line-height: .98;
  letter-spacing: -.055em;
}

.team-modal-copy > p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.6;
}

.team-modal-expertise {
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-modal-expertise small {
  color: var(--soft-ink);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-modal-expertise ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.team-modal-expertise li {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.team-modal-expertise li::before {
  content: none;
}

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

.team-modal-copy .button {
  align-self: flex-start;
}

.team-meta {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.team-meta h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.team-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.team-meta p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-section {
  color: white;
  background: #151515;
  overflow: hidden;
}

.reviews-top {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  align-items: end;
  gap: 8vw;
  margin-bottom: 80px;
}

.reviews-top,
.reviews-deck,
.reviews-deck-footer {
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
}

.reviews-top h2 {
  color: white;
}

.google-summary-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  color: white;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  border-radius: 0;
  box-shadow: none;
}

.google-g {
  display: inline-grid;
  place-items: center;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 42%, #fbbc05 42% 67%, #ea4335 67% 84%, #4285f4 84% 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.google-summary-card > div {
  display: grid;
  gap: 4px;
}

.google-summary-card strong {
  color: white;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.google-summary-card span:not(.google-g) {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: .08em;
}

.google-summary-card small {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reviews-deck {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.reviews-deck > .rtbr {
  display: contents;
}

.nospace-google-review-data[hidden] {
  display: none !important;
}

.google-summary-card b {
  font: inherit;
}

.review-deck-card {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(22px, 2vw, 36px);
  color: white;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  box-shadow: none;
  transition: color 350ms ease, background 350ms ease, transform 350ms ease;
}

.review-deck-card[hidden] {
  display: none !important;
}

.review-deck-card.is-active {
  background: linear-gradient(180deg, rgba(150, 96, 62, .15), rgba(150, 96, 62, .035));
  box-shadow: inset 0 3px 0 var(--accent);
}

.review-deck-card:last-child {
  border-right: 0;
}

.review-deck-card:hover {
  color: white;
  background: rgba(255, 255, 255, .035);
  transform: translateY(-4px);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.google-review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.google-review-source .google-g {
  font-size: 22px;
}

.google-review-source strong {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: none;
}

.review-stars {
  color: var(--accent);
}

.review-deck-card .quote-mark {
  margin: 26px 0 14px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 0.45;
}

.review-deck-card blockquote {
  display: -webkit-box;
  min-height: calc(3em * 1.34);
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.022em;
  overflow-wrap: anywhere;
}

.review-deck-card footer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-avatar {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  overflow: hidden;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.review-avatar::before {
  content: attr(data-initial);
}

.review-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.review-author strong {
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author > span {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.review-deck-card:hover .review-card-top,
.review-deck-card:hover .review-author > span {
  color: rgba(255, 255, 255, .72);
}

.reviews-deck-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  transition: color 200ms ease, border-color 200ms ease;
}

.reviews-google-link:hover,
.reviews-google-link:focus-visible {
  color: white;
  border-color: white;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-rating strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.review-rating > span {
  display: grid;
  gap: 4px;
  color: var(--accent);
}

.review-rating small {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  align-items: center;
}

.review-controls > span {
  min-width: 76px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .12em;
  text-align: center;
}

.review-controls button {
  width: 52px;
  height: 52px;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

.review-controls button + button {
  border-left: 0;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  color: var(--ink);
  background: white;
}

.review-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.review-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  animation: review-progress 5.2s linear both;
}

@keyframes review-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px 4vw;
  background: var(--paper);
}

@media (min-width: 1900px) {
  .contact-section {
    width: min(100%, 1980px);
    margin-right: auto;
    margin-left: auto;
  }
}

.contact-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 8vw;
  padding-bottom: clamp(46px, 6vw, 84px);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.contact-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .86;
  text-wrap: balance;
}

.contact-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 20px;
  line-height: 1.7;
}

.contact-copy {
  align-self: stretch;
  padding: 24px 28px 28px;
  border: 1px solid var(--ink);
}

.contact-copy-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-copy-head span {
  color: var(--accent);
}

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

.contact-links {
  display: grid;
  margin-top: 12px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms ease, color 250ms ease, background 250ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-right: 18px;
  padding-left: 18px;
  color: white;
  background: var(--ink);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  transition: color 250ms ease, background 250ms ease, border 250ms ease;
}

.contact-links a:hover .contact-icon,
.contact-links a:focus-visible .contact-icon {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.contact-link-copy {
  display: grid;
  gap: 3px;
}

.contact-link-copy small {
  color: var(--soft-ink);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-link-copy strong {
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 520;
}

.contact-links a i {
  font-size: 20px;
  font-style: normal;
  transition: transform 250ms ease;
}

.contact-links a:hover i,
.contact-links a:focus-visible i {
  transform: translate(4px, -4px);
}

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #d7d2c8;
  border: 1px solid var(--ink);
}

.map-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.map-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label strong {
  font-size: 16px;
}

.map-label span:last-child {
  text-align: right;
}

.contact-form {
  align-self: start;
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}

.contact-form label {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-form label > span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form input,
.contact-form select {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font-family: Georgia, serif;
  font-size: 22px;
}

.contact-form input::placeholder {
  color: #908a81;
}

.form-submit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.form-submit span {
  font-size: 24px;
  transition: transform 250ms ease;
}

.form-submit:hover span {
  transform: translate(4px, -4px);
}

.hours {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 4vw;
  padding: 24px 28px;
  color: white;
  background: var(--ink);
}

.hours-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-heading > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
}

.hours-heading > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hours-heading small {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  letter-spacing: .12em;
}

.hours-heading .kicker {
  color: white;
  margin: 0;
}

.hours dl {
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.22);
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 15px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  color: rgba(255,255,255,.58);
}

.footer {
  padding: clamp(64px, 7vw, 100px) 5vw 34px;
  color: white;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 3.5vw;
  padding: 44px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-grid,
.footer-bottom {
  width: min(100%, 1800px);
  margin-right: auto;
  margin-left: auto;
}

.footer-brand img {
  width: min(250px, 100%);
}

.footer-brand > p {
  margin: 18px 0 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  align-items: center;
  width: 42px;
  height: 42px;
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease, border 250ms ease, transform 250ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-nav,
.footer-contact,
.footer-hours,
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer p,
.footer a,
.footer span {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid > * > p {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
  color: white;
  font-size: 14px;
}

.legal-page {
  min-height: 100svh;
  color: var(--ink);
  background: var(--paper-deep);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  color: white;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.legal-header img {
  width: 150px;
  height: 38px;
  object-fit: contain;
}

.legal-header > a:last-child {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-hero {
  padding: clamp(80px, 10vw, 150px) 5vw clamp(60px, 8vw, 110px);
  color: white;
  background: var(--ink);
}

.legal-hero > span,
.legal-hero small {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 1200px;
  margin: 36px 0;
  font-size: clamp(52px, 8vw, 124px);
}

.legal-hero p {
  max-width: 700px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.72);
  font-size: 21px;
  line-height: 1.7;
}

.legal-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 5vw;
}

.legal-content article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4vw;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.legal-content article > span {
  color: var(--accent);
  font-size: 12px;
}

.legal-content h2 {
  margin: 0 0 24px;
  color: var(--heading-brown);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.legal-content p,
.legal-content li {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.8;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 28px 5vw;
  color: white;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.2);
}

.legal-footer > * {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-footer > *:last-child {
  justify-self: end;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom span,
.footer-bottom a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom .footer-signature {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 1.4em;
  justify-self: center;
  text-align: center;
  overflow: hidden;
}

.footer-signature-intro,
.footer-signature-brand {
  grid-area: 1 / 1;
  white-space: nowrap;
  will-change: opacity, transform;
}

.footer-signature-intro {
  animation: footer-signature-intro 7s ease-in-out infinite;
}

.footer-signature-brand {
  background: linear-gradient(100deg, #64d2ff, #0a84ff 30%, #bf5af2 64%, #ff375f);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: footer-signature-brand 7s ease-in-out infinite, footer-signature-gradient 8s ease infinite;
}

.footer-bottom .footer-back-to-top {
  justify-self: end;
}

@keyframes footer-signature-intro {
  0%, 38%, 100% { opacity: 1; transform: translateY(0); }
  48%, 90% { opacity: 0; transform: translateY(-8px); }
}

@keyframes footer-signature-brand {
  0%, 42%, 96%, 100% { opacity: 0; transform: translateY(8px); }
  52%, 88% { opacity: 1; transform: translateY(0); }
}

@keyframes footer-signature-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-signature-intro {
    display: none;
    animation: none;
  }

  .footer-signature-brand {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .offer-topline {
    gap: 6px;
  }

  .offer-topline strong {
    font-size: 14px;
  }

  .offer-featured > img {
    width: 36%;
  }

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

  .team-card-1,
  .team-card-2,
  .team-card-3,
  .team-card-4,
  .team-card-5 {
    margin-top: 0;
  }

  .team-card-2,
  .team-card-5 {
    margin-top: 7vw;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
    transition: border-color 350ms ease, background 350ms ease;
  }

  .site-header.is-menu-open {
    border-color: rgba(20, 20, 20, .18);
    background: transparent;
  }

  .brand {
    position: relative;
    z-index: 22;
    width: 130px;
  }

  .header-cta {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 22;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    padding: 10px 14px 10px 16px;
    color: white;
    background: rgba(10, 10, 10, .68);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: color 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  }

  .menu-button i {
    position: relative;
    display: block;
    width: 23px;
    height: 16px;
  }

  .menu-button i::before,
  .menu-button i::after {
    position: absolute;
    left: 0;
    width: 23px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 2px;
    transition: top 320ms ease, transform 320ms ease;
  }

  .menu-button i::before {
    top: 3px;
  }

  .menu-button i::after {
    top: 10px;
  }

  .site-header.is-menu-open .menu-button {
    color: var(--ink);
    background: white;
    border-color: rgba(18, 18, 18, .2);
    box-shadow: 0 8px 24px rgba(18, 18, 18, .12);
  }

  .site-header.is-menu-open .menu-button i::before,
  .site-header.is-menu-open .menu-button i::after {
    top: 7px;
  }

  .site-header.is-menu-open .menu-button i::before {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-button i::after {
    transform: rotate(-45deg);
  }

  .menu-scrim {
    position: fixed;
    z-index: 19;
    inset: 0;
    display: block;
    padding: 0;
    background: rgba(8, 8, 8, .62);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 380ms ease, visibility 380ms ease;
  }

  .menu-scrim.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: min(88vw, 420px);
    padding: 108px 24px 24px;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    border-radius: 0;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: visibility 480ms ease, transform 480ms cubic-bezier(.22,.8,.2,1);
  }

  .nav > a {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid rgba(20, 20, 20, .18);
    text-shadow: none;
    font-family: Georgia, serif;
    font-size: clamp(34px, 11vw, 54px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.045em;
    opacity: 0;
    transform: translateY(20px);
    transition: color 250ms ease, opacity 360ms ease, transform 480ms cubic-bezier(.2,.75,.2,1);
  }

  .nav > a::after {
    display: none;
  }

  .nav > a:active {
    color: var(--heading-brown);
  }

  .mobile-nav-index {
    display: inline;
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 350ms ease 220ms, transform 450ms ease 220ms;
  }

  .mobile-nav-book {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 18px;
    color: white;
    background: var(--ink);
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-nav-socials {
    display: flex;
    gap: 8px;
  }

  .mobile-nav-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(20,20,20,.35);
    border-radius: 50%;
  }

  .mobile-nav-socials svg {
    width: 14px;
    height: 14px;
  }

  .nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav.is-open > a,
  .nav.is-open .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open > a:nth-child(1) { transition-delay: 70ms; }
  .nav.is-open > a:nth-child(2) { transition-delay: 110ms; }
  .nav.is-open > a:nth-child(3) { transition-delay: 150ms; }
  .nav.is-open > a:nth-child(4) { transition-delay: 190ms; }

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

  .hero-copy {
    left: 24px;
    right: 24px;
    top: 25%;
    bottom: auto;
    transform: translateY(-50%);
  }

  h1 {
    font-size: clamp(43px, 12.5vw, 78px);
  }

  .hero-copy h1 {
    font-size: clamp(33px, 10.5vw, 54px);
    line-height: .92;
    letter-spacing: -.06em;
  }

  .hero-side {
    left: 24px;
    right: 24px;
    bottom: 7vh;
    width: auto;
    max-width: 420px;
  }

  .section {
    padding: 90px 20px;
    overflow-x: clip;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 58px;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 68px);
    line-height: .92;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

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

  .services-title {
    text-align: left;
  }

  .services-title h2 {
    max-width: 14ch;
    margin-left: 0;
  }

  .service-tabs {
    width: calc(100% + 20px);
    min-height: 150px;
    overflow-x: auto;
    margin-right: -20px;
    margin-bottom: 56px;
    scrollbar-width: none;
  }

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

  .service-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 14px;
  }

  .service-mobile-nav > span {
    color: var(--soft-ink);
    font-size: 13px;
    letter-spacing: .12em;
  }

  .service-mobile-nav > span strong {
    color: var(--ink);
    font-size: 15px;
  }

  .service-mobile-nav > div {
    display: flex;
    gap: 8px;
  }

  .service-mobile-nav button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 21px;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
  }

  .service-mobile-nav button > span {
    display: block;
    font-family: Arial, sans-serif;
    line-height: 1;
    transform: translateY(-1px);
  }

  .service-mobile-nav button:active {
    transform: scale(.92);
    background: var(--accent);
  }

  .service-tab,
  .service-tab.is-active {
    flex: 0 0 72vw;
  }

  .category-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .category-intro h3 {
    max-width: 100%;
    font-size: clamp(32px, 8.5vw, 54px);
    line-height: .94;
    letter-spacing: -.06em;
    overflow-wrap: anywhere;
  }

  .category-intro,
  .service-category,
  .section-heading,
  .reviews-top,
  .contact-heading {
    min-width: 0;
    max-width: 100%;
  }

  .section-intro,
  .category-intro p,
  .contact-heading > p {
    max-width: 42rem;
    font-size: clamp(18px, 3.8vw, 20px);
    line-height: 1.65;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .offer-card,
  .offer-card:nth-child(4n) {
    border: 1px solid var(--ink);
    margin: -1px 0 0 -1px;
  }

  .offer-featured {
    grid-column: 1 / -1;
  }

  .offer-center-mark {
    display: none;
  }

  .service-modal {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    height: calc(100svh - 30px);
    max-height: calc(100svh - 30px);
  }

  .modal-image {
    display: none;
  }

  .modal-copy {
    overflow-x: hidden;
  }

  .modal-copy h3 {
    max-width: 100%;
    font-size: clamp(32px, 8vw, 48px);
    line-height: .94;
    overflow-wrap: anywhere;
  }

  .modal-meta {
    flex-wrap: wrap;
  }

  .service-visual {
    min-height: 420px;
  }

  .service-row {
    grid-template-columns: 34px 1fr 38px;
    gap: 10px;
  }

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

  .team-grid {
    display: flex;
    gap: 18px;
    width: auto;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 min(44vw, 360px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .team-photo {
    aspect-ratio: 2 / 3;
  }

  .team-photo img {
    object-position: center top;
  }

  .team-card:hover .team-photo img {
    transform: none;
  }

  .brand-strip {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-set {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 42px;
    width: max(100vw, 760px);
    padding: 26px 42px;
  }

  .team-card-1,
  .team-card-2,
  .team-card-3,
  .team-card-4,
  .team-card-5 {
    grid-column: auto;
    margin-top: 0;
  }

  .team-card-2 {
    margin-left: 0;
  }

  .team-card-5 {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .team-hover-label {
    transform: translateY(0);
  }

  .team-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 260px minmax(0, 1fr);
    width: min(680px, 100%);
    height: calc(100svh - 30px);
    max-height: calc(100svh - 30px);
  }

  .team-modal-image {
    min-height: 0;
    max-height: none;
    margin: 12px;
  }

  .team-modal-image img {
    object-position: center 24%;
  }

  .team-modal-copy {
    align-content: start;
    padding: 24px 28px 28px;
  }

  .reviews-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .review-deck-card {
    flex-basis: 50%;
    min-height: 270px;
    padding: 22px 18px;
    animation: review-enter 500ms cubic-bezier(.2,.7,.2,1) both;
  }

  .review-deck-card .quote-mark {
    margin: 20px 0 12px;
    font-size: 50px;
  }

  .review-deck-card blockquote {
    font-size: 15px;
  }

  .review-deck-card footer {
    padding-top: 22px;
  }

  @keyframes review-enter {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-heading > p {
    max-width: 560px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 460px;
  }

  .hours {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 28px;
  }

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

  .footer-bottom .footer-signature {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 8px;
  }
}

@media (max-width: 560px) {
  .legal-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .legal-header img {
    width: 125px;
  }

  .legal-content article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

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

  .legal-footer > *:last-child {
    justify-self: start;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .team-grid {
    gap: 14px;
  }

  .team-card {
    flex-basis: 68vw;
  }

  .team-card-5 {
    grid-column: auto;
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-side .button {
    min-width: 0;
    min-height: 48px;
    flex: 1;
  }

  .service-visual {
    min-height: 360px;
  }

  .services-title h2 {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  .contact-heading h2 {
    max-width: 12ch;
    font-size: clamp(36px, 10.5vw, 54px);
    overflow-wrap: anywhere;
  }

  .service-tabs {
    min-height: 135px;
  }

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

  .offer-featured {
    grid-column: auto;
    flex-direction: column;
  }

  .offer-featured > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center 45%;
  }

  .service-modal-backdrop {
    padding: 10px;
  }

  .team-modal-backdrop {
    padding: 10px;
  }

  .team-modal {
    grid-template-rows: clamp(230px, 31svh, 270px) minmax(0, 1fr);
    height: calc(100svh - 20px);
    max-height: calc(100svh - 20px);
  }

  .team-modal-image {
    min-height: 0;
    margin: 8px;
  }

  .team-modal-image img {
    object-position: center 24%;
  }

  .team-modal-copy h3 {
    margin: 14px 0 16px;
    font-size: clamp(29px, 9vw, 38px);
    line-height: .94;
    overflow-wrap: anywhere;
  }

  .team-modal-copy {
    padding: 18px 20px 22px;
  }

  .team-modal-copy > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .team-modal-expertise {
    margin: 18px 0;
  }

  .team-modal-expertise ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-modal-expertise li {
    min-height: 34px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: .95;
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .service-modal {
    max-height: calc(100svh - 20px);
  }

  .modal-copy {
    padding: 22px 18px 28px;
  }

  .modal-copy h3 {
    padding-right: 38px;
    font-size: clamp(28px, 9vw, 38px);
  }

  .modal-copy > p:not(.kicker),
  .modal-copy li {
    font-size: 16px;
    line-height: 1.5;
  }

  .booking-steps {
    margin-bottom: 24px;
  }

  .stylist-options {
    grid-template-columns: 1fr;
  }

  .stylist-option {
    min-height: 78px;
    grid-template-columns: 64px minmax(0, 1fr) 22px;
    gap: 10px;
  }

  .stylist-option img {
    width: 64px;
    height: 66px;
    object-position: center 12%;
  }

  .stylist-option strong {
    font-size: clamp(17px, 5.5vw, 21px);
    overflow-wrap: anywhere;
  }

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

  .modal-copy .service-includes li:nth-child(odd) {
    border-right: 0;
  }

  .modal-copy .service-includes li:nth-child(even) {
    padding-left: 0;
  }

  .booking-confirmation {
    position: sticky;
    z-index: 4;
    bottom: -30px;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 14px 20px 18px;
    background: white;
    border-top: 1px solid var(--ink);
    box-shadow: 0 -12px 24px rgba(20, 20, 20, .08);
  }

  .booking-confirmation .button {
    width: 100%;
  }

  .service-content strong {
    font-size: 28px;
  }

  .map-label {
    grid-template-columns: 1fr auto;
  }

  .map-label span:first-child {
    display: none;
  }

  .review-deck-card {
    min-height: 240px;
    padding: 20px 14px;
  }

  .review-deck-card .quote-mark {
    margin: 16px 0 10px;
    font-size: 42px;
  }

  .review-deck-card blockquote {
    min-height: calc(3em * 1.38);
    font-size: 13px;
    line-height: 1.38;
  }

  .review-card-top {
    font-size: 10px;
  }

  .google-review-source .google-g {
    font-size: 18px;
  }

  .google-review-source strong {
    display: none;
  }

  .review-deck-card footer {
    gap: 9px;
    padding-top: 18px;
  }

  .review-avatar {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 13px;
  }

  .review-author strong {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .review-author > span {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .reviews-deck-footer {
    align-items: end;
  }

  .reviews-google-link {
    order: 3;
    flex-basis: 100%;
    font-size: 9px;
  }

  .review-rating strong {
    font-size: 34px;
  }

  .review-controls > span {
    display: none;
  }

  .contact-links a {
    grid-template-columns: 46px 1fr auto;
    gap: 12px;
  }

  .contact-link-copy,
  .contact-link-copy strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-copy {
    padding: 20px;
  }

  .hours {
    padding: 22px 20px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

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

  .footer a,
  .footer p,
  .footer span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 33px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .offer-card > img {
    width: 40%;
  }

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

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-tabs {
    width: calc(100% + 16px);
    margin-right: -16px;
  }

  .modal-close,
  .team-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress theme integration */
[hidden] {
  display: none !important;
}

body.nospace-page-locked {
  overflow: hidden;
}

#services-heading,
#team-heading,
#reviews-heading,
#contact-heading {
  scroll-margin-top: clamp(20px, 4vw, 56px);
}

body.admin-bar .site-header {
  top: 32px;
}

.header-socials svg,
.mobile-nav-socials svg,
.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-socials svg rect,
.header-socials svg circle:not(.is-fill),
.mobile-nav-socials svg rect,
.mobile-nav-socials svg circle:not(.is-fill),
.footer-socials svg rect,
.footer-socials svg circle:not(.is-fill) {
  fill: none;
}

.booking-page {
  min-height: 100svh;
  color: var(--ink);
  background:
    linear-gradient(rgba(18,18,18,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,18,18,.035) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 42px 42px;
}

.booking-page-header {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 90px);
  color: white;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.booking-page-header img {
  width: 154px;
  height: auto;
}

.booking-back-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-back-link i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-style: normal;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.booking-back-link:hover i,
.booking-back-link:focus-visible i {
  color: var(--ink);
  background: white;
  transform: translateX(-3px);
}

.booking-page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(52px, 6vw, 92px) clamp(24px, 5vw, 90px) 106px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 28%, rgba(155,103,72,.28), transparent 27%),
    linear-gradient(115deg, #111 0%, #161311 55%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.booking-page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8vw;
  width: 1px;
  background: rgba(255,255,255,.12);
  transform: rotate(18deg) scaleY(1.4);
}

.booking-hero-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}

.booking-hero-index span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.booking-hero-index i {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,.28);
}

.booking-hero-title p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.booking-hero-title h1 {
  max-width: 950px;
  margin: 15px 0 -7px;
  font-size: clamp(48px, 5.45vw, 84px);
  line-height: .88;
  letter-spacing: -.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.booking-hero-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  padding: 20px 0 4px 26px;
  border-left: 1px solid rgba(255,255,255,.24);
}

.booking-hero-note > span {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .16em;
}

.booking-hero-note p {
  max-width: 260px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.6;
}

.booking-panel-shell {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  margin: -64px auto clamp(56px, 7vw, 110px);
  background: white;
  border: 1px solid rgba(18,18,18,.2);
  box-shadow: 0 30px 90px rgba(18,18,18,.13);
}

.booking-panel-heading {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.booking-panel-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--heading-brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.booking-panel-heading > span i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(155,103,72,.12);
}

.booking-panel-heading p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .04em;
}

.booking-panel-wrap {
  min-height: 420px;
  padding: clamp(20px, 3vw, 38px);
}

/* Center only the Booknetic root block; its internal design remains untouched. */
.booking-panel-wrap > .booknetic_appointment {
  margin-right: auto;
  margin-left: auto;
}

.nospace-booknetic-notice {
  padding: 26px;
  color: #60402e;
  background: #f3ece6;
  border: 1px solid #c9a98f;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 700px) {
  .booking-page-header {
    min-height: 78px;
    padding: 18px 20px;
  }

  .booking-page-header img {
    width: 124px;
  }

  .booking-back-link {
    gap: 0;
  }

  .booking-back-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .booking-back-link i {
    width: 40px;
    height: 40px;
  }

  .booking-page-hero {
    min-height: 290px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 48px 20px 80px;
  }

  .booking-hero-index {
    min-height: 140px;
  }

  .booking-hero-title h1 {
    margin-top: 13px;
    font-size: clamp(34px, 10.5vw, 54px);
    line-height: .92;
    letter-spacing: -.055em;
    white-space: nowrap;
  }

  .booking-hero-note {
    grid-column: 2;
    gap: 8px;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .booking-hero-note > span {
    display: none;
  }

  .booking-hero-note p {
    font-size: 16px;
  }

  .booking-panel-shell {
    width: calc(100% - 24px);
    margin-top: -42px;
    margin-bottom: 48px;
  }

  .booking-panel-heading {
    min-height: 58px;
    padding: 14px 16px;
  }

  .booking-panel-heading p {
    display: none;
  }

  .booking-panel-wrap {
    padding: 12px;
  }
}
