:root {
  --black: #0b0a0b;
  --black-soft: #171416;
  --white: #ffffff;
  --paper: #faf8f8;
  --paper-deep: #f1ebee;
  --pink: #d4a6bd;
  --pink-light: #f2dfe8;
  --pink-pale: #fbf3f7;
  --gold: #c99c32;
  --gold-light: #f7e691;
  --gold-deep: #674616;
  --gold-metal: linear-gradient(112deg, #8c6114 0%, #c99c32 28%, #f7e691 52%, #c99c32 76%, #7b5110 100%);
  --text: #171416;
  --muted: #726b6f;
  --line: rgba(23, 20, 22, 0.2);
  --line-light: rgba(255, 255, 255, 0.22);
  --serif: "Bodoni 72", Didot, Baskerville, Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --max: 1480px;
  --ease: cubic-bezier(0.22, 0.72, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--gold-light);
  color: var(--black);
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.utility-bar {
  display: flex;
  min-height: 33px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(201, 156, 50, 0.28);
  background: #050405;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.utility-bar p,
.utility-bar div {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
}

.utility-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.utility-bar a {
  transition: color 180ms ease;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 13px clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 10, 11, 0.97);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition: min-height 240ms var(--ease), box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(142px, 11vw, 172px);
  height: auto;
  transition: width 240ms var(--ease);
}

.site-header.is-scrolled .brand-logo {
  width: clamp(132px, 10vw, 154px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.15vw, 36px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  background: var(--gold-metal);
  color: var(--black);
}

.menu-toggle {
  display: none;
  min-width: 58px;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.menu-lines {
  position: relative;
}

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

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

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

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

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

.section-pad {
  padding: clamp(86px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.eyebrow.dark {
  color: #8a6075;
}

.audience-promise {
  margin: -10px 0 24px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-style: italic;
  letter-spacing: 0.015em;
  line-height: 1.3;
}

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

.hero {
  display: grid;
  min-height: calc(100svh - 124px);
  grid-template-columns: minmax(470px, 0.94fr) minmax(520px, 1.06fr);
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px) clamp(32px, 6vw, 96px);
  overflow: hidden;
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  right: -5.5rem;
  bottom: -6rem;
  color: rgba(201, 156, 50, 0.055);
  content: "D";
  font-family: var(--serif);
  font-size: clamp(25rem, 42vw, 48rem);
  line-height: 0.7;
  pointer-events: none;
}

.hero-copy > * {
  animation: rise 700ms var(--ease) both;
}

.hero-copy h1 {
  animation-delay: 60ms;
}

.hero-copy .hero-intro {
  animation-delay: 120ms;
}

.hero-copy .button-row {
  animation-delay: 180ms;
}

.hero-copy .hero-proof {
  animation-delay: 240ms;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 30px;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(4.35rem, 7.7vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.066em;
  line-height: 0.79;
}

.hero h1 em,
.center-heading h2 em,
.course-heading h2 em,
.salon-copy h2 em,
.lookbook-heading h2 em,
.faq-heading h2 em {
  color: var(--pink);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(11, 10, 11, 0.16);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: #292328;
}

.button-outline {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--pink-light);
}

.button-gold {
  border-color: rgba(247, 230, 145, 0.45);
  background: var(--gold-metal);
  color: var(--black);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--pink);
  background: rgba(212, 166, 189, 0.12);
}

.hero-proof {
  display: grid;
  margin-top: clamp(42px, 7vh, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(103, 70, 22, 0.32);
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 19px 15px 0 0;
}

.hero-proof p + p {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 1px solid rgba(103, 70, 22, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 35%),
    var(--pink);
}

.hero-portrait::before {
  position: absolute;
  inset: 6% 5%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  content: "";
}

.hero-portrait-frame {
  position: absolute;
  z-index: 2;
  top: 4%;
  bottom: 0;
  left: 50%;
  width: min(72%, 620px);
  border: 1px solid rgba(247, 230, 145, 0.75);
  border-bottom: 0;
  border-radius: 48% 48% 0 0 / 30% 30% 0 0;
  background: var(--black);
  box-shadow: 0 32px 90px rgba(34, 21, 29, 0.28);
  transform: translateX(-50%);
  overflow: hidden;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.03);
  animation: portrait-settle 1150ms var(--ease) both;
}

.hero-portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 10, 11, 0.35), transparent 30%);
  content: "";
}

.portrait-label {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 5%;
  min-width: 220px;
  padding: 15px 18px;
  border: 1px solid rgba(247, 230, 145, 0.55);
  background: rgba(11, 10, 11, 0.88);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.portrait-label span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-label p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
}

.hero-sideword {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -0.3em;
  margin: 0;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 12rem);
  letter-spacing: -0.04em;
  line-height: 1;
  transform: translate(41%, -50%) rotate(90deg);
}

