@font-face {
  font-family: "Raleway Local";
  src: url("fonts/raleway-latin-ext.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Raleway Local";
  src: url("fonts/raleway-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Raleway Local";
  src: url("fonts/raleway-latin-ext-italic.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Raleway Local";
  src: url("fonts/raleway-latin-italic.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Manrope Local";
  src: url("fonts/manrope-latin-ext.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Manrope Local";
  src: url("fonts/manrope-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --cream: #f3eee7;
  --paper: #fbf8f4;
  --plum: #4c1631;
  --plum-deep: #2d0b1c;
  --rose: #8c3e61;
  --gold: #c9a46b;
  --ink: #231a1f;
  --muted: #786d72;
  --font-cormorant: "Raleway Local";
  --font-manrope: "Manrope Local";
  --content-width: 1140px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

main {
  overflow: clip;
}

::selection {
  background: var(--rose);
  color: white;
}

.scroll-progress {
  height: 3px;
  inset: 0 0 auto;
  pointer-events: none;
  position: fixed;
  z-index: 80;
}

.scroll-progress span {
  background: linear-gradient(90deg, var(--rose), #d8a5ba);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(.22, 1, .36, 1),
    transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.js [data-reveal="left"] {
  transform: translateX(-42px);
}

.js [data-reveal="right"] {
  transform: translateX(42px);
}

.js [data-reveal="image"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  transform: none;
  transition: clip-path 950ms var(--ease-out);
}

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

.js [data-reveal="left"].is-visible,
.js [data-reveal="right"].is-visible {
  transform: translateX(0);
}

.js [data-reveal="image"].is-visible {
  clip-path: inset(0);
}

.js .gallery-grid[data-reveal] figure,
.js .service-list[data-reveal] .service-item,
.js .hair-grid[data-reveal] .hair-card,
.js .price-grid[data-reveal] .price-group {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(.22, 1, .36, 1),
    transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.js .gallery-grid[data-reveal].is-visible figure,
.js .service-list[data-reveal].is-visible .service-item,
.js .hair-grid[data-reveal].is-visible .hair-card,
.js .price-grid[data-reveal].is-visible .price-group {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid figure:nth-child(2),
.service-item:nth-child(2),
.hair-card:nth-child(2),
.price-group:nth-child(2) { transition-delay: 70ms; }

.gallery-grid figure:nth-child(3),
.service-item:nth-child(3),
.hair-card:nth-child(3),
.price-group:nth-child(3) { transition-delay: 140ms; }

.gallery-grid figure:nth-child(4),
.service-item:nth-child(4),
.hair-card:nth-child(4) { transition-delay: 210ms; }

.gallery-grid figure:nth-child(5),
.hair-card:nth-child(5) { transition-delay: 280ms; }

.gallery-grid figure:nth-child(6),
.hair-card:nth-child(6) { transition-delay: 350ms; }

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

a[href],
button,
[role="button"] {
  cursor: pointer;
}

button {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 244, 0.86);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(76, 22, 49, .08);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding-left: max(24px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(24px, calc((100vw - var(--content-width)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: height 320ms var(--ease-out), background 320ms ease, box-shadow 320ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 244, .96);
  box-shadow: 0 14px 35px rgba(45, 11, 28, .08);
  height: 70px;
}

.brand {
  display: inline-flex;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: auto;
  mix-blend-mode: multiply;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out),
    width 320ms var(--ease-out);
  width: clamp(215px, 18vw, 270px);
}

.brand:hover .brand-logo {
  opacity: .82;
  transform: translateY(-2px);
}

.site-header.is-scrolled .brand-logo {
  width: clamp(205px, 17vw, 245px);
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: clamp(18px, 2.15vw, 34px);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 12px 0;
  position: relative;
  transition: color 180ms ease;
}

.nav-with-icon {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.link-icon {
  fill: none;
  flex: 0 0 auto;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 17px;
}

.link-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.main-nav a::after {
  background: var(--rose);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
  width: 100%;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--rose);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  background: none;
  border: 0;
  display: none;
  height: 44px;
  padding: 12px 4px;
  width: 44px;
}

.menu-button span {
  background: var(--plum);
  display: block;
  height: 1px;
  margin: 7px 0;
  transition: transform 260ms var(--ease-out), opacity 180ms ease;
  width: 30px;
}

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

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

.hero {
  height: max(700px, 100vh);
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  transform: scale(1.035);
  transform-origin: center;
  will-change: transform;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(33, 8, 21, 0.78) 0%, rgba(41, 12, 24, 0.43) 37%, rgba(31, 13, 21, 0.04) 69%),
    linear-gradient(0deg, rgba(24, 6, 15, 0.26), transparent 44%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  left: max(24px, calc((100vw - var(--content-width)) / 2));
  max-width: 760px;
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
  z-index: 2;
}

.hero-content > * {
  animation: hero-copy-in 900ms var(--ease-out) both;
}

.hero-content > :nth-child(2) { animation-delay: 90ms; }
.hero-content > :nth-child(3) { animation-delay: 180ms; }
.hero-content > :nth-child(4) { animation-delay: 260ms; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-hairline {
  fill: none;
  height: min(58vw, 680px);
  opacity: .28;
  pointer-events: none;
  position: absolute;
  right: -6vw;
  stroke: #f0d5df;
  stroke-width: 1;
  top: 15%;
  width: min(62vw, 820px);
  z-index: 1;
}

.hero-side-note {
  align-items: center;
  color: rgba(255,255,255,.68);
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 14px;
  letter-spacing: .22em;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  z-index: 2;
}

.hero-side-note i {
  background: rgba(255,255,255,.45);
  height: 1px;
  width: 60px;
}

.eyebrow {
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.section-index {
  border-right: 1px solid currentColor;
  display: inline-block;
  font-variant-numeric: lining-nums tabular-nums;
  margin-right: 14px;
  opacity: .72;
  padding-right: 14px;
}

.eyebrow.light {
  color: #e7c9d5;
}

h1, h2 {
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 6.5vw, 104px);
  line-height: 0.96;
  text-wrap: balance;
}

.heading-accent {
  color: var(--rose);
  font-style: italic;
  font-weight: 650;
}

.hero .heading-accent,
.image-divider .heading-accent,
.gallery .heading-accent,
.pricing .heading-accent {
  color: #d9a9bd;
}

.hero-copy {
  font-size: 17px;
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 530px;
}

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

.button {
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(45, 11, 28, .12);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.11em;
  padding: 18px 28px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  box-shadow: 0 15px 32px rgba(45, 11, 28, .2);
  transform: translateY(-2px);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.5);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 11px;
  letter-spacing: .1em;
  padding-bottom: 8px;
  text-transform: uppercase;
  transition:
    border-color 200ms ease,
    color 200ms ease;
}

.text-link span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

.text-link:hover {
  border-color: currentColor;
}

.text-link:hover span {
  transform: translate(4px, -2px);
}

.text-link.dark {
  border-color: #bcaeb4;
  color: var(--plum);
  margin-top: 25px;
}

.text-link.dark:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.hero-badge {
  align-items: center;
  background: var(--plum);
  bottom: 0;
  color: white;
  display: flex;
  gap: 18px;
  padding: 28px 7vw 28px 32px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-badge::before {
  border: 1px solid rgba(255,255,255,.24);
  content: "";
  inset: 9px;
  pointer-events: none;
  position: absolute;
}

.hero-badge strong {
  color: #e5c4d1;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 600;
  font-variant-numeric: lining-nums;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-wrap {
  margin: 0 auto;
  max-width: var(--content-width);
  padding-left: 0;
  padding-right: 0;
  width: calc(100% - 48px);
}

.brand-ticker {
  background: var(--plum);
  color: #edd6df;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  align-items: center;
  animation: ticker 28s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.ticker-group {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: max(100vw, 820px);
  padding: 0 18px;
}

.brand-ticker span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  padding: 0 26px;
  text-transform: uppercase;
}

.brand-ticker i {
  border: 1px solid #d9aabe;
  border-radius: 50%;
  height: 5px;
  opacity: .8;
  width: 5px;
}

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

.intro {
  isolation: isolate;
  padding-bottom: 120px;
  padding-top: 120px;
  position: relative;
}

.intro::after {
  color: transparent;
  content: "RH";
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: clamp(150px, 22vw, 310px);
  font-weight: 300;
  letter-spacing: -.12em;
  line-height: .7;
  opacity: .08;
  pointer-events: none;
  position: absolute;
  right: -12px;
  top: 70px;
  -webkit-text-stroke: 1px var(--plum);
  z-index: -1;
}

.image-divider {
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  height: clamp(360px, 46vw, 650px);
  overflow: hidden;
  position: relative;
}

.image-divider img {
  height: 112%;
  inset: -6% 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.045);
  will-change: transform;
  width: 100%;
}

.image-divider-services img {
  object-position: center 46%;
}

.image-divider-craft img {
  object-position: center;
}

.image-divider-shade {
  background:
    linear-gradient(90deg, rgba(38, 8, 23, .66), rgba(38, 8, 23, .08) 58%),
    linear-gradient(0deg, rgba(28, 5, 17, .28), transparent 55%);
  inset: 0;
  position: absolute;
}

.image-divider-craft .image-divider-shade {
  background: linear-gradient(270deg, rgba(38, 8, 23, .68), rgba(38, 8, 23, .05) 62%);
}

.image-divider-copy {
  bottom: 11%;
  color: white;
  left: max(24px, calc((100vw - var(--content-width)) / 2));
  position: absolute;
  z-index: 1;
}

.image-divider-copy-right {
  left: auto;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  text-align: right;
}

.image-divider-copy strong {
  display: block;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .95;
  text-wrap: balance;
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1.2fr .8fr;
}

h2 {
  color: var(--plum-deep);
  font-size: clamp(40px, 5.3vw, 75px);
  line-height: 1.04;
}

.intro-grid > p,
.section-note,
.about-copy > p,
.contact-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.services {
  background: var(--cream);
  padding: 115px 0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr .65fr;
}

.section-note {
  margin: 0 0 7px;
  max-width: 480px;
}

.service-list {
  border-top: 1px solid #d7cbc8;
  margin-top: 70px;
}

.service-inline {
  border-top: 1px solid #d7cbc8;
  margin-top: 70px;
  padding-top: 70px;
  scroll-margin-top: 90px;
}

.salon-heading h2 {
  color: var(--plum-deep);
}

.salon-heading h2 em {
  color: var(--rose);
}

.service-item {
  align-items: center;
  border-bottom: 1px solid #d7cbc8;
  display: grid;
  gap: clamp(18px, 2.4vw, 38px);
  grid-template-columns: 44px 112px .75fr 1.25fr;
  min-height: 154px;
  overflow: hidden;
  padding: 20px 14px 20px 0;
  position: relative;
  transition: background-color 320ms ease;
}

.service-item:hover {
  background: linear-gradient(90deg, rgba(255,255,255,.48), rgba(255,255,255,.08));
}

.service-item::before {
  background: var(--rose);
  content: "";
  inset: 20px auto 20px 0;
  position: absolute;
  transform: scaleY(0);
  transition: transform 360ms var(--ease-out);
  width: 2px;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: var(--rose);
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
  font-size: 12px;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 600;
  letter-spacing: .12em;
  padding-left: 10px;
}

.service-visual {
  aspect-ratio: 1;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(140,62,97,.16);
  border-radius: 50%;
  overflow: hidden;
}

.service-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.22, 1, .36, 1);
  width: 100%;
}

.service-item:hover .service-visual img {
  transform: scale(1.04);
}

.service-item h3 {
  color: var(--rose);
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 600;
  margin: 0;
  transition: color 240ms ease;
}

.service-item:hover h3 {
  color: var(--plum);
}

.service-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 450px;
}

.about {
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(76,22,49,.055) 49.95% 50.05%, transparent 50.05%);
  padding-bottom: 125px;
  padding-top: 125px;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 9vw;
  grid-template-columns: .95fr 1.05fr;
}

.about-portrait {
  height: 700px;
  isolation: isolate;
  overflow: visible;
  position: relative;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.portrait-frame {
  border: 1px solid rgba(140,62,97,.28);
  inset: 20px -20px -20px 20px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.signature-mark {
  background: rgba(251,248,244,.92);
  bottom: 25px;
  padding: 12px 18px;
  position: absolute;
  right: 25px;
  box-shadow: 0 16px 35px rgba(45,11,28,.12);
}

.signature-mark img {
  display: block;
  height: auto;
  mix-blend-mode: multiply;
  opacity: .86;
  width: 145px;
}

.about-copy .about-lead {
  color: var(--plum);
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  margin: 38px 0 20px;
}

.about-copy > p {
  max-width: 600px;
}

.work-showcase {
  background: var(--cream);
  padding: 115px 0 125px;
}

.work-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}

.hair-grid {
  column-count: 3;
  column-gap: 18px;
  display: block;
  margin-top: 65px;
}

.hair-card {
  aspect-ratio: 4 / 5;
  background: #e6ddd6;
  break-inside: avoid;
  cursor: pointer;
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.hair-card:nth-child(2),
.hair-card:nth-child(5) {
  aspect-ratio: 1;
}

.hair-card:nth-child(3),
.hair-card:nth-child(6) {
  aspect-ratio: 4 / 5.5;
}

.hair-card::after {
  background: linear-gradient(transparent 58%, rgba(37, 8, 23, 0.76));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 350ms ease;
}

.hair-card::before {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(45, 11, 28, .5);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: white;
  content: "↗";
  display: flex;
  font-size: 16px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 17px;
  top: 17px;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 260ms var(--ease-out);
  width: 38px;
  z-index: 2;
}

.hair-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.hair-card:hover img {
  transform: scale(1.055);
}

.hair-card:hover::after {
  opacity: .9;
}

.hair-card:hover::before {
  background: white;
  color: var(--plum);
  transform: translate(3px, -3px);
}

.hair-card span {
  bottom: 22px;
  color: white;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 22px;
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.hair-card small {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 600;
  left: 22px;
  letter-spacing: .16em;
  position: absolute;
  top: 20px;
  z-index: 1;
}

.pricing {
  background: var(--plum-deep);
  color: white;
  padding: 115px 0 125px;
  scroll-margin-top: 80px;
}

.pricing-visual {
  border: 1px solid rgba(255,255,255,.14);
  height: clamp(260px, 32vw, 430px);
  margin-bottom: 75px;
  overflow: hidden;
  position: relative;
}

.pricing-visual::after {
  background: linear-gradient(90deg, rgba(45, 11, 28, .08), rgba(45, 11, 28, .7));
  content: "";
  inset: 0;
  position: absolute;
}

.pricing-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.pricing-visual span {
  bottom: 25px;
  color: #e2b7c8;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 600;
  position: absolute;
  right: 35px;
  z-index: 1;
}

.price-jump {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(45,11,28,.88);
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  gap: 8px;
  margin-top: 56px;
  overflow-x: auto;
  padding: 12px 0;
  position: sticky;
  scrollbar-width: none;
  top: 70px;
  z-index: 8;
}

.price-jump::-webkit-scrollbar {
  display: none;
}

.price-jump a {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  color: #ddc9d1;
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  min-width: 150px;
  padding: 13px 18px;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.price-jump a:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.52);
  box-shadow: 0 7px 18px rgba(0,0,0,.14);
  color: white;
  transform: translateY(-1px);
}

.pricing-heading h2 {
  color: white;
}

.pricing-heading > p {
  color: #d0bec6;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}

.price-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.price-group {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  padding: 38px;
  position: relative;
  scroll-margin-top: 145px;
  transition: background 240ms ease, border-color 240ms ease;
}

.price-group::before {
  background: linear-gradient(90deg, var(--rose), #d6a8ba);
  content: "";
  height: 2px;
  left: 38px;
  position: absolute;
  right: 38px;
  top: 0;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}

.price-group:hover {
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.23);
}

.price-group:hover::before {
  transform: scaleX(1);
}

.price-group-wide {
  grid-column: 1 / span 2;
}

.price-group-wide > div {
  column-gap: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.price-group h3 {
  color: #efd5df;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 25px;
}

.price-row {
  align-items: baseline;
  display: flex;
  font-size: 15px;
  gap: 9px;
  margin: 0 0 13px;
  transition: color 180ms ease;
}

.price-row span {
  color: #eee4e8;
}

.price-row:hover span {
  color: white;
}

.price-row i {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.28);
  flex: 1;
  min-width: 15px;
}

.price-row strong {
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

.price-note {
  color: #bdaab2;
  font-size: 14px;
  margin: 28px 0 0;
}

.gallery {
  background: var(--plum-deep);
  color: white;
  padding: 115px 0 125px;
}

.gallery h2 {
  color: white;
}

.gallery-heading > p {
  color: #cdbcc4;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 280px 280px 240px;
  margin-top: 65px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 500ms ease;
  width: 100%;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  background: linear-gradient(transparent, rgba(28,5,17,.8));
  bottom: 0;
  color: white;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 300;
  left: 0;
  padding: 50px 20px 20px;
  position: absolute;
  right: 0;
}

.gallery-one {
  grid-row: 1 / span 2;
}

.gallery-one img {
  object-position: center;
}

.gallery-two {
  grid-column: 2 / span 2;
}

.gallery-two img {
  object-position: center;
}

.gallery-three img {
  object-position: center;
}

.gallery-four img {
  object-position: center;
}

.gallery-five {
  grid-column: 1 / span 2;
}

.gallery-five img,
.gallery-six img {
  object-position: center;
}

.instagram-more {
  align-items: center;
  border-top: 1px solid rgba(231, 201, 213, 0.24);
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 38px;
}

.instagram-more > div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.instagram-more p {
  color: #d8c8cf;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 450px;
}

.instagram-link .link-icon {
  height: 18px;
  width: 18px;
}

.instagram-more strong {
  color: white;
  display: block;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.instagram-icon {
  color: #e4bbcc;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 45px;
}

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

.instagram-button:hover {
  background: white;
  color: var(--plum);
}

.contact {
  background: var(--paper);
  padding: 125px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  gap: 10vw;
  grid-template-columns: 1.2fr .8fr;
}

.contact-intro {
  margin: 35px 0;
  max-width: 610px;
}

.contact-card {
  background: var(--cream);
  overflow: hidden;
  padding: 45px 48px;
  position: relative;
}

.contact-card::before {
  border: 1px solid rgba(140,62,97,.16);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.contact-card-mark {
  color: transparent;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 170px;
  font-weight: 300;
  line-height: .75;
  opacity: .09;
  pointer-events: none;
  position: absolute;
  right: -8px;
  top: 24px;
  -webkit-text-stroke: 1px var(--plum);
}

.contact-card > div {
  border-bottom: 1px solid #d5c7c4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 27px 0 29px;
  position: relative;
}

.contact-card span {
  color: var(--rose);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--plum);
  display: block;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 20px;
  font-variant-numeric: lining-nums;
  font-weight: 300;
  line-height: 1.6;
}

.contact-action {
  align-items: center;
  border-bottom: 1px solid #d5c7c4;
  display: grid;
  gap: 15px;
  grid-template-columns: 42px 1fr 20px;
  padding: 19px 0;
  position: relative;
  transition:
    background 220ms ease,
    color 220ms ease,
    padding 260ms var(--ease-out);
  z-index: 1;
}

.contact-action::before {
  background: rgba(255,255,255,.5);
  content: "";
  inset: 5px -10px;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: -1;
}

.contact-action:hover {
  padding-left: 8px;
  padding-right: 8px;
}

.contact-action:hover::before {
  opacity: 1;
}

.contact-action-icon {
  border: 1px solid rgba(140,62,97,.32);
  border-radius: 50%;
  fill: none;
  height: 42px;
  padding: 10px;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 42px;
}

.contact-action-icon-fill {
  fill: var(--rose);
  stroke: none;
}

.contact-action small {
  color: var(--rose);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-action strong {
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-action b {
  color: var(--rose);
  font-size: 17px;
  font-weight: 400;
  transition: transform 240ms var(--ease-out);
}

.contact-action:hover b {
  transform: translate(3px, -3px);
}

.button-dark {
  align-items: center;
  background: var(--plum);
  border-color: rgba(255,255,255,.12);
  color: white;
  gap: 14px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.button-dark span {
  font-size: 16px;
  transition: transform 240ms var(--ease-out);
}

.button-dark:hover span {
  transform: translate(3px, -3px);
}

.button-dark:hover {
  background: #611f40;
  border-color: rgba(255,255,255,.28);
}

footer {
  align-items: center;
  background: var(--plum-deep);
  color: #d8c7cf;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: .08em;
  padding-bottom: 45px;
  padding-left: max(24px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(24px, calc((100vw - var(--content-width)) / 2));
  padding-top: 45px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.footer-brand {
  background: white;
  padding: 9px 14px;
}

.footer-brand .brand-logo {
  mix-blend-mode: normal;
  width: 245px;
}

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

.footer-links > a:not(.admin-lock) {
  border-bottom: 1px solid rgba(216,199,207,.32);
  padding-bottom: 5px;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-links > a:not(.admin-lock):hover {
  border-color: currentColor;
  color: white;
}

.admin-lock {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  opacity: .58;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  width: 34px;
}

.admin-lock:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  opacity: 1;
  transform: translateY(-2px);
}

.admin-lock span {
  border: 1px solid currentColor;
  border-radius: 2px;
  display: block;
  height: 9px;
  position: relative;
  width: 11px;
}

.admin-lock span::before {
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
  height: 7px;
  left: 2px;
  position: absolute;
  top: -7px;
  width: 5px;
}

.admin-shell {
  background: #f7f3ef;
  color: var(--plum-deep);
  min-height: 100vh;
  padding: 50px 6vw 80px;
}

.admin-header {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto 38px;
  max-width: 1240px;
}

.admin-header h1,
.admin-denied h1 {
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -.045em;
  margin: 8px 0 10px;
}

.admin-header > div > p:last-child,
.admin-denied p {
  color: var(--muted);
  margin: 0;
}

.admin-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-primary,
.admin-secondary,
.admin-add,
.admin-remove {
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.admin-primary,
.admin-secondary {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .06em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
}

.admin-primary {
  background: var(--plum);
  color: white;
}

.admin-primary:disabled {
  cursor: wait;
  opacity: .65;
}

.admin-secondary {
  background: white;
  color: var(--plum);
  outline: 1px solid #d9cfca;
}

.admin-message {
  margin: 0 auto 22px;
  max-width: 1240px;
  padding: 13px 18px;
}

.admin-message.saved {
  background: #e5f2e7;
  color: #285a31;
}

.admin-message.error {
  background: #f6e3e5;
  color: #842d3d;
}

.admin-tabs {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 22px;
  max-width: 1240px;
}

.admin-tabs button {
  background: white;
  border: 1px solid #dfd3cd;
  color: var(--plum-deep);
  cursor: pointer;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
  padding: 20px 24px;
  text-align: left;
}

.admin-tabs button span {
  color: var(--muted);
  display: block;
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  margin-top: 5px;
}

.admin-tabs button.is-active {
  background: var(--plum);
  border-color: var(--plum);
  color: white;
}

.admin-tabs button.is-active span {
  color: #dcc6cf;
}

.admin-panel {
  background: rgba(255, 255, 255, .48);
  border: 1px solid #e2d7d1;
  margin: 0 auto;
  max-width: 1240px;
  padding: 34px;
}

.admin-panel-heading {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-panel-heading h2 {
  font-size: 38px;
  margin: 5px 0 0;
}

.admin-panel-heading > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 470px;
}

.admin-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 22px;
}

.admin-stats article {
  background: var(--plum-deep);
  color: white;
  min-width: 0;
  padding: 22px;
}

.admin-stats span,
.admin-stats small {
  color: #d7c0ca;
  display: block;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  font-family: var(--font-cormorant), "Segoe UI", sans-serif;
  font-size: 38px;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 300;
  line-height: 1.1;
  margin: 10px 0 6px;
}

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

.admin-analytics-card {
  background: white;
  border: 1px solid #e5dbd5;
  padding: 25px;
}

.admin-analytics-wide {
  grid-column: 1 / -1;
}

.admin-analytics-card h3 {
  font-size: 25px;
  margin: 0 0 20px;
}

.admin-bars {
  display: grid;
  gap: 10px;
}

.admin-bar-row {
  align-items: center;
  display: grid;
  font-size: 12px;
  gap: 10px;
  grid-template-columns: 76px minmax(80px, 1fr) 36px 58px;
}

.admin-bar-row.compact {
  grid-template-columns: 105px minmax(60px, 1fr) 36px;
}

.admin-bar-row > span {
  color: var(--muted);
}

.admin-bar-row > i {
  background: #f0e8e5;
  display: block;
  height: 7px;
  overflow: hidden;
}

.admin-bar-row > i > b {
  background: linear-gradient(90deg, var(--rose), #c58ca3);
  display: block;
  height: 100%;
}

.admin-bar-row > strong {
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
}

.admin-bar-row > small {
  color: #9b858e;
  font-size: 9px;
}

.admin-empty {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.admin-account {
  align-items: center;
  background: #eee6e1;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 22px 25px;
}

.admin-account strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.admin-account p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.admin-editor {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.admin-group {
  background: white;
  border: 1px solid #e4dad4;
  padding: 30px;
}

.admin-group:last-child {
  grid-column: 1 / -1;
}

.admin-group h2 {
  font-size: 30px;
  margin: 0 0 22px;
}

.admin-items {
  display: grid;
  gap: 9px;
}

.admin-item {
  display: grid;
  gap: 9px;
  grid-template-columns: minmax(0, 1fr) 160px 42px;
}

.admin-item input {
  background: #fbf9f7;
  border: 1px solid #ddd1cb;
  border-radius: 0;
  color: var(--plum-deep);
  font: inherit;
  min-width: 0;
  padding: 12px 13px;
}

.admin-item input:focus {
  border-color: var(--rose);
  outline: 2px solid rgba(151, 64, 99, .12);
}

.admin-price-input {
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
}

.admin-remove {
  background: #f4ece9;
  color: #8e3a4f;
  font-size: 24px;
}

.admin-add {
  background: transparent;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  padding: 6px 0;
}

.admin-denied {
  background: white;
  margin: 10vh auto;
  max-width: 680px;
  padding: 55px;
}

.admin-denied .admin-secondary {
  margin-top: 28px;
}

.print-price-list {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }

  .brand-logo {
    width: 215px;
  }

  .hero-side-note {
    display: none;
  }

  .menu-button {
    display: block;
    z-index: 3;
  }

  .main-nav {
    align-items: flex-start;
    background: var(--paper);
    display: none;
    flex-direction: column;
    font-family: var(--font-cormorant), "Segoe UI", sans-serif;
    font-size: 30px;
    inset: 74px 0 auto;
    letter-spacing: 0;
    padding: 35px 6vw 45px;
    position: fixed;
    text-transform: none;
  }

  .main-nav a {
    padding: 5px 0;
  }

  .main-nav .link-icon {
    height: 22px;
    width: 22px;
  }

  .main-nav a::after {
    bottom: 0;
  }

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

  .hero {
    height: 850px;
    min-height: 0;
  }

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

  .hero-hairline {
    height: 62vh;
    opacity: .2;
    right: -28vw;
    top: 24%;
    width: 100vw;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(34,8,21,.86) 0%, rgba(34,8,21,.25) 72%, rgba(34,8,21,.12));
  }

  .hero-content {
    bottom: 90px;
    left: 24px;
    max-width: 88vw;
    top: auto;
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(46px, 12vw, 72px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-badge {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .about-grid,
  .contact-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .intro,
  .services,
  .about,
  .gallery,
  .work-showcase,
  .pricing,
  .contact {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .intro::after {
    right: 12px;
    top: 65px;
  }

  .image-divider {
    height: 430px;
  }

  .image-divider-services img {
    object-position: 58% center;
  }

  .image-divider-copy {
    bottom: 9%;
  }

  .service-item {
    align-items: start;
    gap: 16px 20px;
    grid-template-columns: 35px 92px 1fr;
    padding: 28px 0;
  }

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

  .service-item h3 {
    grid-column: 3;
    margin-top: 4px;
  }

  .service-item p {
    grid-column: 3;
  }

  .about-portrait {
    height: 620px;
  }

  .portrait-frame {
    inset: 14px -14px -14px 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 260px 260px 260px;
  }

  .hair-grid {
    column-count: 2;
  }

  .price-group-wide > div {
    display: block;
  }

  .price-jump {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .gallery-one {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .gallery-two {
    grid-column: 1 / span 2;
  }

  .gallery-five {
    grid-column: auto;
  }

  .instagram-more {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
  }

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

  .admin-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    height: 760px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .brand-ticker {
    padding: 12px 0;
  }

  .brand-ticker span {
    font-size: 10px;
    padding: 0 18px;
  }

  .section-index {
    margin-right: 10px;
    padding-right: 10px;
  }

  .intro-grid {
    gap: 30px;
  }

  .about-portrait {
    height: 500px;
  }

  .signature-mark {
    bottom: 16px;
    padding: 9px 13px;
    right: 16px;
  }

  .signature-mark img {
    width: 118px;
  }

  .image-divider {
    height: 360px;
  }

  .image-divider-services img {
    object-position: 62% center;
  }

  .image-divider-craft img {
    object-position: 55% center;
  }

  .image-divider-copy-right {
    left: 24px;
    right: auto;
    text-align: left;
  }

  .pricing-visual {
    margin-bottom: 55px;
  }

  .gallery-grid {
    display: block;
  }

  .hair-grid {
    column-gap: 12px;
  }

  .hair-card {
    margin-bottom: 12px;
  }

  .hair-card span {
    bottom: 15px;
    font-size: 18px;
    left: 15px;
  }

  .hair-card small {
    left: 15px;
    top: 14px;
  }

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

  .price-group,
  .price-group-wide {
    grid-column: auto;
    padding: 26px 22px;
  }

  .price-row {
    font-size: 14px;
  }

  .gallery-grid figure {
    height: 330px;
    margin-bottom: 14px;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-card-mark {
    font-size: 120px;
  }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .contact-action {
    grid-template-columns: 40px 1fr 18px;
  }

  .admin-shell {
    padding: 32px 18px 55px;
  }

  .admin-editor {
    grid-template-columns: 1fr;
  }

  .admin-group:last-child {
    grid-column: auto;
  }

  .admin-group {
    padding: 22px 16px;
  }

  .admin-item {
    grid-template-columns: minmax(0, 1fr) 115px 40px;
  }

  .admin-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .admin-primary {
    grid-column: 1 / -1;
  }

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

  .admin-stats article:last-child {
    grid-column: 1 / -1;
  }

  .admin-tabs {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 24px 15px;
  }

  .admin-analytics-grid {
    grid-template-columns: 1fr;
  }

  .admin-analytics-wide {
    grid-column: auto;
  }

  .admin-bar-row {
    grid-template-columns: 65px minmax(50px, 1fr) 28px;
  }

  .admin-bar-row > small {
    display: none;
  }

  .admin-account {
    align-items: stretch;
    flex-direction: column;
  }
}

@page {
  size: A4 portrait;
  margin: 12mm;
}

@media print {
  body {
    background: white;
    color: #26111c;
    font-family: var(--font-manrope), "Segoe UI", sans-serif;
  }

  .no-print,
  .admin-message {
    display: none !important;
  }

  .admin-shell {
    background: white;
    min-height: 0;
    padding: 0;
  }

  .print-price-list {
    display: block;
  }

  .print-price-list > header {
    align-items: center;
    border-bottom: 1px solid #b98b9e;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8mm;
    padding-bottom: 5mm;
  }

  .print-price-list > header img {
    height: auto;
    max-width: 105mm;
  }

  .print-price-list > header div {
    color: #55192f;
    text-align: right;
  }

  .print-price-list > header span {
    display: block;
    font-size: 9pt;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .print-price-list > header strong {
    display: block;
    font-family: var(--font-cormorant), "Segoe UI", sans-serif;
    font-size: 20pt;
    font-weight: 300;
  }

  .print-price-columns {
    column-count: 2;
    column-gap: 10mm;
  }

  .print-price-columns article {
    break-inside: avoid;
    margin: 0 0 7mm;
  }

  .print-price-columns h2 {
    color: #8f385c;
    font-size: 15pt;
    margin: 0 0 3mm;
  }

  .print-price-columns p {
    align-items: baseline;
    display: flex;
    font-size: 8.5pt;
    gap: 2mm;
    line-height: 1.35;
    margin: 0 0 1.5mm;
  }

  .print-price-columns p i {
    border-bottom: 1px dotted #b9abb0;
    flex: 1;
    min-width: 5mm;
  }

  .print-price-columns p strong {
    font-variant-numeric: lining-nums tabular-nums;
    white-space: nowrap;
  }

  .print-price-list > footer {
    background: transparent;
    border-top: 1px solid #d8cbcf;
    color: #64535a;
    display: block;
    font-size: 7.5pt;
    letter-spacing: 0;
    margin-top: 6mm;
    padding: 4mm 0 0;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  .gallery-grid[data-reveal] figure,
  .service-list[data-reveal] .service-item,
  .hair-grid[data-reveal] .hair-card,
  .price-grid[data-reveal] .price-group {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}
