:root {
  --ink: #0b0c0f;
  --ink-soft: #15171c;
  --paper: #f2f1ec;
  --white: #fff;
  --muted: #989ba3;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(11,12,15,.15);
  --accent: #9eb8ff;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page: clamp(22px, 4vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Arial, sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page);
  color: var(--ink);
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform .4s var(--ease), height .4s var(--ease), background .4s ease, color .4s ease;
}
.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(242,241,236,.92);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  pointer-events: auto;
}
.wordmark { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.wordmark-small { margin-bottom: 4px; font-family: Georgia, serif; font-size: 10px; letter-spacing: .36em; }
.wordmark-main { font-family: Georgia, "Times New Roman", serif; font-size: 23px; letter-spacing: .3em; }
.global-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.global-nav > a:not(.nav-reserve) { position: relative; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.global-nav > a:not(.nav-reserve)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.global-nav > a:hover::after, .global-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-reserve { display: flex; align-items: center; gap: 30px; padding: 14px 16px; color: var(--white); background: var(--ink); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.site-header.is-scrolled .nav-reserve { color: var(--white); background: var(--ink); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}
.hero-logo-center {
  width: clamp(220px, 24vw, 370px);
  opacity: 0;
  filter: blur(5px);
  transform: scale(.985);
  animation: hero-logo-in .9s var(--ease) .2s forwards;
}
.hero-logo-center img { width: 100%; height: auto; mix-blend-mode: multiply; }
.hero-title {
  position: absolute;
  left: 50%;
  bottom: clamp(112px, 14vh, 150px);
  width: calc(100% - 40px);
  margin: 0;
  color: rgba(11,12,15,.68);
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .18em;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 8px);
  animation: hero-message-in .75s var(--ease) 1.05s forwards;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(11,12,15,.55);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 8px);
  animation: hero-message-in .75s var(--ease) 1.45s forwards;
}
.hero-scroll i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(11,12,15,.14);
}
.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,12,15,.72);
  transform: translateY(-100%);
  animation: hero-scroll-line 1.8s ease-in-out 2s infinite;
}
@keyframes hero-logo-in {
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}
@keyframes hero-message-in {
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes hero-scroll-line {
  0% { transform: translateY(-100%); }
  45%, 60% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
.eyebrow { margin: 0 0 28px; color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.button {
  min-width: 190px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}
.button-primary { color: var(--ink); background: var(--accent); }
.button-primary:hover { background: var(--white); }

.section { position: relative; padding: clamp(100px, 12vw, 190px) var(--page); }
.section-index { position: absolute; top: 50%; left: 18px; font-size: 9px; letter-spacing: .18em; transform: translateY(-50%) rotate(-90deg); }
.statement { min-height: 900px; display: flex; align-items: center; overflow: hidden; }
.statement-inner { width: min(1050px, 86%); margin: 0 auto; }
.statement h2, .booking h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
  font-size: clamp(45px, 6.4vw, 96px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -.05em;
}
.statement-copy { width: min(650px, 58%); margin: 72px 3% 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.statement-copy p { margin: 0; font-size: 13px; line-height: 2.2; }
.statement-vertical { position: absolute; right: 25px; top: 50%; margin: 0; color: rgba(11,12,15,.3); font-size: 9px; letter-spacing: .34em; writing-mode: vertical-rl; transform: translateY(-50%); }

.services { color: var(--white); background: var(--ink-soft); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 86px; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading h2, .salon-title h2, .access-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 8vw, 128px);
  font-weight: 400;
  line-height: .85;
  letter-spacing: -.06em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  min-height: 155px;
  display: grid;
  grid-template-columns: 70px minmax(200px, 1.2fr) 1fr .8fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease), color .3s ease, background .3s ease;
}
.service-item:hover { padding: 0 22px; color: var(--ink); background: var(--accent); }
.service-no, .service-keyword { font-size: 9px; letter-spacing: .18em; }
.service-item h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(35px, 4vw, 64px); font-weight: 400; }
.service-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.service-item:hover p { color: rgba(11,12,15,.7); }
.service-keyword { color: var(--muted); text-align: right; }
.service-item:hover .service-keyword { color: var(--ink); }
.services-cta { display: flex; justify-content: flex-end; align-items: end; gap: 70px; margin-top: 65px; }
.services-cta p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.9; }
.text-link { padding-bottom: 7px; border-bottom: 1px solid var(--white); font-size: 12px; letter-spacing: .1em; }
.text-link span { margin-left: 50px; }