.gold-orbit {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 6%;
  width: 90px;
  height: 90px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.gold-orbit::before,
.gold-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
}

.gold-orbit::before {
  width: 112px;
  height: 1px;
}

.gold-orbit::after {
  width: 1px;
  height: 112px;
}

.brand-rail {
  display: grid;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  padding: 18px clamp(24px, 6vw, 96px);
  grid-template-columns: auto 45px auto 45px auto;
  gap: 24px;
  border-top: 1px solid rgba(201, 156, 50, 0.3);
  border-bottom: 1px solid rgba(201, 156, 50, 0.3);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 0.93rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.brand-rail i {
  width: 100%;
  height: 1px;
  background: var(--gold-metal);
}

.route-section,
.course-shell,
.method-section,
.faq-section,
.lookbook-section,
.reviews-section,
.practical-section {
  max-width: var(--max);
  margin: 0 auto;
}

.route-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 36%, rgba(212, 166, 189, 0.13), transparent 29%),
    var(--paper);
}

.center-heading {
  max-width: 820px;
  margin: 0 auto clamp(58px, 8vw, 100px);
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading h2,
.course-heading h2,
.salon-copy h2,
.lookbook-heading h2,
.faq-heading h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

.center-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 68px);
}

.route-card {
  position: relative;
  display: block;
  min-width: 0;
  padding-bottom: 28px;
  text-align: center;
}

.route-card-offset {
  padding-top: clamp(45px, 6vw, 82px);
}

.route-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 30px;
  border: 1px solid rgba(103, 70, 22, 0.42);
  border-radius: 50%;
  background: var(--pink-light);
  box-shadow: 0 24px 60px rgba(51, 35, 44, 0.12);
  overflow: hidden;
}

.route-image::after {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(247, 230, 145, 0.62);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms var(--ease), filter 550ms ease;
}

.route-card:nth-child(2) .route-image img {
  object-position: center 45%;
}

.route-card:nth-child(3) .route-image img {
  object-position: 52% center;
}

.route-image > span {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: 8%;
  display: grid;
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  place-items: center;
}

.route-card:hover .route-image img,
.route-card:focus-visible .route-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.route-kicker {
  margin-bottom: 8px;
  color: #8b6075;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.route-card > p:not(.route-kicker) {
  max-width: 370px;
  margin: 0 auto;
  color: var(--muted);
}

.round-link {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 21px auto 0;
  border: 1px solid var(--black);
  border-radius: 50%;
  place-items: center;
  transition: background 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.route-card:hover .round-link,
.route-card:focus-visible .round-link {
  background: var(--black);
  color: var(--gold-light);
  transform: rotate(45deg);
}

.academy-section {
  background: var(--white);
}

.academy-banner {
  display: grid;
  max-width: none;
  grid-template-columns: 1.16fr 0.84fr;
  gap: clamp(50px, 8vw, 135px);
  background:
    linear-gradient(90deg, rgba(201, 156, 50, 0.06), transparent 30%),
    var(--black);
  color: var(--white);
}

.academy-banner > div:first-child,
.academy-lead {
  width: 100%;
  max-width: 700px;
}

.academy-banner > div:first-child {
  justify-self: end;
}

.academy-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.84;
}

.academy-banner h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.academy-lead {
  align-self: end;
  justify-self: start;
}

.academy-lead > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
}

.academy-lead ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.academy-lead li {
  position: relative;
  padding: 14px 0 14px 25px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.academy-lead li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.course-shell {
  background: var(--white);
}

.course-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}

.course-heading h2 {
  margin-bottom: 0;
}

