:root {
  --ink: #17181a;
  --canvas: #f0f0ed;
  --surface: #f8f8f6;
  --muted: #5e6166;
  --silver: #a4a7aa;
  --line: #c8cacd;
  --white: #f4f4f1;
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 68px);
  --section-space: clamp(96px, 11vw, 176px);
  --font-sans: "Helvetica Neue", "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Arial, sans-serif;
  --font-display: "Helvetica Neue", "Arial Narrow", "Apple SD Gothic Neo", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.mh-nav-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure, dl, dd { margin: 0; }
button { color: inherit; }

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.demo-notice {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 5px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
}

.demo-notice strong { font-size: 9px; letter-spacing: .18em; }

.site-header[data-navigation-pattern] {
  position: absolute;
  inset: 29px 0 auto;
  z-index: 28;
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  padding: 0 var(--gutter);
  color: var(--ink);
  border-bottom: 1px solid rgba(16,16,16,.22);
  background: rgba(241,241,237,.16);
  backdrop-filter: blur(3px);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header[data-navigation-pattern].is-scrolled {
  position: fixed;
  top: 0;
  min-height: 66px;
  border-color: var(--line);
  background: rgba(250,250,247,.95);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.site-header .brand strong {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.site-header .brand::after {
  content: "HAIR EDIT / SEOUL";
  margin-top: 7px;
  color: rgba(16,16,16,.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
}

.site-header .primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 44px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.site-header .header-action {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
}

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: var(--section-space) var(--gutter);
}

.section-heading .section-label,
.section-label {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2em;
}

.section-heading h2,
.booking-panel h2,
.consultation-panel h2,
.location-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.3vw, 82px);
  font-weight: 520;
  line-height: .98;
  letter-spacing: -.075em;
}

.section-heading > p:last-child {
  max-width: 490px;
  color: var(--muted);
  font-size: 15px;
}

.line-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  transition: gap 180ms ease, opacity 180ms ease;
}

.line-action-dark {
  min-width: 190px;
  padding-inline: 14px;
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
}

.line-action-light { color: var(--white); }

@media (hover: hover) {
  .line-action:hover { gap: 38px; opacity: .68; }
}

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(235,235,231,.88) 0%, rgba(235,235,231,.56) 34%, rgba(235,235,231,0) 61%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-drift 14s ease-out both;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--max));
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  padding: 180px var(--gutter) clamp(58px, 8vh, 102px);
}

.hero-kicker {
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero h1 {
  max-width: 810px;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 520;
  line-height: .9;
  letter-spacing: -.085em;
}

.hero h1 span { display: block; }

.hero-copy > p:not(.hero-kicker) {
  max-width: 480px;
  margin-top: 28px;
  color: rgba(16,16,16,.72);
  font-size: 15px;
}

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

.hero-folio {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(58px, 8vh, 102px);
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.edit-heading {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 70px);
  padding-bottom: clamp(58px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.edit-heading .section-label { margin-top: 10px; }
.edit-heading > p:last-child { padding-top: 8px; }

.edit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(330px, .76fr);
  gap: clamp(34px, 5vw, 86px);
  padding-top: clamp(48px, 6vw, 92px);
}

.edit-feature {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #dadad7;
}

.edit-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: opacity 180ms ease, transform 440ms ease;
}

.edit-feature.is-changing img { opacity: .18; transform: scale(1.01); }

.edit-feature figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: end;
  gap: 18px;
  padding: 26px 28px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent);
}