.salon { overflow: hidden; }
.salon-title { position: relative; z-index: 2; margin-bottom: -30px; }
.salon-title h2 { line-height: .92; }
.salon-gallery { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-rows: 250px 250px; gap: 14px; margin-left: 8vw; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: #d5d5d2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: transform 1s var(--ease), filter .6s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery-wide { grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-wide img, .gallery-tall img { image-rendering: auto; }
.gallery-item figcaption { position: absolute; left: 14px; bottom: 12px; padding: 5px 7px; color: var(--white); background: rgba(11,12,15,.68); font-size: 8px; letter-spacing: .16em; }
.salon-note { width: 350px; margin: 40px 0 0 auto; padding-right: 5vw; font-size: 12px; line-height: 2; }

.staff { color: var(--white); background: var(--ink); }
.staff-grid { max-width: 1080px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(38px, 6vw, 90px); margin-left: auto; }
.staff-image { width: min(220px, 100%); aspect-ratio: 1; overflow: hidden; background: #24262b; }
.staff-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); transition: transform .9s var(--ease), filter .5s ease; }
.staff-card:hover .staff-image img { transform: scale(1.025); filter: saturate(.9); }
.staff-card:nth-child(1) img { object-position: 50% 25%; }
.staff-card:nth-child(2) img { object-position: 50% 24%; }
.staff-card:nth-child(3) img { object-position: 50% 25%; }
.staff-meta { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.staff-meta p { margin: 0; font-size: 18px; letter-spacing: .06em; }
.staff-meta p span { display: block; margin-bottom: 7px; color: var(--accent); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.staff-roman { color: var(--muted); font-size: 8px; letter-spacing: .14em; }
.staff-message { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.9; }

.access { min-height: 850px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 8vw, 130px); align-items: center; }
.access-photo { position: relative; aspect-ratio: 1 / 1.07; overflow: hidden; background: #ddd; }
.access-photo img { width: 100%; height: 100%; object-fit: cover; }
.access-photo span { position: absolute; left: 18px; bottom: 18px; padding: 8px 10px; color: var(--white); background: var(--ink); font-size: 8px; letter-spacing: .18em; }
.access-content h2 { margin-bottom: 60px; }
.info-list { display: grid; grid-template-columns: 120px 1fr; margin: 0; border-top: 1px solid var(--dark-line); }
.info-list dt, .info-list dd { padding: 18px 0; border-bottom: 1px solid var(--dark-line); }
.info-list dt { color: #6d7078; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.info-list dd { margin: 0; font-size: 12px; line-height: 1.7; }
.info-list small { color: #6d7078; font-size: 10px; }
.access-links { display: flex; gap: 9px; margin-top: 35px; }
.button-light { color: var(--white); background: var(--ink); }
.button-light:hover { color: var(--ink); background: var(--accent); }
.button-line { border-color: var(--dark-line); }
.button-line:hover { color: var(--white); background: var(--ink); }

.booking { min-height: 720px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: #101217; text-align: center; }
.booking::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 50% 50%, var(--accent), transparent 48%); }
.booking-mark { position: absolute; top: 50%; left: 50%; color: transparent; font-family: Georgia, serif; font-size: min(55vw, 730px); line-height: 1; -webkit-text-stroke: 1px rgba(255,255,255,.08); transform: translate(-50%, -48%); }
.booking-inner { position: relative; z-index: 2; }
.booking h2 { margin-bottom: 35px; }
.booking-inner > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 12px; line-height: 2; }
.booking-link { width: min(520px, 80vw); display: flex; justify-content: space-between; align-items: center; margin: 55px auto 0; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.55); font-family: Georgia, serif; font-size: clamp(25px, 3vw, 42px); text-align: left; }
.booking-link i { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-family: Arial, sans-serif; font-size: 16px; font-style: normal; transition: background .3s ease, color .3s ease; }
.booking-link:hover i { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.site-footer { min-height: 265px; display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 40px; padding: 60px var(--page); color: var(--white); background: var(--ink); border-top: 1px solid var(--line); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .wordmark-main { font-size: 28px; }
.site-footer > p { margin: 0; align-self: center; justify-self: end; color: var(--muted); font-family: Georgia, serif; font-size: 13px; letter-spacing: .08em; }
.footer-links { display: flex; gap: 30px; font-size: 9px; letter-spacing: .15em; }
.site-footer small { justify-self: end; color: #6e7077; font-size: 8px; letter-spacing: .12em; }
.mobile-book { display: none; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .global-nav { gap: 15px; }
  .global-nav > a:not(.nav-reserve) { display: none; }
  .service-item { grid-template-columns: 45px .9fr 1fr; }
  .service-keyword { display: none; }
  .salon-gallery { margin-left: 0; }
  .access { gap: 45px; }
  .access-links { flex-direction: column; }
}

@media (max-width: 720px) {
  :root { --page: 20px; }
  body { padding-bottom: 60px; }
  .site-header, .site-header.is-scrolled { height: 68px; }
  .wordmark-main { font-size: 18px; }
  .wordmark-small { font-size: 8px; }
  .menu-button {
    position: relative;
    z-index: 102;
    width: 60px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-button-label { font-size: 8px; letter-spacing: .14em; }
  .menu-button-lines { width: 20px; display: grid; gap: 6px; }
  .menu-button-lines i { width: 100%; height: 1px; display: block; background: currentColor; transition: transform .3s ease; }
  .menu-button[aria-expanded="true"] .menu-button-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 105px 30px 85px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav > a:not(.nav-reserve) { width: 100%; display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 32px; letter-spacing: -.02em; text-transform: none; }
  .nav-reserve { width: 100%; margin-top: 35px; }
  .site-header:has(.global-nav.is-open) { color: var(--white); background: transparent; border-color: transparent; }

  .hero-logo-center { width: min(68vw, 290px); }
  .hero-title { bottom: 108px; font-size: 11px; letter-spacing: .14em; }
  .hero-scroll { bottom: 18px; }
  .hero-scroll i { height: 34px; }

  .section { padding-top: 100px; padding-bottom: 100px; }
  .section-index, .statement-vertical { display: none; }
  .statement { min-height: 750px; }
  .statement-inner { width: 100%; }
  .statement h2 { font-size: 45px; }
  .statement-copy { width: 100%; margin-top: 55px; grid-template-columns: 1fr; gap: 24px; }
  .statement-copy p { font-size: 12px; line-height: 2; }
  .section-heading { align-items: flex-start; margin-bottom: 55px; }
  .section-heading h2, .salon-title h2, .access-content h2 { font-size: 63px; }
  .section-heading > p { display: none; }
  .service-item { min-height: 145px; grid-template-columns: 32px 1fr; gap: 15px; padding: 25px 0; }
  .service-item:hover { padding: 25px 12px; }
  .service-item h3 { font-size: 42px; }
  .service-item p { grid-column: 2; font-size: 11px; }
  .services-cta { display: block; margin-top: 45px; }
  .services-cta p { margin-bottom: 22px; }

  .salon-title { margin-bottom: 35px; }
  .salon-title h2 { font-size: 51px; line-height: .95; }
  .salon-gallery { grid-template-columns: 1.2fr .8fr; grid-template-rows: 220px 180px 150px; gap: 8px; }
  .gallery-wide { grid-row: span 2; }
  .gallery-tall { grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .salon-note { width: 100%; margin-top: 30px; padding: 0; }

  .staff-grid { grid-template-columns: 1fr; gap: 42px; margin-left: 0; }
  .staff-card { display: grid; grid-template-columns: 112px 1fr; grid-template-rows: auto 1fr; column-gap: 18px; }
  .staff-image { grid-row: 1 / span 2; width: 112px; height: 112px; aspect-ratio: 1; }
  .staff-meta { align-self: start; margin-top: 0; padding-bottom: 12px; }
  .staff-meta p { font-size: 16px; }
  .staff-roman { display: none; }
  .staff-message { margin-top: 11px; font-size: 10px; }

  .access { display: flex; flex-direction: column; gap: 70px; }
  .access-photo { width: calc(100% + 40px); aspect-ratio: 1.15; margin: 0 -20px; }
  .access-content { width: 100%; }
  .access-content h2 { margin-bottom: 45px; }
  .info-list { grid-template-columns: 90px 1fr; }
  .access-links { flex-direction: row; }
  .access-links .button { min-width: 0; flex: 1; padding: 0 14px; font-size: 10px; }

  .booking { min-height: 620px; }
  .booking h2 { font-size: 48px; }
  .booking-inner > p:not(.eyebrow) { padding: 0 10px; }
  .booking-link { width: 90%; margin-top: 42px; font-size: 27px; }
  .site-footer { min-height: 310px; grid-template-columns: 1fr; gap: 28px; padding-bottom: 50px; }
  .site-footer > p, .site-footer small { justify-self: start; }
  .footer-links { flex-wrap: wrap; }
  .mobile-book { position: fixed; z-index: 90; left: 0; bottom: 0; width: 100%; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; color: var(--ink); background: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .15em; transform: translateY(100%); pointer-events: none; transition: transform .4s var(--ease); }
  body.has-scrolled .mobile-book { transform: translateY(0); pointer-events: auto; }
}

@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-logo-center, .hero-title, .hero-scroll { opacity: 1; filter: none; transform: translate(-50%, 0); animation: none; }
  .hero-logo-center { transform: none; }
  .hero-scroll i::after { transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
}
