:root {
  --ink: #302b27;
  --muted: #67615c;
  --paper: #ffffff;
  --sand: #f8f6f3;
  --taupe: #9c8f85;
  --mist: #f7f7f5;
  --coffee: #34302d;
  --line: rgba(48, 43, 39, 0.12);
  --white: #fff;
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 14px;
  --space-1: 4px;
  --space-2: 8px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --shadow-sm: 0 1px 2px rgba(48, 43, 39, 0.05);
  --shadow-md: 0 10px 28px rgba(48, 43, 39, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding: var(--space-4) clamp(30px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-button {
  justify-self: end;
  min-width: 128px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: #918982;
  color: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-button:hover,
.hero-button:hover,
.button:hover,
.floating-appointment:hover {
  transform: translateY(-1px);
}

.nav-button:hover,
.floating-appointment:hover {
  background: #7f7771;
}

.brand {
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.brand strong {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.menu-toggle {
  display: block;
  justify-self: start;
  width: 42px;
  height: 34px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 66px 16px auto;
  z-index: 29;
  display: grid;
  gap: 2px;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.hero {
  position: relative;
  display: block;
  min-height: 505px;
  background: #dedbd7;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 78px 0 60px clamp(30px, 7vw, 90px);
  color: var(--white);
}

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

.hero-media img {
  object-position: 76% 34%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28, 28, 28, 0.68) 0%, rgba(56, 56, 56, 0.36) 38%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.monogram {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 13px;
  color: #8d8178;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3f0ec;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.9vw, 76px);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero-copy p {
  max-width: 62ch;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.65;
}

.hero-button {
  display: inline-flex;
  min-width: 192px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #918982;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-button:hover {
  background: #7f7771;
  box-shadow: var(--shadow-md);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #918982;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: var(--shadow-sm);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #7f7771;
  box-shadow: var(--shadow-md);
}

.button.muted {
  background: #918982;
  color: var(--white);
}

.button.light {
  background: #ffffff;
  color: #746c66;
}

.button.light:hover {
  background: #f4f4f2;
}

.tile-strip {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 29vw, 358px);
  justify-content: start;
  gap: var(--space-8);
  max-width: none;
  margin: 0;
  padding: 80px 20px var(--space-16);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.tile-strip::-webkit-scrollbar {
  display: none;
}

.image-tile {
  position: relative;
  height: 282px;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.image-tile::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(38, 27, 20, 0.45), transparent);
}

.image-tile span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.strip-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 44px;
  height: 44px;
  align-self: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 40px;
  line-height: 0.8;
}

.strip-left {
  left: 36px;
}

.strip-right {
  right: 36px;
}

.floating-appointment {
  position: absolute;
  right: 30px;
  bottom: 24px;
  z-index: 4;
  align-self: end;
  min-width: 236px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  background: #918982;
  color: var(--white);
  font-size: 21px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: background 180ms ease, transform 180ms ease;
}

.editorial-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.7fr) minmax(260px, 0.95fr);
  gap: var(--space-8);
  align-items: center;
  padding: 72px clamp(24px, 14vw, 180px);
  background: var(--white);
  border-top: 1px solid rgba(61, 52, 46, 0.06);
  border-bottom: 1px solid rgba(61, 52, 46, 0.06);
}

.mosaic {
  display: grid;
  gap: var(--space-6);
}

.mosaic-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin: 0;
  background: #f1efec;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.mosaic-card.wide {
  min-height: 255px;
}

.mosaic-card.soft {
  min-height: 380px;
}

.mosaic-card figcaption {
  position: absolute;
  left: 16px;
  top: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.statement p,
.split-copy p,
.pricing-copy p,
.band-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px;
}

.treatment-list article {
  min-height: 270px;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.treatment-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 800;
}

.treatment-list p {
  color: var(--muted);
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 20px;
  scroll-margin-top: 126px;
}

.service-column {
  display: grid;
  gap: 42px;
}

.service-column.right {
  padding-top: 82px;
}

.services-intro {
  min-height: 164px;
  display: grid;
  align-content: start;
  justify-items: start;
}

.services-intro h2 {
  max-width: 430px;
  margin-bottom: 24px;
  color: var(--taupe);
  font-size: clamp(44px, 5vw, 66px);
}

.service-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow-sm);
}

.service-card.large {
  min-height: 332px;
}