.course-heading > p {
  max-width: 500px;
  margin: 0 0 7px;
  color: var(--muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.course-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: clamp(27px, 3vw, 44px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--paper);
  color: var(--black);
  overflow: hidden;
}

.course-card::before {
  position: absolute;
  right: -0.07em;
  bottom: -0.18em;
  color: rgba(11, 10, 11, 0.035);
  content: "D";
  font-family: var(--serif);
  font-size: 17rem;
  line-height: 0.7;
  pointer-events: none;
}

.course-card-dark {
  background: var(--black);
  color: var(--white);
}

.course-card-dark::before {
  color: rgba(247, 230, 145, 0.04);
}

.course-card-pink {
  background: var(--pink);
}

.course-card-gold {
  background: linear-gradient(140deg, #f6e7b8, #c99c32 75%, #8f6418);
}

.course-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-number {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin-top: 20px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.course-card-dark .course-number {
  color: var(--gold-light);
}

.course-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.course-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: var(--muted);
}

.course-card-dark > p {
  color: rgba(255, 255, 255, 0.7);
}

.course-card details {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid currentColor;
}

.course-card summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.course-card summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.course-card summary span {
  font-family: var(--serif);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.course-card details[open] summary span {
  transform: rotate(45deg);
}

.course-card details > div {
  padding: 4px 0 8px;
  font-size: 0.88rem;
}

.course-card details p {
  margin-bottom: 8px;
}

.course-card details ul {
  margin: 0;
  padding-left: 18px;
}

.academy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 34px;
  padding: 27px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.academy-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
}

.academy-cta p span {
  color: #8a6075;
  font-style: italic;
}

.salon-section {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(52px, 7vw, 110px);
  background: var(--pink-pale);
}

.salon-image-wrap {
  position: relative;
  min-height: 720px;
  align-self: stretch;
}

.salon-image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 24px;
  border: 1px solid rgba(247, 230, 145, 0.55);
  content: "";
  pointer-events: none;
}

.salon-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stamp {
  position: absolute;
  z-index: 3;
  right: -42px;
  bottom: 58px;
  display: flex;
  width: 154px;
  height: 154px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-align: center;
}

.image-stamp span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.salon-copy {
  align-self: center;
  padding-right: clamp(0px, 3vw, 42px);
}

.salon-copy h2 {
  margin-bottom: 30px;
}

.salon-intro {
  max-width: 620px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--black);
}

.service-list article > span {
  color: #8a6075;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-list h3 {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(103, 70, 22, 0.35);
  background: var(--white);
}

.booking-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.booking-note strong {
  display: block;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.booking-note a {
  flex: 0 0 auto;
  color: #8a6075;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lookbook-section {
  background: var(--paper);
}

.lookbook-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(45px, 6vw, 76px);
}

.lookbook-heading .eyebrow {
  align-self: flex-start;
  margin-top: 11px;
}

.lookbook-intro {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.lookbook-heading h2 {
  margin: 0;
  text-align: right;
}

.lookbook-grid {
  display: grid;
  width: min(100%, 1040px);
  margin: 0 auto;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px) clamp(14px, 1.8vw, 24px);
}

.lookbook-item {
  min-width: 0;
  margin: 0;
}

.lookbook-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 5px;
  border: 1px solid rgba(181, 139, 45, 0.24);
  border-radius: 10px;
  background: #f4f1f2;
  object-fit: contain;
  box-shadow: 0 9px 22px rgba(31, 20, 27, 0.08);
}

.lookbook-item figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.lookbook-one,
.lookbook-two,
.lookbook-three,
.lookbook-four {
  align-self: start;
  padding: 0;
}

.pedicure-section {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  padding: clamp(90px, 11vw, 165px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 78% 24%, rgba(201, 156, 50, 0.11), transparent 22%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.pedicure-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(11rem, 29vw, 32rem);
  letter-spacing: -0.08em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.pedicure-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.pedicure-copy .eyebrow {
  justify-content: center;
}

.pedicure-copy h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.pedicure-copy h2 em {
  color: var(--pink);
  font-weight: 400;
}

.pedicure-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.pedicure-seal {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 9%;
  display: grid;
  width: 110px;
  height: 110px;
  align-items: center;
  grid-template-columns: 0.7fr 1fr;
  border: 1px solid var(--gold);
  border-radius: 50%;
  padding: 16px;
}

.pedicure-seal span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.8rem;
}

.pedicure-seal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reviews-section {
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 156, 50, 0.1), transparent 24%),
    var(--pink-pale);
}

