:root {
  --ink: #181511;
  --deep: #171411;
  --petrol: #2b2621;
  --petrol-soft: #433a32;
  --ivory: #faf9f6;
  --paper: #ffffff;
  --gold: #d4af5c;
  --gold-light: #f2e8d2;
  --clay: #8a5f18;
  --line: rgba(24, 21, 17, 0.14);
  --shadow: 0 24px 70px rgba(35, 27, 18, 0.13);
  --radius: 1.5rem;
  --wrap: min(1180px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--deep);
  transform: translateY(-150%);
}

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

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

.demo-bar {
  position: relative;
  z-index: 80;
  padding: 0.55rem 1rem;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: 156px;
  align-items: center;
  flex: 0 0 auto;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link,
.dropdown-toggle {
  padding: 0.65rem 0;
  color: rgba(24, 21, 17, 0.8);
  background: none;
  border: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.dropdown-toggle:hover,
.dropdown-toggle[aria-expanded="true"] {
  color: var(--clay);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 0.15rem 0.25rem 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 5;
  display: grid;
  width: 250px;
  padding: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.dropdown-panel a:hover {
  color: var(--deep);
  background: var(--ivory);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(24, 21, 17, 0.3);
  border-radius: 999px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  display: flex;
  margin: 0 0 1rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold-light);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.3vw, 7.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: -0.025em;
}

.serif-italic {
  color: var(--clay);
  font-style: normal;
}

.lead {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0.85rem 1.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

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

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  color: var(--deep);
  background: #fff;
  border-color: #fff;
}

.button-dark {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.button-dark:hover {
  color: var(--deep);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--deep);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background: none;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  max-width: 560px;
  margin-bottom: 2rem;
  color: rgba(24, 21, 17, 0.72);
}

.hero-art {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  border-radius: 48% 1rem 1rem 48% / 16% 1rem 1rem 16%;
  filter: saturate(0.78) sepia(0.08) contrast(1.03);
}

.hero-art::before {
  position: absolute;
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
  border: 1px solid rgba(138, 95, 24, 0.42);
  border-radius: 52% 1.4rem 1.4rem 52% / 18% 1.4rem 1.4rem 18%;
  content: "";
}

.rating-card {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  z-index: 2;
  width: min(230px, 62%);
  padding: 1.1rem 1.3rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.rating-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.rating-card span {
  display: block;
  margin-top: 0.45rem;
  color: #655f58;
  font-size: 0.77rem;
}

.rating-stars {
  color: var(--clay);
  letter-spacing: 0.08em;
}

.home-hero .eyebrow-light,
.page-hero .eyebrow-light {
  color: var(--clay);
}

.home-hero .button-outline-light,
.page-hero .button-outline-light {
  color: var(--ink);
  border-color: rgba(24, 21, 17, 0.42);
}

.home-hero .button-outline-light:hover,
.page-hero .button-outline-light:hover {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.trust-strip {
  color: var(--deep);
  background: var(--paper);
  border-block: 1px solid rgba(138, 95, 24, 0.28);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 128px;
  padding: 1.5rem;
  border-left: 1px solid rgba(24, 21, 17, 0.18);
}

.trust-item:last-child {
  border-right: 1px solid rgba(24, 21, 17, 0.18);
}

.trust-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clay);
}

.trust-item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-ivory {
  background: var(--ivory);
}

.section-dark {
  color: #fff;
  background: var(--deep);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.section-intro .lead {
  max-width: 620px;
}

.service-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius);
}

.service-card:nth-child(2) {
  transform: translateY(2.5rem);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 15, 12, 0.9) 100%);
  content: "";
}