.service-card.medium {
  min-height: 310px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(25, 22, 20, 0.46), transparent);
}

.service-card span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px;
}

.split-section.reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 1fr);
}

.split-image {
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.split-image.tall {
  height: 520px;
}

.split-copy {
  max-width: 470px;
}

.social-band {
  padding: 72px 20px 80px;
  background: var(--white);
  text-align: center;
}

.band-copy {
  max-width: 620px;
  margin: 0 auto 42px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 940px;
  margin: 0 auto;
}

.social-grid img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.instagram-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instagram-feature:hover {
  border-color: rgba(48, 43, 39, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.instagram-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #918982;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.instagram-copy {
  display: grid;
  gap: 2px;
}

.instagram-copy strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.instagram-copy em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.instagram-arrow {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.reviews {
  padding: 72px 20px 80px;
  background: #f8f8f6;
}

.center-heading {
  text-align: center;
}

.review-slider {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 31%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 168px;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(61, 52, 46, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.review-card span {
  display: block;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 800;
  color: var(--coffee);
}

.review-card p {
  margin: 0;
  color: #5e554d;
  font-size: 13px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(42px, 7vw, 90px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px;
}

.price-list {
  border-top: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

  .price-row strong {
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.loyalty {
  max-width: 1120px;
  margin: -28px auto 0;
  padding: 0 20px 40px;
}

.loyalty-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.loyalty-count {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(48, 43, 39, 0.18);
  border-radius: 50%;
  background: #f8f8f6;
  color: #918982;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.loyalty-copy {
  max-width: 660px;
}

.loyalty-copy h2 {
  margin-bottom: 14px;
}

.loyalty-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.product-care {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 20px 72px;
}

.product-care-copy {
  max-width: 500px;
}

.product-care-copy p:not(.eyebrow) {
  color: var(--muted);
}

.product-care-images {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: var(--space-4);
  align-items: end;
}

.product-care-images img {
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-care-images img:nth-child(2) {
  height: 330px;
}

.inspiration {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px 88px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.article-grid img {
  height: 300px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-grid span {
  color: var(--taupe);
  font-size: 10px;
  font-weight: 800;
}

.article-grid h3 {
  max-width: 280px;
  font-size: 28px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: var(--space-12);
  padding: var(--space-16) clamp(24px, 14vw, 180px);
  background: #746c66;
  color: var(--white);
}

.cta p,
.contact-details p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  gap: var(--space-2);
}

.contact-details p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  margin: 0;
}

.contact-details span {
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(24px, 14vw, 180px);
  background: #746c66;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.treatment-page {
  background: var(--white);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 82px 20px 64px;
}

.subpage-copy h1 {
  color: var(--ink);
}

.subpage-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.subpage-media {
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.subpage-details {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 20px 86px;
}

.detail-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--mist);
}

.detail-panel h2 {
  font-size: 38px;
}

.detail-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-panel li + li {
  margin-top: 10px;
}

.subpage-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

  .brand {
    grid-column: 2;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
  }

  .editorial-block,
  .split-section,
  .split-section.reverse,
  .pricing,
  .cta,
  .subpage-hero,
  .subpage-details {
    grid-template-columns: 1fr;
  }

  .subpage-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-copy {
    padding: 66px 24px 64px;
  }

  .hero-media {
    min-height: 0;
  }

  .editorial-block {
    padding: 54px 20px;
  }

  .statement {
    max-width: 520px;
  }

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

  .services-showcase {
    gap: 30px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 86px;
    padding-inline: 16px;
  }

  .brand span {
    font-size: 9px;
  }

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

  .nav-button {
    min-width: 0;
    padding: 10px 12px;
    font-size: 12px;
  }

  .nav-button::before {
    content: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 39px;
  }

  .monogram {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(24, 24, 24, 0.8) 0%, rgba(50, 50, 50, 0.54) 58%, rgba(255, 255, 255, 0.04) 100%),
      linear-gradient(0deg, rgba(24, 24, 24, 0.12), transparent 42%);
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-button {
    min-width: 170px;
    font-size: 15px;
  }

  .tile-strip {
    justify-content: start;
    grid-auto-columns: 68vw;
    gap: 18px;
    padding: 34px 16px 52px;
  }

  .image-tile {
    height: 260px;
  }

  .strip-arrow,
  .floating-appointment {
    display: none;
  }

  .editorial-block {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "mosaic statement"
      "mosaic soft";
    align-items: start;
    gap: 20px;
    padding: 56px 20px 64px;
  }

  .mosaic {
    grid-area: mosaic;
    gap: 20px;
  }

  .statement {
    grid-area: statement;
    align-self: center;
    max-width: none;
  }

  .mosaic-card.soft {
    grid-area: soft;
  }

  .statement h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 0.98;
  }

  .statement p {
    display: none;
  }

  .statement .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .editorial-block .mosaic-card,
  .editorial-block .mosaic-card.wide,
  .editorial-block .mosaic-card.soft {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1.08;
  }

  .editorial-block .mosaic-card figcaption {
    left: 12px;
    top: 12px;
    font-size: 14px;
    line-height: 1;
  }

  .split-image,
  .split-image.tall {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 4.7;
  }

  .split-section,
  .split-section.reverse {
    gap: 28px;
    padding: 44px 20px;
  }

  .split-section.reverse {
    padding-top: 22px;
  }

  .split-section.reverse .split-copy {
    order: 2;
  }

  .split-section.reverse .split-image {
    order: 1;
  }

  .split-copy h2 {
    margin-bottom: 14px;
  }

  .treatment-list {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 50px 20px 58px;
    scroll-margin-top: 96px;
  }

  .service-column,
  .service-column.right {
    gap: 18px;
    padding-top: 0;
  }

  .services-intro {
    min-height: 150px;
    justify-content: start;
    padding-top: 12px;
  }

  .services-intro h2 {
    max-width: 170px;
    margin-bottom: 14px;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 0.98;
  }

  .services-intro .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .service-card,
  .service-card.large,
  .service-card.medium {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 0.84;
  }

  .service-card span {
    left: 10px;
    bottom: 10px;
    font-size: 15px;
  }

  .social-band {
    padding: 38px 20px 44px;
  }

  .band-copy {
    margin-bottom: 24px;
  }

  .band-copy h2 {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .instagram-feature {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 18px;
    padding: 14px;
  }

  .instagram-mark {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .instagram-copy strong {
    font-size: 23px;
  }

  .instagram-copy em {
    font-size: 10px;
    line-height: 1.3;
  }

  .instagram-arrow {
    display: none;
  }

  .reviews {
    padding: 38px 20px 42px;
  }

  .reviews h2 {
    margin-bottom: 22px;
    font-size: 36px;
  }

  .inspiration {
    padding: 42px 20px 54px;
  }

  .inspiration h2 {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .treatment-list {
    padding-block: 48px;
    gap: 10px;
  }

  .treatment-list article {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 22px 20px;
    border-radius: var(--radius-lg);
  }

  .treatment-list article span {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }

  .treatment-list article h3 {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .treatment-list article p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }

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

  .slider-btn {
    display: none;
  }

  .review-track {
    grid-auto-columns: 76vw;
    margin-right: -20px;
    padding-right: 20px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price-row span {
    font-size: 26px;
  }

  .loyalty {
    margin-top: -18px;
    padding: 0 20px 26px;
  }

  .loyalty-card {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .loyalty-count {
    width: 54px;
    height: 54px;
    font-size: 32px;
  }

  .loyalty-copy .eyebrow {
    margin-bottom: 8px;
  }

  .loyalty-copy h2 {
    margin-bottom: 8px;
    font-size: 29px;
  }

  .loyalty-copy p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-care {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 20px 42px;
  }

  .product-care-copy {
    max-width: none;
  }

  .product-care-copy h2 {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .product-care-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-care-images img,
  .product-care-images img:nth-child(2) {
    height: auto;
    aspect-ratio: 1 / 1.18;
  }

  .article-grid img {
    height: auto;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 10px;
  }

  .article-grid span {
    font-size: 9px;
  }

  .article-grid h3 {
    font-size: 20px;
    line-height: 1.05;
  }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .subpage-hero {
    padding: 42px 20px 32px;
  }

  .subpage-copy h1 {
    font-size: 48px;
  }

  .subpage-copy p {
    font-size: 16px;
  }

  .subpage-details {
    padding: 24px 20px 54px;
  }

  .detail-panel {
    padding: 22px;
  }

  .detail-panel h2 {
    font-size: 32px;
  }
}