.reviews-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(38px, 7vw, 110px);
  margin-bottom: clamp(42px, 6vw, 72px);
}

.reviews-heading h2,
.practical-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

.reviews-heading h2 em,
.practical-heading h2 em {
  color: var(--pink);
  font-weight: 400;
}

.reviews-intro {
  padding-bottom: 5px;
}

.reviews-intro p {
  margin-bottom: 23px;
  color: var(--muted);
}

.salonized-feedback-panel {
  width: min(100%, 940px);
  min-height: 220px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--black);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(44, 29, 37, 0.08);
  overflow: hidden;
}

.salonized-feedback-panel .salonized-reviews,
.salonized-feedback-panel iframe {
  width: 100%;
  max-width: 100%;
}

.salonized-feedback-panel .salonized-reviews {
  font-size: 0.875rem;
  line-height: 1.5;
}

.salonized-feedback-panel .salonized-reviews article {
  min-height: 0 !important;
  padding: clamp(14px, 2vw, 22px) !important;
}

.salonized-feedback-panel .salonized-reviews p,
.salonized-feedback-panel .salonized-reviews li,
.salonized-feedback-panel .salonized-reviews blockquote {
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.salonized-feedback-panel noscript {
  color: var(--muted);
}

.method-section {
  background: var(--white);
}

.method-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  list-style: none;
}

.method-list li {
  position: relative;
  min-height: 310px;
  padding: clamp(25px, 3vw, 40px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
}

.method-list li:nth-child(even) {
  background: var(--pink-pale);
}

.method-list li > span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.method-list h3 {
  margin: 100px 0 11px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-section {
  display: grid;
  min-height: 820px;
  grid-template-columns: 1fr 1fr;
  background: var(--pink);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 145px) clamp(30px, 7vw, 112px);
  background: var(--pink);
}

.founder-copy blockquote {
  max-width: 720px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.founder-copy > p:not(.eyebrow):not(.signature) {
  max-width: 630px;
  margin-bottom: 27px;
  color: #493940;
  font-size: 1.03rem;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 2px 0 30px;
  padding: 0;
  list-style: none;
}

.founder-credentials li {
  padding: 8px 12px;
  border: 1px solid rgba(103, 70, 22, 0.3);
  border-radius: 999px;
  color: #493940;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signature {
  margin: 0;
  color: var(--gold-deep);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 3vw, 3.2rem);
  transform: rotate(-4deg);
  transform-origin: left;
}

.founder-film {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: clamp(48px, 5vw, 78px);
  background: var(--black);
  overflow: hidden;
}

.founder-film::before {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(212, 166, 189, 0.22);
  content: "";
  filter: blur(70px);
  pointer-events: none;
}

.founder-film-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  aspect-ratio: 464 / 832;
  border: 1px solid rgba(247, 230, 145, 0.55);
  background: #050405;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.founder-film-frame::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 230, 145, 0.28);
  content: "";
  pointer-events: none;
}

.founder-film video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050405;
}

.founder-film::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(247, 230, 145, 0.45);
  content: "";
  pointer-events: none;
}

.founder-film figcaption {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin: 0;
  color: var(--white);
  line-height: 1.35;
}

.founder-film figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-film figcaption strong {
  display: block;
  max-width: 390px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
}

.credentials-showcase {
  grid-column: 1 / -1;
  padding: clamp(74px, 7vw, 112px) clamp(28px, 6vw, 96px);
  border-top: 1px solid rgba(247, 230, 145, 0.28);
  background: var(--black);
  color: var(--white);
}

.credentials-heading {
  display: grid;
  max-width: var(--max);
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(38px, 7vw, 115px);
  margin: 0 auto 38px;
}

.credentials-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.credentials-heading h3 em {
  color: var(--pink);
  font-weight: 400;
}

.credentials-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.66);
}