.service-card:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.service-card-content {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.service-card-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.service-card-content a {
  color: var(--gold-light);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.real-image-stack {
  position: relative;
  min-height: 650px;
}

.real-image-stack .image-main {
  position: absolute;
  inset: 0 12% 8% 0;
  width: 88%;
  height: 92%;
  object-fit: cover;
  border-radius: 12rem 12rem 1rem 1rem;
}

.real-image-stack .image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 42%;
  object-fit: cover;
  border: 0.65rem solid var(--paper);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.statement-copy .lead {
  margin-bottom: 1.5rem;
}

.values-list {
  display: grid;
  margin: 2rem 0 2.2rem;
  padding: 0;
  gap: 0;
  list-style: none;
}

.values-list li {
  display: grid;
  padding: 1rem 0;
  grid-template-columns: 2.6rem 1fr;
  align-items: baseline;
  border-top: 1px solid var(--line);
}

.values-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.values-list span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.values-list strong {
  font-weight: 650;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-item {
  min-height: 290px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--deep);
}

.process-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 3rem;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.process-item p {
  color: rgba(255, 255, 255, 0.66);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.review-score {
  position: sticky;
  top: 130px;
}

.review-score strong {
  display: block;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.review-score p {
  margin: 1rem 0;
  color: #626866;
}

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

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

.review blockquote {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.25;
}

.review cite {
  color: #636967;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visit-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  color: #fff;
  background: var(--petrol);
  border-radius: var(--radius);
}

.visit-copy {
  padding: clamp(2rem, 6vw, 5rem);
}

.visit-copy address {
  margin: 0 0 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: normal;
  line-height: 1.2;
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.visit-art {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 2rem;
  place-items: center;
  overflow: hidden;
  color: var(--deep);
  background: var(--paper);
}

.visit-art::before,
.visit-art::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(24, 21, 17, 0.3);
  border-radius: 50%;
  content: "";
}

.visit-art::before {
  transform: translate(-35%, -35%);
}

.visit-art::after {
  transform: translate(35%, 35%);
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 180px;
  text-align: center;
}

.map-pin-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 1rem;
  place-items: center;
  color: #fff;
  background: var(--clay);
  border-radius: 50% 50% 50% 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  transform: rotate(-45deg);
}

.map-pin-mark span {
  transform: rotate(45deg);
}

.map-pin strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.page-hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.8rem, 8vw, 7.7rem);
}

.page-hero-copy .lead {
  color: rgba(24, 21, 17, 0.72);
}

.page-hero-media {
  position: relative;
  height: 470px;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 1rem 1rem 48% / 16% 1rem 1rem 16%;
}

.page-hero-media::after {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 1px solid rgba(138, 95, 24, 0.42);
  border-radius: 52% 1rem 1rem 52% / 18% 1rem 1rem 18%;
  content: "";
}

.anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.anchor-links {
  display: flex;
  overflow-x: auto;
  gap: 1.75rem;
  scrollbar-width: none;
}

.anchor-links::-webkit-scrollbar {
  display: none;
}

.anchor-links a {
  flex: 0 0 auto;
  padding: 1.1rem 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.anchor-links a:hover {
  color: var(--clay);
}

.service-section {
  scroll-margin-top: 145px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.service-detail-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-detail-grid.reverse .service-detail-media {
  order: 2;
}

.service-detail-media {
  position: sticky;
  top: 155px;
}

.service-detail-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  padding: 1.4rem 0;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.service-list article p {
  margin: 0;
  color: #656b69;
}

.service-list article h3 {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.history-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.history-year {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 15vw, 13rem);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.history-copy {
  max-width: 680px;
}

.salon-gallery {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 1rem;
}

.salon-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 1rem;
}

.salon-gallery img:nth-child(2) {
  height: 430px;
  margin-top: 4rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle {
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 1rem;
}

.principle:nth-child(2) {
  background: var(--paper);
}

.principle:nth-child(3) {
  color: var(--ink);
  background: var(--paper);
}

.principle p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card {
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background: var(--ivory);
  border-radius: var(--radius);
}

.contact-card-dark {
  color: #fff;
  background: var(--petrol);
}

.contact-card h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.contact-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 1.15rem 0;
  border-top: 1px solid currentColor;
  border-color: rgba(25, 27, 26, 0.16);
}

.contact-card-dark .contact-list li {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-list small {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.68;
}

.contact-list a,
.contact-list address {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: normal;
  line-height: 1.25;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.hours-list {
  display: grid;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  padding: 0.85rem 0;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.cta-band .eyebrow-light {
  color: #fff;
}

.cta-band::after {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 3rem;
}

.cta-grid h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.site-footer {
  color: #fff;
  background: #0d1715;
}

.footer-main {
  display: grid;
  padding-block: 4.5rem;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 3rem;
}

.footer-brand img {
  width: 155px;
  margin-bottom: 1.4rem;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-block: 1.25rem;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.mobile-action-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 2rem, 760px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 76px);
    padding: 2rem 1rem 7rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
  }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 0.75rem 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .dropdown-panel.is-open {
    display: grid;
    transform: none;
  }

  .dropdown-panel a {
    color: rgba(24, 21, 17, 0.78);
  }

  .dropdown-panel a:hover {
    color: var(--clay);
    background: transparent;
  }

  .nav-cta {
    margin-top: 1.5rem;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-art {
    min-height: 580px;
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(24, 21, 17, 0.18);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(24, 21, 17, 0.18);
  }

  .section-intro,
  .statement-grid,
  .review-layout,
  .visit-card,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .history-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
    gap: 1rem;
  }

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

  .service-card:first-child {
    grid-column: 1 / -1;
  }

  .service-card:nth-child(2) {
    transform: none;
  }

  .review-score,
  .service-detail-media {
    position: static;
  }

  .service-detail-grid.reverse .service-detail-media {
    order: 0;
  }

  .service-detail-media img {
    height: 520px;
  }

  .salon-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .salon-gallery img:nth-child(3) {
    grid-column: 1 / -1;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 1.35rem);
    --radius: 1.1rem;
  }

  body {
    padding-bottom: 68px;
  }

  .demo-bar {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    width: 112px;
  }

  .main-nav {
    min-height: calc(100vh - 68px);
  }

  h1 {
    font-size: clamp(3.2rem, 16.5vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.7rem);
  }

  .hero-grid,
  .page-hero-grid {
    padding-block: 3.75rem;
  }

  .hero-art {
    min-height: 460px;
  }

  .hero-photo {
    inset: 0;
    width: 100%;
    border-radius: 10rem 10rem 1rem 1rem;
  }

  .hero-art::before {
    display: none;
  }

  .rating-card {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .trust-item {
    min-height: 105px;
    padding: 1.1rem 0.9rem;
  }

  .trust-item strong {
    font-size: 1.75rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .service-collage,
  .process-grid,
  .salon-gallery,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child {
    min-height: 430px;
    grid-column: auto;
  }

  .real-image-stack {
    min-height: 490px;
  }

  .real-image-stack .image-main {
    inset: 0 7% 7% 0;
    width: 93%;
    height: 93%;
  }

  .real-image-stack .image-detail {
    width: 47%;
    height: 38%;
  }

  .process-item {
    min-height: auto;
  }

  .process-number {
    margin-bottom: 2rem;
  }

  .visit-art {
    min-height: 380px;
  }

  .page-hero-media {
    height: 410px;
  }

  .anchor-nav {
    top: 68px;
  }

  .service-detail-media img {
    height: 420px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .salon-gallery img,
  .salon-gallery img:nth-child(2),
  .salon-gallery img:nth-child(3) {
    height: 430px;
    margin-top: 0;
    grid-column: auto;
  }

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

  .footer-main {
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    height: 68px;
    padding: 0.55rem;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0.5rem;
    background: rgba(23, 20, 17, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    color: var(--deep);
    background: var(--gold);
    border-color: var(--gold);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