.edit-feature figcaption span {
  grid-row: 1 / span 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.edit-feature figcaption strong {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.edit-feature figcaption p { max-width: 420px; color: rgba(255,255,255,.72); font-size: 13px; }

.look-index {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.look-index button {
  display: grid;
  min-height: 164px;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: .48;
  transition: opacity 180ms ease, padding 180ms ease;
}

.look-index button[aria-selected="true"] { padding-left: 16px; opacity: 1; }
.look-index button img { width: 104px; height: 136px; object-fit: cover; filter: grayscale(1); }
.look-index button span { display: flex; flex-direction: column; gap: 8px; }
.look-index button strong { font-size: 24px; font-weight: 520; line-height: 1; letter-spacing: -.045em; }
.look-index button small { color: var(--muted); font-size: 12px; }

.service-index {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 940px;
  color: var(--white);
  background: var(--ink);
}

.service-media { min-height: 700px; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
}

.service-heading { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.service-heading .section-label { color: rgba(255,255,255,.55); }
.service-heading > p:last-child { margin-top: 28px; color: rgba(255,255,255,.58); }

.service-ledger {
  margin: clamp(48px, 6vw, 82px) 0 30px;
  border-top: 1px solid rgba(255,255,255,.26);
}

.service-ledger article {
  display: grid;
  min-height: 120px;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.26);
}

.service-ledger article > span { font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.service-ledger h3 { font-size: 20px; font-weight: 520; letter-spacing: -.04em; }
.service-ledger p { margin-top: 4px; color: rgba(255,255,255,.56); font-size: 12px; }
.service-ledger small { color: rgba(255,255,255,.54); font-size: 10px; white-space: nowrap; }
.service-content > .line-action { align-self: flex-start; color: var(--white); }

.designer-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 880px;
  background: var(--surface);
}

.desk-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
}

.desk-copy .section-heading > p:last-child { margin-top: 28px; }

.role-index { margin-top: clamp(46px, 5vw, 78px); border-top: 1px solid var(--line); }
.role-index article {
  display: grid;
  min-height: 106px;
  grid-template-columns: 90px minmax(160px, .7fr) 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.role-index span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.role-index h3 { font-size: 18px; font-weight: 560; letter-spacing: -.035em; }
.role-index p { color: var(--muted); font-size: 12px; }
.quiet-note { margin-top: 24px; color: var(--muted); font-size: 11px; }

.desk-media { min-height: 660px; overflow: hidden; }
.desk-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1); }

.hair-notes { padding-top: clamp(86px, 9vw, 136px); padding-bottom: clamp(86px, 9vw, 136px); }
.notes-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: start; }
.notes-heading .section-label { margin-top: 12px; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--ink); }
.notes-grid article { min-height: 250px; padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
.notes-grid article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.notes-grid span { display: block; margin-bottom: 58px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.notes-grid h3 { font-size: 25px; font-weight: 520; letter-spacing: -.045em; }
.notes-grid p { max-width: 320px; margin-top: 13px; color: var(--muted); font-size: 13px; }
.notes-foot { margin-top: 22px; color: var(--muted); font-size: 11px; }

.conversion {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  border-top: 1px solid var(--ink);
}

.booking-panel,
.consultation-panel {
  min-width: 0;
  padding: var(--section-space) var(--gutter);
}

.booking-panel { color: var(--white); background: var(--ink); }
.booking-panel .section-label { color: rgba(255,255,255,.55); }
.booking-panel > p:not(.section-label, .module-status),
.consultation-panel > p:not(.section-label) { max-width: 480px; margin-top: 28px; color: rgba(255,255,255,.6); font-size: 14px; }
.consultation-panel > p:not(.section-label) { color: var(--muted); }

.booking-flow { margin: 64px 0 42px; padding: 0; border-top: 1px solid rgba(255,255,255,.3); list-style: none; }
.booking-flow li { display: grid; min-height: 94px; grid-template-columns: 54px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.3); }
.booking-flow span { color: rgba(255,255,255,.48); font-size: 10px; }
.booking-flow strong { font-size: 15px; font-weight: 560; }
.booking-flow small { color: rgba(255,255,255,.52); font-size: 10px; }
.module-status { max-width: 440px; margin-top: 20px; color: rgba(255,255,255,.48); font-size: 11px; }

.consultation-panel { background: var(--surface); }
.consultation-form { margin-top: 48px; }
.form-help { margin-bottom: 28px; color: var(--muted); font-size: 11px; }
.consultation-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
.consultation-fields label { display: flex; min-width: 0; flex-direction: column; gap: 10px; }
.consultation-fields label > span { font-size: 11px; font-weight: 700; }
.consultation-fields em, .privacy-field em { color: var(--muted); font-size: 9px; font-style: normal; }
.consultation-fields .field-wide { grid-column: 1 / -1; }
.consultation-fields :is(input, select, textarea) {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}
.consultation-fields textarea { min-height: 96px; resize: vertical; }
.consultation-fields :is(input, select, textarea):focus { border-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.privacy-field { display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; color: var(--muted); font-size: 11px; }
.privacy-field input { width: 18px; height: 18px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--ink); }
.form-feedback { min-height: 22px; margin-top: 12px; color: var(--muted); font-size: 11px; }
.form-submit {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.journal-heading { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: clamp(24px, 4vw, 70px); align-items: start; }
.journal-heading .section-label { margin-top: 10px; }
.journal-heading > p:last-child { padding-top: 8px; }
.journal-list { margin-top: clamp(58px, 7vw, 96px); border-top: 1px solid var(--ink); }
.journal-list article {
  display: grid;
  min-height: 108px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.journal-list small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.journal-list strong { font-size: 17px; font-weight: 520; letter-spacing: -.025em; }
.journal-list article > span { color: var(--muted); font-size: 10px; }
.board-empty-copy { margin-top: 20px; color: var(--muted); font-size: 11px; }

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(440px, .86fr);
  min-height: 900px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.location-media { min-height: 640px; overflow: hidden; }
.location-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.location-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: var(--section-space) var(--gutter); }
.location-copy > p:not(.section-label, .location-demo-note) { max-width: 440px; margin-top: 28px; color: var(--muted); font-size: 14px; }
.location-copy dl { margin: 54px 0 34px; border-top: 1px solid var(--ink); }
.location-copy dl > div { display: grid; min-height: 82px; grid-template-columns: 104px 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.location-copy dt { color: var(--muted); font-size: 10px; font-weight: 700; }
.location-copy dd { font-size: 13px; }
.location-copy dd small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.navigation-actions { margin-bottom: 24px; }
.navigation-actions > p { margin-bottom: 8px; color: var(--muted); font-size: 10px; }
.navigation-rail { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.navigation-rail a { min-height: 44px; border-bottom: 1px solid currentColor; font-size: 12px; line-height: 44px; }
.location-demo-note { margin-top: 20px; color: var(--muted); font-size: 10px; }
.location-demo-note strong { color: var(--ink); }
.map-shell { min-height: 230px; margin-top: 34px; border: 1px solid var(--line); }
.map-fallback { position: relative; display: grid; min-height: 228px; align-content: center; padding: 26px; overflow: hidden; background: #d8d9d6; }
.map-fallback > span { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 54px, rgba(16,16,16,.11) 55px 56px), repeating-linear-gradient(0deg, transparent 0 54px, rgba(16,16,16,.11) 55px 56px); transform: rotate(-8deg) scale(1.25); }
.map-fallback p, .map-fallback strong, .map-fallback small { position: relative; z-index: 1; }
.map-fallback p { font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.map-fallback strong { margin-top: 10px; font-size: 30px; font-weight: 520; line-height: 1; letter-spacing: -.055em; }
.map-fallback small { margin-top: 22px; color: var(--muted); font-size: 10px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  align-items: start;
  gap: clamp(26px, 5vw, 80px);
  padding: clamp(72px, 8vw, 120px) var(--gutter) 34px;
  color: var(--white);
  background: var(--ink);
}
.footer-wordmark { display: flex; flex-direction: column; }
.footer-wordmark strong { font-family: var(--font-display); font-size: clamp(38px, 6vw, 90px); font-weight: 520; line-height: .9; letter-spacing: -.08em; }
.footer-wordmark span { margin-top: 18px; color: rgba(255,255,255,.5); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 28px; font-size: 12px; }
.site-footer nav a { min-height: 32px; }
.site-footer > p { grid-column: 1 / -1; padding-top: 28px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.18); font-size: 9px; letter-spacing: .08em; }

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-panel { color: var(--white); background: var(--ink); }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-panel-head { border-color: rgba(255,255,255,.22); }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-panel-head button,
.site-header[data-navigation-pattern] .mh-customer-nav-toggle { border-radius: 0; }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile > a { border-color: rgba(255,255,255,.18); }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile > a small { color: var(--silver); }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile > a[aria-current="page"] span { color: var(--white); }
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile .mh-customer-nav-action {
  justify-content: space-between;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--white);
}
.mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile .mh-customer-nav-action::after { content: "↗"; }

@keyframes hero-drift {
  from { transform: scale(1.045); }
  to { transform: scale(1.015); }
}

@media (max-width: 1180px) {
  .site-header[data-navigation-pattern] { grid-template-columns: minmax(170px, 1fr) auto minmax(130px, 1fr); }
  .site-header .primary-nav { gap: 20px; }
  .edit-feature { min-height: 650px; }
  .role-index article { grid-template-columns: 70px 1fr; padding: 18px 0; }
  .role-index article p { grid-column: 2; }
  .location { grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); }
}

@media (max-width: 900px) {
  :root { --gutter: clamp(20px, 5.2vw, 40px); --section-space: 96px; }

  body { font-size: 15px; }

  .demo-notice { position: absolute; min-height: 27px; font-size: 9px; }
  .demo-notice strong { display: none; }

  .site-header[data-navigation-pattern],
  .site-header[data-navigation-pattern].is-scrolled {
    top: 27px;
    display: flex;
    min-height: 64px;
    justify-content: space-between;
    padding: 0 18px;
    border-color: rgba(16,16,16,.2);
    background: rgba(241,241,237,.68);
    backdrop-filter: blur(14px);
  }

  .site-header[data-navigation-pattern].is-scrolled { position: fixed; top: 0; background: rgba(250,250,247,.96); }
  .site-header .brand { min-height: 44px; }
  .site-header .brand strong { font-size: 16px; }
  .site-header .brand::after { margin-top: 5px; font-size: 7px; }

  .hero {
    display: grid;
    min-height: auto;
    padding-top: 27px;
    background: var(--canvas);
  }

  .hero-media { position: relative; height: 61svh; min-height: 440px; order: 1; }
  .hero-media::after { background: linear-gradient(180deg, rgba(241,241,237,.12), transparent 30%, rgba(241,241,237,.04)); }
  .hero-media img { object-position: 63% center; }

  .hero-copy {
    min-height: auto;
    order: 2;
    padding: 38px var(--gutter) 52px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
  }

  .hero-kicker { margin-bottom: 18px; font-size: 9px; }
  .hero h1 { max-width: 540px; font-size: clamp(43px, 12vw, 66px); line-height: .94; }
  .hero-copy > p:not(.hero-kicker) { max-width: 520px; margin-top: 20px; font-size: 14px; }
  .hero-actions { flex-wrap: wrap; margin-top: 28px; }
  .hero-folio { display: none; }

  .section-heading h2,
  .booking-panel h2,
  .consultation-panel h2,
  .location-copy h2 { font-size: clamp(38px, 8.5vw, 58px); }

  .edit-heading,
  .journal-heading { grid-template-columns: 1fr; gap: 18px; }
  .edit-heading .section-label,
  .journal-heading .section-label { margin: 0 0 6px; }
  .edit-heading > p:last-child,
  .journal-heading > p:last-child { padding-top: 4px; }

  .edit-layout { grid-template-columns: 1fr; }
  .edit-feature { min-height: 660px; }
  .look-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; gap: 1px; background: var(--line); }
  .look-index button { display: block; min-height: 0; padding: 0 0 18px; border: 0; background: var(--canvas); opacity: 1; }
  .look-index button[aria-selected="true"] { padding: 0 0 18px; box-shadow: inset 0 -3px var(--ink); }
  .look-index button img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
  .look-index button span { padding: 15px 14px 0; }
  .look-index button strong { font-size: 18px; }

  .service-index,
  .designer-desk,
  .conversion,
  .location { grid-template-columns: 1fr; }
  .service-index { min-height: 0; }
  .service-media { min-height: 58svh; }
  .service-content { padding-top: 84px; padding-bottom: 92px; }
  .designer-desk { min-height: 0; }
  .desk-media { min-height: 64svh; order: -1; }
  .desk-copy { padding-top: 84px; padding-bottom: 92px; }

  .notes-heading { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .notes-grid article { min-height: 0; padding: 26px 0; }
  .notes-grid article + article { padding-left: 0; border-left: 0; }
  .notes-grid span { margin-bottom: 20px; }
  .notes-grid p { max-width: 520px; }

  .booking-panel,
  .consultation-panel { padding-top: 88px; padding-bottom: 92px; }
  .journal-list article { grid-template-columns: 130px 1fr; padding: 20px 0; }
  .journal-list article > span { grid-column: 2; }

  .location { min-height: 0; }
  .location-media { min-height: 62svh; }
  .location-copy { padding-top: 84px; padding-bottom: 92px; }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-wordmark { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --section-space: 78px; }

  body { font-size: 14px; line-height: 1.58; }
  .demo-notice { padding-inline: 10px; letter-spacing: .04em; }

  .hero-media { height: 57svh; min-height: 380px; }
  .hero-copy { padding-top: 32px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(40px, 12.2vw, 50px); }
  .hero-copy > p:not(.hero-kicker) { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .line-action { width: 100%; min-height: 48px; }
  .line-action-dark { min-width: 0; }

  .section-heading .section-label,
  .section-label { margin-bottom: 20px; font-size: 9px; }
  .section-heading h2,
  .booking-panel h2,
  .consultation-panel h2,
  .location-copy h2 { font-size: clamp(36px, 10.5vw, 46px); }
  .section-heading > p:last-child { font-size: 13px; }

  .edit-heading { padding-bottom: 42px; }
  .edit-layout { padding-top: 34px; gap: 18px; }
  .edit-feature { min-height: 0; aspect-ratio: 4 / 5.35; }
  .edit-feature figcaption { grid-template-columns: 1fr; gap: 6px; padding: 21px 18px; }
  .edit-feature figcaption span { grid-row: auto; }
  .edit-feature figcaption strong { font-size: 22px; }
  .edit-feature figcaption p { font-size: 11px; }
  .look-index button span { gap: 5px; padding: 12px 10px 0; }
  .look-index button strong { font-size: 16px; }
  .look-index button small { font-size: 10px; }

  .service-media { min-height: 52svh; }
  .service-content { padding-top: 68px; padding-bottom: 76px; }
  .service-ledger { margin-top: 40px; }
  .service-ledger article { min-height: 112px; grid-template-columns: 62px 1fr; gap: 12px; padding: 16px 0; }
  .service-ledger article > small { grid-column: 2; }
  .service-ledger h3 { font-size: 18px; }

  .desk-media { min-height: 54svh; }
  .desk-copy { padding-top: 68px; padding-bottom: 76px; }
  .role-index { margin-top: 40px; }
  .role-index article { grid-template-columns: 62px 1fr; }

  .hair-notes { padding-top: 70px; padding-bottom: 70px; }
  .notes-grid { margin-top: 40px; }
  .notes-grid h3 { font-size: 21px; }

  .booking-panel,
  .consultation-panel { padding-top: 72px; padding-bottom: 76px; }
  .booking-flow { margin-top: 46px; }
  .booking-flow li { grid-template-columns: 38px 1fr; padding: 14px 0; }
  .booking-flow small { grid-column: 2; }
  .consultation-fields { grid-template-columns: 1fr; gap: 20px; }
  .consultation-fields .field-wide { grid-column: auto; }
  .consultation-fields :is(input, select, textarea) { font-size: 16px; }

  .journal-list { margin-top: 46px; }
  .journal-list article { grid-template-columns: 1fr; gap: 6px; min-height: 112px; }
  .journal-list article > span { grid-column: auto; }
  .journal-list strong { font-size: 15px; }

  .location-media { min-height: 50svh; }
  .location-copy { padding-top: 68px; padding-bottom: 76px; }
  .location-copy dl { margin-top: 42px; }
  .location-copy dl > div { grid-template-columns: 76px 1fr; }
  .map-shell { min-height: 210px; }
  .map-fallback { min-height: 208px; }

  .site-footer { grid-template-columns: 1fr; padding-top: 70px; }
  .footer-wordmark { grid-column: auto; }
  .footer-wordmark strong { font-size: 48px; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); }
  .site-footer > p { grid-column: auto; }

  .mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-panel { padding-right: 20px; padding-left: 20px; }
  .mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile { margin-top: 7vh; }
  .mh-customer-nav-layer[data-navigation-pattern="editorial-overlay"] .mh-customer-nav-mobile > a { min-height: 66px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media img { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
