@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Zen+Kaku+Gothic+New:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600&display=swap");

:root {
  --paper: #f6f3ee;
  --paper-2: #ece7df;
  --ink: #1a1715;
  --muted: #746c64;
  --accent: #b98a86;
  --line: rgba(26, 23, 21, 0.18);
  --line-light: rgba(246, 243, 238, 0.22);
  --display: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --latin: "Marcellus", Georgia, serif;
  --rail-width: 240px;
  --gutter: clamp(28px, 5.2vw, 88px);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.num {
  font-family: var(--latin);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.02em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.rail {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: var(--rail-width);
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 28px 30px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
}

.brand__latin,
.mobile-bar__latin {
  font-family: var(--latin);
  font-size: 34px;
  letter-spacing: 0.18em;
}

.brand__jp,
.mobile-bar__jp {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand__place {
  margin-top: 24px;
  color: var(--accent);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.rail__nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 74px;
  padding-bottom: 55px;
}

.rail__link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 13px;
  width: max-content;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease;
}

.rail__link::before {
  position: absolute;
  top: 50%;
  left: -28px;
  width: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: width 180ms ease;
}

.rail__link:hover,
.rail__link.is-active {
  color: var(--ink);
  transform: translateX(5px);
}

.rail__link.is-active::before {
  width: 16px;
}

.rail__index {
  color: var(--accent);
  font-family: var(--latin);
  font-size: 10px;
}

.rail__footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rail__tel {
  width: max-content;
  font-size: 17px;
  letter-spacing: 0.05em;
}

.rail__tel:hover {
  color: var(--accent);
}

.rail__hours {
  margin-bottom: 17px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease;
}

.button span {
  font-size: 17px;
  line-height: 1;
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

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

.button--light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  color: var(--paper);
  background: transparent;
}

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

.mobile-bar,
.drawer,
.drawer-backdrop {
  display: none;
}

.main-content {
  margin-left: var(--rail-width);
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 78px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(390px, 0.82fr) minmax(470px, 1.18fr);
  align-items: center;
  padding: 78px 0 75px var(--gutter);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 28px 34px 20px 0;
}

.eyebrow,
.section-kicker,
.booking-card__eyebrow,
.stylist-card__role {
  margin: 0;
  color: var(--accent);
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 8px;
  color: var(--muted);
}

.hero h1 {
  margin: 47px 0 28px;
  font-family: var(--display);
  font-size: clamp(44px, 4.55vw, 74px);
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: -0.08em;
  word-break: keep-all;
  line-break: strict;
}

.hero h1 em,
.philosophy__statement em {
  color: var(--accent);
  font-style: normal;
}

.hero__lead {
  margin: 0;
  font-size: 17px;
  line-height: 2.05;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.hero__meta b {
  margin-right: 3px;
  color: var(--ink);
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link span {
  font-size: 17px;
  transition: transform 180ms ease;
}

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

.text-link:hover span {
  transform: translateY(3px);
}

.hero__visual {
  position: relative;
  height: min(720px, 78vw);
  min-height: 560px;
  overflow: hidden;
}

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

.hero__stamp {
  position: absolute;
  right: 25px;
  bottom: 24px;
  color: var(--paper);
  font-family: var(--latin);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
}

.hero__stamp b {
  font-size: 22px;
  font-weight: 400;
}

.hero__side-note {
  position: absolute;
  right: 15px;
  bottom: 18px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.14em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.section {
  padding: 150px 0;
  border-top: 1px solid var(--line);
}

.section-shell {
  display: grid;
  max-width: 1330px;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1.25fr);
  gap: clamp(45px, 7vw, 125px);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-shell--wide {
  display: block;
  max-width: none;
  padding-right: 0;
}

.section-shell--wide .section-intro,
.section-shell--wide .styles__head {
  max-width: 1330px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-intro {
  position: relative;
}

.section-kicker {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 40px;
}

.section-kicker .num {
  color: var(--ink);
}

.section-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.1vw, 53px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.08em;
}

.section-intro__note {
  margin: 43px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.section-body {
  min-width: 0;
}

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

.concern-card {
  min-height: 224px;
  padding: 31px 32px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concern-card__no {
  display: block;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 13px;
}

.concern-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.concern-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.concerns__closing {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
}

.concerns__closing .line {
  display: block;
  width: 54px;
  height: 1px;
  background: var(--accent);
}

.concerns__closing p {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
}

.concerns__closing strong {
  color: var(--accent);
  font-weight: 400;
}

.philosophy {
  background: var(--paper-2);
}

.philosophy__statement {
  margin: -10px 0 53px;
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 65px);
  line-height: 1.35;
  letter-spacing: -0.08em;
}

.philosophy__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 80px);
  margin-bottom: 63px;
}

.philosophy__columns p {
  max-width: 400px;
  margin: 0;
  color: #4f4842;
  font-size: 13px;
  line-height: 2.35;
}

.wide-photo {
  margin: 0;
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  object-position: center 52%;
}

.wide-photo figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 63px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact__value {
  font-size: 34px;
  line-height: 1;
}

.fact__label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.flow {
  background: var(--paper);
}

.flow-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 55px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.flow-lead p {
  max-width: 390px;
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.8;
}

.flow-lead__note {
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

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

.flow-step {
  min-height: 265px;
  padding: 23px 25px 18px;
  border-right: 1px solid var(--line);
}

.flow-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
}

.flow-step__no {
  font-size: 13px;
}

.flow-step__time {
  color: var(--muted);
  font-size: 9px;
}

.flow-step h3 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.flow-step__sub {
  margin: 15px 0 20px;
  color: var(--accent);
  font-size: 11px;
}

.flow-step > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
}

.styles {
  padding-top: 137px;
  padding-bottom: 158px;
  background: var(--ink);
  color: var(--paper);
}

.styles .section-kicker .num {
  color: var(--paper);
}

.styles__head {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1.25fr);
  gap: clamp(45px, 7vw, 125px);
  margin-bottom: 55px;
}

.styles__copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.styles__copy p {
  margin: 0;
  color: #c7c0ba;
  font-size: 13px;
  line-height: 2;
}

.gallery-controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.gallery-arrow {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(246, 243, 238, 0.4);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  transition: background 180ms ease, color 180ms ease;
}

.gallery-arrow:hover {
  color: var(--ink);
  background: var(--paper);
}

.gallery-hint {
  margin-left: 12px;
  color: #958b83;
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.gallery-viewport {
  position: relative;
  width: calc(100vw - var(--rail-width));
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 var(--gutter) 24px;
}

.style-card {
  width: clamp(215px, 20vw, 294px);
  flex: 0 0 auto;
  margin: 0;
}

.style-card__image {
  overflow: hidden;
  background: #292521;
}

.style-card__image img {
  width: 100%;
  aspect-ratio: 0.69 / 1;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.style-card:nth-child(1) img {
  object-position: 45% center;
}

.style-card:nth-child(2) img {
  object-position: center;
}

.style-card:nth-child(3) img {
  object-position: 58% center;
}

.style-card:nth-child(4) img {
  object-position: 60% center;
}

.style-card:nth-child(5) img {
  object-position: 52% center;
}

.style-card:nth-child(6) img {
  object-position: center;
}

.style-card:hover img {
  transform: scale(1.04);
}

.style-card figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-top: 16px;
  color: #aaa19a;
  font-size: 10px;
  line-height: 1.5;
}

.style-card figcaption strong {
  grid-column: 1 / -1;
  color: var(--paper);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.style-card figcaption span:last-child {
  color: var(--accent);
  text-align: right;
}

.gallery-progress {
  width: calc(100% - (var(--gutter) * 2));
  height: 1px;
  margin: 17px var(--gutter) 0;
  background: rgba(246, 243, 238, 0.2);
}

.gallery-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  transition: width 120ms ease;
}

.menu {
  background: var(--paper-2);
}

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

.menu-heading p {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
}

.menu-heading > span {
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.price-table-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 19px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
  font-weight: 400;
}

.price-table thead th {
  padding-top: 13px;
  padding-bottom: 13px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody th {
  width: 47%;
  font-family: var(--display);
  font-size: 19px;
}

.price-table tbody td:nth-child(2) {
  width: 25%;
  color: var(--muted);
  font-size: 10px;
}

.price {
  font-size: 22px;
  text-align: right !important;
}

.price span {
  margin-left: 4px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.menu-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 25px;
}

.menu-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.menu-notes span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
}

.stylists {
  background: var(--paper);
}

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(25px, 4vw, 70px);
}

.stylist-card {
  min-width: 0;
}

.stylist-card--reverse {
  padding-top: 90px;
}

.stylist-card__visual {
  position: relative;
  overflow: hidden;
}

.stylist-card__visual img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.stylist-card:first-child .stylist-card__visual img {
  object-position: 56% center;
}

.stylist-card:last-child .stylist-card__visual img {
  object-position: center;
}

.stylist-card__mark {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.stylist-card__info {
  padding-top: 22px;
}

.stylist-card__role {
  margin-bottom: 14px;
}

.stylist-card h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.stylist-card h3 span {
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.stylist-card__bio {
  max-width: 365px;
  margin: 18px 0 29px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.career {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.career div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 10px;
}

.career dt {
  color: var(--ink);
}

.career dd {
  margin: 0;
}

.access {
  padding-bottom: 135px;
  background: var(--paper-2);
}

.access__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.7fr);
  gap: clamp(28px, 5vw, 75px);
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table tr {
  border-top: 1px solid var(--line);
}

.access-table tr:last-child {
  border-bottom: 1px solid var(--line);
}

.access-table th,
.access-table td {
  padding: 16px 9px;
  text-align: left;
  vertical-align: top;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.9;
}

.access-table th {
  width: 29%;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.access__image {
  margin: 0;
}

.access__image img {
  width: 100%;
  aspect-ratio: 0.84 / 1;
  object-fit: cover;
  object-position: center;
}

.access__image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-top: 85px;
  padding: 38px 40px;
  color: var(--paper);
  background: var(--ink);
}

.booking-card h3 {
  margin: 19px 0 12px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.07em;
}

.booking-card p:not(.booking-card__eyebrow) {
  max-width: 350px;
  margin: 0;
  color: #b7aea6;
  font-size: 11px;
  line-height: 1.9;
}

.booking-card__action {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.booking-card__phone {
  font-size: 29px;
  letter-spacing: 0.04em;
}

.booking-card__phone:hover {
  color: var(--accent);
}

.booking-card__action > span {
  color: #a89d95;
  font-size: 9px;
}

.booking-card__action .button {
  margin-top: 17px;
}

.footer {
  display: grid;
  min-height: 250px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 40px var(--gutter);
  color: var(--paper);
  background: var(--ink);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer__brand .brand__latin {
  font-size: 28px;
}

.footer > p {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: #a89d95;
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer__meta a:hover {
  color: var(--paper);
}

@media (max-width: 1120px) {
  :root {
    --rail-width: 210px;
    --gutter: clamp(25px, 4.5vw, 58px);
  }

  .rail {
    padding-right: 22px;
    padding-left: 22px;
  }

  .rail__link::before {
    left: -22px;
  }

  .hero {
    grid-template-columns: minmax(350px, 0.85fr) minmax(380px, 1.15fr);
  }

  .section-shell {
    gap: 48px;
  }

  .styles__head {
    gap: 48px;
  }

  .booking-card {
    padding: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 22px;
  }

  body {
    padding-top: 62px;
  }

  .rail {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-bar {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-bar__brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.8;
  }

  .mobile-bar__latin {
    font-size: 23px;
  }

  .mobile-bar__jp {
    margin-top: 7px;
    font-size: 7px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0 8px 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .menu-toggle__icon {
    display: flex;
    width: 24px;
    flex-direction: column;
    gap: 6px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .drawer-backdrop {
    position: fixed;
    z-index: 39;
    inset: 0;
    display: block;
    background: rgba(26, 23, 21, 0.35);
  }

  .drawer {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 390px);
    height: 100vh;
    flex-direction: column;
    padding: 25px 25px 28px;
    background: var(--paper);
  }

  .drawer[hidden],
  .drawer-backdrop[hidden] {
    display: none;
  }

  .drawer__top,
  .drawer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .drawer__eyebrow {
    color: var(--muted);
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .drawer__close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .drawer__close span {
    color: var(--accent);
    font-size: 20px;
    line-height: 0.5;
  }

  .drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto 0;
  }

  .drawer__nav a {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 22px;
  }

  .drawer__nav a span {
    color: var(--accent);
    font-family: var(--latin);
    font-size: 10px;
  }

  .drawer__bottom {
    align-items: end;
    gap: 20px;
  }

  .drawer__bottom > a:first-child {
    font-size: 16px;
  }

  .drawer__bottom .button {
    min-height: 42px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 700px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero__copy {
    padding-right: 25px;
  }

  .hero h1 {
    font-size: clamp(45px, 6vw, 70px);
  }

  .section {
    padding: 116px 0;
  }

  .section-shell {
    grid-template-columns: minmax(150px, 0.33fr) minmax(0, 1.2fr);
    gap: 40px;
  }

  .section-intro h2 {
    font-size: 38px;
  }

  .section-shell--wide .section-intro,
  .section-shell--wide .styles__head {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .styles__head {
    gap: 40px;
  }

  .stylist-grid {
    gap: 28px;
  }

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

  .booking-card__action {
    align-items: flex-start;
  }

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

  .footer > p {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer__brand,
  .footer__meta {
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 14px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 72px var(--gutter) 0;
  }

  .hero__copy {
    padding: 30px 0 58px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__meta {
    gap: 12px;
    justify-content: space-between;
    margin-top: 32px;
    font-size: 10px;
  }

  .hero__meta b {
    font-size: 17px;
  }

  .text-link {
    margin-top: 36px;
  }

  .hero__visual {
    width: calc(100% + (var(--gutter) * 2));
    height: 405px;
    min-height: 0;
    margin-left: calc(var(--gutter) * -1);
  }

  .hero__visual img {
    object-position: 57% center;
  }

  .hero__side-note {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-shell {
    display: block;
    padding: 0 var(--gutter);
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-kicker {
    margin-bottom: 24px;
  }

  .section-intro h2 {
    font-size: 37px;
  }

  .section-intro__note {
    margin-top: 23px;
    font-size: 11px;
  }

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

  .concern-card {
    min-height: auto;
    padding: 24px 20px 25px;
  }

  .concern-card__no {
    margin-bottom: 18px;
  }

  .concern-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .concerns__closing {
    align-items: flex-start;
    gap: 16px;
    margin-top: 35px;
  }

  .concerns__closing p {
    font-size: 16px;
    line-height: 1.8;
  }

  .philosophy__statement {
    margin-top: 0;
    margin-bottom: 31px;
    font-size: 37px;
  }

  .philosophy__columns {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-bottom: 38px;
  }

  .philosophy__columns p {
    max-width: none;
    font-size: 12px;
    line-height: 2.15;
  }

  .wide-photo img {
    aspect-ratio: 1.22 / 1;
  }

  .facts-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .fact {
    min-height: 94px;
    padding: 15px;
  }

  .fact__value {
    font-size: 27px;
  }

  .fact__label {
    margin-top: 8px;
    font-size: 10px;
  }

  .flow-lead {
    display: block;
    margin-bottom: 33px;
  }

  .flow-lead p {
    font-size: 17px;
  }

  .flow-lead__note {
    display: block;
    margin-top: 17px;
    font-size: 8px;
  }

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

  .flow-step {
    min-height: 245px;
    padding: 18px 15px 17px;
  }

  .flow-step h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .flow-step__sub {
    margin-top: 11px;
  }

  .flow-step > p:last-child {
    font-size: 10px;
  }

  .styles {
    padding-top: 90px;
    padding-bottom: 92px;
  }

  .section-shell--wide {
    padding-right: 0;
    padding-left: 0;
  }

  .section-shell--wide .section-intro,
  .section-shell--wide .styles__head {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .styles__head {
    display: block;
    margin-bottom: 34px;
  }

  .styles__copy {
    display: block;
    margin-top: 20px;
  }

  .styles__copy p {
    font-size: 12px;
  }

  .gallery-controls {
    justify-content: space-between;
    margin-top: 23px;
  }

  .gallery-hint {
    margin-left: auto;
  }

  .gallery-viewport {
    width: 100vw;
  }

  .gallery-track {
    gap: 12px;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .style-card {
    width: 205px;
  }

  .style-card figcaption {
    font-size: 9px;
  }

  .style-card figcaption strong {
    font-size: 16px;
  }

  .gallery-progress {
    width: calc(100% - (var(--gutter) * 2));
    margin-top: 13px;
  }

  .menu-heading {
    display: block;
    margin-bottom: 20px;
  }

  .menu-heading p {
    font-size: 17px;
  }

  .menu-heading > span {
    display: block;
    margin-top: 10px;
  }

  .price-table th,
  .price-table td {
    padding: 15px 7px;
    font-size: 10px;
  }

  .price-table thead th {
    font-size: 8px;
  }

  .price-table tbody th {
    width: 39%;
    font-size: 17px;
  }

  .price-table tbody td:nth-child(2) {
    width: 25%;
    font-size: 8px;
  }

  .price {
    font-size: 17px;
  }

  .price span {
    font-size: 8px;
  }

  .menu-notes {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .menu-notes span {
    display: inline;
    margin-right: 8px;
    font-size: 13px;
  }

  .stylist-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .stylist-card--reverse {
    padding-top: 0;
  }

  .stylist-card__visual img {
    aspect-ratio: 0.9 / 1;
  }

  .stylist-card h3 {
    font-size: 23px;
  }

  .stylist-card__bio {
    font-size: 11px;
  }

  .access__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .access-table th,
  .access-table td {
    padding: 13px 5px;
    font-size: 10px;
  }

  .access-table th {
    width: 25%;
    font-size: 13px;
  }

  .access__image {
    width: 70%;
    margin-left: auto;
  }

  .booking-card {
    gap: 28px;
    margin-top: 58px;
    padding: 28px 22px 25px;
  }

  .booking-card h3 {
    font-size: 24px;
  }

  .booking-card__action {
    min-width: 0;
  }

  .booking-card__phone {
    font-size: 25px;
  }

  .footer {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 35px var(--gutter);
  }

  .footer > p {
    order: 1;
    font-size: 21px;
  }

  .footer__brand {
    order: 0;
  }

  .footer__meta {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    order: 2;
  }
}

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

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