.credentials-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.credential-card {
  min-width: 0;
  margin: 0;
  padding: 9px 9px 15px;
  border: 1px solid rgba(247, 230, 145, 0.22);
  background: #151215;
}

.credential-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--white);
  object-fit: cover;
}

.credential-card figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.credential-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credentials-privacy {
  max-width: var(--max);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 145px);
  background: var(--paper);
}

.faq-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 25px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
}

.faq-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--black);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid var(--black);
}

.faq-list summary {
  display: grid;
  min-height: 78px;
  align-items: center;
  grid-template-columns: 42px 1fr auto;
  gap: 19px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.78rem);
  list-style: none;
}

.faq-list summary span {
  color: #8a6075;
  font-size: 0.92rem;
}

.faq-list summary b {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: 0;
  padding: 0 35px 24px 61px;
  color: var(--muted);
}

.practical-section {
  background: var(--white);
}

.practical-heading {
  max-width: 850px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}

.practical-heading .eyebrow {
  justify-content: center;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.practical-grid article {
  min-height: 245px;
  padding: clamp(25px, 3vw, 40px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.practical-grid article:nth-child(2) {
  background: var(--pink-pale);
}

.practical-grid article > span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.practical-grid h3 {
  margin: 55px 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.practical-grid p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
}

.practical-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 0;
}

.practical-action p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.contact-section {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(90px, 12vw, 175px) clamp(24px, 7vw, 110px);
  background:
    radial-gradient(circle at 22% 75%, rgba(212, 166, 189, 0.13), transparent 25%),
    var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(247, 230, 145, 0.035);
  content: "D";
  font-family: var(--serif);
  font-size: clamp(27rem, 48vw, 54rem);
  line-height: 0.65;
  transform: translate(-50%, -50%);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  justify-content: center;
}

.contact-section h2 {
  max-width: 1050px;
  margin-bottom: 29px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.contact-section h2 em {
  color: var(--pink);
  font-weight: 400;
}

.contact-section > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.69);
}

.contact-actions {
  justify-content: center;
}

.contact-details {
  display: grid;
  width: min(100%, 1140px);
  margin-top: clamp(48px, 7vw, 78px);
  grid-template-columns: 1.35fr 0.88fr 1fr 0.86fr;
  border-top: 1px solid rgba(201, 156, 50, 0.48);
  border-bottom: 1px solid rgba(201, 156, 50, 0.48);
  text-align: left;
}

.contact-detail {
  min-width: 0;
  padding: 24px clamp(17px, 2.7vw, 35px);
}

.contact-detail + .contact-detail {
  border-left: 1px solid var(--line-light);
}

.contact-detail > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-detail p,
.contact-detail address {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-style: normal;
  line-height: 1.45;
}

.contact-detail a {
  transition: color 180ms ease;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--pink);
}

.site-footer {
  padding: 45px clamp(24px, 6vw, 96px) 30px;
  border-top: 1px solid rgba(201, 156, 50, 0.35);
  background: var(--black);
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 185px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 38px;
  margin: 36px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--gold-light);
}

.site-footer > p {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > p span {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 20px;
}

.site-footer > p small {
  font: inherit;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-settle {
  from {
    filter: contrast(0.95) brightness(0.86);
    transform: scale(1.05);
  }

  to {
    filter: contrast(1.03) brightness(1);
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(410px, 0.92fr) minmax(470px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6.6rem);
  }

  .primary-nav {
    gap: 18px;
  }

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

  .salon-image-wrap {
    min-height: 620px;
  }

  .booking-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .lookbook-grid {
    width: min(100%, 1040px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 940px) {
  html {
    scroll-padding-top: 76px;
  }

  .utility-bar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 76px;
  }

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

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - 76px);
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 28px clamp(25px, 7vw, 65px) 55px;
    background: rgba(11, 10, 11, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 220ms var(--ease);
  }

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

  .primary-nav > a:not(.nav-cta) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav .nav-cta {
    margin-top: 24px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 660px;
  }

  .hero-portrait {
    min-height: 820px;
    border-top: 1px solid rgba(103, 70, 22, 0.32);
    border-left: 0;
  }

  .hero-portrait-frame {
    width: min(72%, 590px);
  }

  .route-grid {
    max-width: 680px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .route-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .route-card-offset {
    padding-top: 0;
  }

  .academy-banner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .academy-banner > div:first-child,
  .academy-lead {
    max-width: none;
    justify-self: stretch;
  }

  .course-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

  .salon-image-wrap {
    min-height: 640px;
  }

  .image-stamp {
    right: 26px;
  }

  .salon-copy {
    padding-right: 0;
  }

  .lookbook-grid {
    min-height: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reviews-intro {
    max-width: 560px;
  }

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

  .practical-grid article {
    min-height: 0;
  }

  .practical-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .lookbook-one,
  .lookbook-two,
  .lookbook-three,
  .lookbook-four {
    align-self: auto;
    padding: 0;
  }

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

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

  .founder-film {
    min-height: 940px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

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

  .contact-detail:nth-child(3) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .contact-detail:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 76px 20px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-logo {
    width: 136px;
  }

  .hero-copy {
    min-height: 620px;
    padding: 68px 20px 55px;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 17vw, 5.65rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

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

  .hero-proof p,
  .hero-proof p + p {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .hero-portrait {
    min-height: 610px;
  }

  .hero-portrait-frame {
    top: 7%;
    width: 86%;
  }

  .gold-orbit {
    top: 5%;
    left: 4%;
    width: 58px;
    height: 58px;
  }

  .gold-orbit::before {
    width: 72px;
  }

  .gold-orbit::after {
    height: 72px;
  }

  .portrait-label {
    right: 7%;
    bottom: 4%;
    min-width: 205px;
  }

  .brand-rail {
    display: flex;
    min-height: 55px;
    justify-content: flex-start;
    gap: 18px;
    padding: 15px 20px;
    font-size: 0.76rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .brand-rail i {
    width: 28px;
    flex: 0 0 auto;
  }

  .center-heading h2,
  .course-heading h2,
  .salon-copy h2,
  .lookbook-heading h2,
  .faq-heading h2,
  .reviews-heading h2,
  .practical-heading h2 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .route-grid {
    gap: 48px;
  }

  .academy-banner h2,
  .pedicure-copy h2,
  .contact-section h2 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

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

  .course-card {
    min-height: 465px;
  }

  .academy-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .academy-cta .button {
    width: 100%;
  }

  .salon-section {
    gap: 50px;
  }

  .salon-image-wrap {
    min-height: 410px;
  }

  .salon-image-wrap::before {
    inset: 14px;
  }

  .image-stamp {
    right: 16px;
    bottom: -34px;
    width: 112px;
    height: 112px;
    font-size: 1.45rem;
  }

  .booking-note {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .lookbook-heading h2 {
    text-align: left;
  }

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

  .lookbook-item figcaption {
    font-size: 0.75rem;
  }

  .salonized-feedback-panel {
    min-height: 190px;
    padding: 11px;
  }

  .practical-grid h3 {
    margin-top: 38px;
  }

  .practical-action .button {
    width: 100%;
  }

  .pedicure-section {
    min-height: 670px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .pedicure-seal {
    right: 20px;
    bottom: 25px;
    width: 86px;
    height: 86px;
    padding: 12px;
  }

  .pedicure-seal span {
    font-size: 2rem;
  }

  .pedicure-seal p {
    font-size: 0.46rem;
  }

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

  .method-list li {
    min-height: 250px;
  }

  .method-list h3 {
    margin-top: 65px;
  }

  .founder-copy {
    padding: 76px 20px;
  }

  .founder-copy blockquote {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .founder-film {
    min-height: 0;
    padding: 46px 28px 52px;
  }

  .founder-film::after {
    inset: 14px;
  }

  .founder-film-frame {
    width: min(84vw, 430px);
  }

  .credentials-showcase {
    padding: 70px 20px;
  }

  .credentials-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .credentials-heading h3 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

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

  .faq-list summary {
    min-height: 72px;
    grid-template-columns: 29px 1fr auto;
    gap: 11px;
    font-size: 1.14rem;
  }

  .faq-list details > p {
    padding: 0 5px 23px 40px;
  }

  .contact-section {
    min-height: 650px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

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

  .contact-detail {
    padding: 19px 0;
  }

  .contact-detail + .contact-detail {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    flex-direction: column;
  }

  .site-footer > p span {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
