/* =========================================================
   EDIT HERE: colors, typography, spacing
   ========================================================= */
:root {
  --ink: #191715;
  --paper: #f3efe8;
  --lime: #e7d7b8;
  --orange: #d97258;
  --muted: #a09b93;
  --line: rgba(17, 17, 15, 0.18);
  --line-dark: rgba(238, 237, 232, 0.22);
  --font-sans: "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-display: "Cormorant Garamond", "Shippori Mincho", "Yu Mincho", serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(6rem, 12vw, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
.hero-title,
.works-head h2,
.services-head h2,
.updates-head h2,
.contact h2,
.price-card h3,
.booking-demo h2,
.access-copy h2 { font-family: var(--font-display); }
.features .display-copy,
.features .display-copy strong,
.statement .display-copy,
.lab .display-copy,
.guide .display-copy { font-family: var(--font-serif); }
.intro-topline,
.intro-bottomline,
.hero-meta,
.section-index,
.service-no,
.work-info span,
.work-info p,
.update-tag,
.eyebrow,
.calendar-week,
.calendar-month,
.footer-bottom { font-family: var(--font-mono); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.intro-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem var(--gutter) 2rem;
  background: var(--ink);
  color: var(--paper);
  visibility: visible;
  opacity: 1;
  transition: opacity .9s ease, visibility .9s ease;
}
.intro-loader.is-finished {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.intro-topline,
.intro-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.intro-skip {
  border: 0;
  padding: .25rem 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: .65rem;
  letter-spacing: .16em;
}
.intro-stage {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 38vh;
  overflow: hidden;
}
.intro-word {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 .14em;
  box-sizing: border-box;
  padding-inline: var(--gutter);
  font-size: clamp(2.8rem, 7.4vw, 9rem);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.intro-word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%) rotate(3deg);
  filter: blur(.6rem);
  transition:
    opacity .55s cubic-bezier(.2, .8, .2, 1),
    transform .75s cubic-bezier(.16, 1, .3, 1),
    filter .75s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i) * 34ms);
}
.intro-word.is-current {
  opacity: 1;
}
.intro-word.is-current .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}
.intro-word.is-leaving {
  opacity: 1;
}
.intro-word.is-leaving .char {
  opacity: 0;
  transform: translateY(-105%) rotate(-3deg);
  filter: blur(.5rem);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 8.5rem;
  padding: 1.5rem var(--gutter);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  transition: background .35s ease, color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(25, 23, 21, .86);
  border-bottom: 1px solid rgba(243, 239, 232, .16);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; gap: 1.25rem; align-items: flex-start; width: fit-content; }
.brand-mark {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: .08em;
  font-size: .8rem;
  letter-spacing: .12em;
}
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.header-note { margin: 0; font-size: .62rem; line-height: 1.4; letter-spacing: .15em; text-align: center; }
.menu-toggle {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 0;
  padding: .2rem 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  letter-spacing: .14em;
}
.menu-toggle i,
.menu-toggle i::after {
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .3s;
}
.menu-toggle i::after { transform: translateY(.4rem); }
.menu-toggle[aria-expanded="true"] i { transform: translateY(.2rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
.site-nav {
  position: fixed;
  z-index: 60;
  inset: 0;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  padding: 9rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  isolation: isolate;
  transition: opacity .35s, visibility .35s;
}
.site-nav.is-open { visibility: visible; opacity: 1; }
.site-nav a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--ink);
  padding: .25rem 0;
  font-size: clamp(1.45rem, 4.2vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.site-nav small { font-size: .7rem; letter-spacing: 0; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header {
  color: var(--ink);
  position: fixed;
  z-index: 70;
}
body.menu-open .site-nav {
  position: fixed;
  z-index: 60;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: var(--lime);
}
body.menu-open > main,
body.menu-open > footer { visibility: hidden; }

.hero {
  position: relative;
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  padding: 11rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero-meta {
  position: absolute;
  top: 25%;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  letter-spacing: .15em;
}
.hero-title {
  position: relative;
  z-index: 2;
  margin: 0 0 2rem;
  font-size: clamp(4rem, 11.3vw, 11rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.07em;
}
.hero-title span { display: block; }
.hero-title span:last-child { padding-left: 9vw; white-space: nowrap; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--paper); }
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 0 0 1.5rem auto;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.75;
  font-weight: 500;
}
.hero-copy-en { display: inline-block; margin-top: .55rem; color: var(--muted); font-size: .72rem; letter-spacing: .02em; }
.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  font-size: .65rem;
  letter-spacing: .16em;
}
.hero-photo-wrap {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  overflow: hidden;
  background: #312b26;
  transform: translateZ(0);
  clip-path: inset(0);
}
.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(25,23,21,.4), rgba(25,23,21,0) 62%), linear-gradient(180deg, rgba(25,23,21,.08), rgba(25,23,21,.18));
  pointer-events: none;
}
.hero-slides {
  position: absolute;
  inset: 0;
  transform: scale(var(--hero-photo-scale, 1));
  transform-origin: 62% 48%;
  will-change: transform;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.8) contrast(.96);
  transform: scale(1.04);
  transition: opacity .6s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}
.hero-photo.is-active { opacity: 1; transform: scale(1); }
.hero-photo-label {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 5.5rem;
  color: var(--paper);
  font-size: .6rem;
  letter-spacing: .14em;
}
.hero-photo-counter {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  bottom: 1.1rem;
  color: var(--paper);
  font-size: .6rem;
  letter-spacing: .14em;
}
.scissors-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: var(--paper);
  font-size: .55rem;
  letter-spacing: .16em;
  opacity: .72;
  transform: translateX(-50%);
}
.scissors-icon { width: 2.6rem; height: 3.4rem; overflow: visible; }
.scissors-icon circle,
.scissors-icon path { fill: none; stroke: currentColor; stroke-width: 1.7; }
.scissors-blades {
  transform-origin: 32px 32px;
  transform: rotate(var(--scissor-angle, 0deg));
  transition: transform .12s ease-out;
}
.scissors-pivot { fill: currentColor !important; }

.section-pad { position: relative; z-index: 1; padding: var(--section-y) var(--gutter); }
.section-index {
  display: grid;
  grid-template-columns: minmax(4rem, 14vw) 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .7rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  font-size: .65rem;
  letter-spacing: .15em;
}
.section-index--light { border-color: var(--line-dark); }
.statement { min-height: 90svh; background: var(--paper); overflow: hidden; }
.statement-photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.statement-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(243,239,232,.92) 0%, rgba(243,239,232,.72) 47%, rgba(243,239,232,.32) 100%);
}
.statement-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; opacity: .62; filter: saturate(.72) contrast(.94); }
.statement > *:not(.statement-photo) { position: relative; z-index: 1; }
.statement-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 8vw; align-items: end; }
.display-copy {
  margin: 0;
  font-size: clamp(2.7rem, 6.4vw, 6.5rem);
  line-height: 1.1;
  letter-spacing: -.06em;
  font-weight: 500;
}
.display-copy em { font-family: var(--font-serif); font-weight: 400; }
.line-nowrap { display: inline-block; white-space: nowrap; }
.journal-line { display: inline-block; white-space: nowrap; }
.statement-body { max-width: 30rem; font-size: .95rem; line-height: 2; }
.en-copy { color: #64635e; font-size: .82rem; line-height: 1.65; }
.text-link {
  display: flex; justify-content: space-between; gap: 2rem; border-bottom: 1px solid;
  margin-top: 2.5rem; padding-bottom: .7rem; font-size: .75rem; letter-spacing: .1em;
}

.services { background: #ded4c7; }
.services-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 4rem; }
.services-head h2 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.5rem); letter-spacing: -.06em; font-weight: 500; }
.services-head p { max-width: 24rem; margin: 0; font-size: .85rem; line-height: 1.8; }
.service-row { 
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 10vw 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--ink);
  cursor: pointer;
}
.service-row::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-1.5rem);
  transition: opacity .4s ease, clip-path .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.service-row > * { position: relative; z-index: 1; }
.service-row:hover::before,
.service-row:focus-visible::before,
.service-row[aria-expanded="true"]::before { opacity: .28; clip-path: inset(0); transform: none; }
.service-row::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}
.service-row:hover::after,
.service-row:focus-within::after { transform: scaleX(1); }
.service-row:hover h3 { letter-spacing: -.02em; }
.service-row:hover .service-icon { background: var(--orange); color: var(--paper); transform: rotate(45deg); }
.service-icon { transition: background .35s ease, color .35s ease, transform .35s ease; }
.service-row:last-child { border-bottom: 1px solid var(--ink); }
.service-no { font-size: .65rem; }
.service-row h3 { margin: 0; font-size: clamp(1.7rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.04em; }
.service-row p { max-width: 25rem; margin: 0; font-size: .82rem; line-height: 1.7; }
.service-icon { width: 2.5rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid; border-radius: 50%; }
.service-row[aria-expanded="true"] { background: rgba(217,114,88,.08); }
.service-row[aria-expanded="true"] .service-icon { background: var(--orange); color: var(--paper); transform: rotate(45deg); }
.service-row--link { color: inherit; }
.service-row--link:hover h3 { letter-spacing: -.02em; }
.service-row--link:hover .service-icon { background: var(--orange); color: var(--paper); transform: rotate(45deg); }
.service-preview { position: relative; width: 82%; margin: 0 auto; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-1.5rem); transition: max-height .9s cubic-bezier(.16, 1, .3, 1), opacity .45s ease, transform .9s cubic-bezier(.16, 1, .3, 1), margin-top .9s cubic-bezier(.16, 1, .3, 1); }
.service-preview.is-visible { max-height: 42rem; margin-top: 3rem; opacity: 1; transform: none; }
.service-preview-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #c6b9a9; clip-path: inset(0 100% 0 0); transition: clip-path .9s cubic-bezier(.16, 1, .3, 1); }
.service-preview.is-visible .service-preview-media { clip-path: inset(0); }
.service-preview-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity .55s ease, transform 1s cubic-bezier(.16, 1, .3, 1); }
.service-preview-image.is-active { opacity: 1; transform: scale(1); }
.service-preview-copy { display: grid; grid-template-columns: 10rem 1fr auto; gap: 1.5rem; align-items: end; padding: 1rem 0 0; border-top: 1px solid var(--ink); }
.service-preview-copy span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; }
.service-preview-copy h3 { margin: 0; font-family: var(--font-serif); font-size: clamp(1.2rem, 2.3vw, 2rem); font-weight: 400; }
.service-preview-copy p { max-width: 15rem; margin: 0; color: #6d655e; font-size: .75rem; line-height: 1.6; }

.price-list { background: #eee6da; }
.price-head .display-copy { font-family: var(--font-serif); }
.price-head .display-copy em { font-family: inherit; font-style: normal; }
.price-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; margin-bottom: 4rem; }
.price-head > p { max-width: 24rem; margin: 0; font-size: .84rem; line-height: 1.8; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.price-card { position: relative; min-height: 22rem; padding: 1.5rem; border-right: 1px solid var(--ink); display: flex; flex-direction: column; transition: background .45s ease, color .45s ease; }
.price-card:last-child { border-right: 0; }
.price-card::after { position: absolute; right: 1.5rem; bottom: 0; left: 1.5rem; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.16, 1, .3, 1); }
.price-card:hover { background: var(--ink); color: var(--paper); }
.price-card:hover::after { transform: scaleX(1); }
.price-card-no { font-size: .62rem; letter-spacing: .14em; }
.price-card h3 { margin: auto 0 .8rem; font-size: clamp(1.65rem, 3vw, 3rem); font-weight: 400; letter-spacing: -.05em; }
.price-card p { max-width: 18rem; min-height: 3.4em; margin: 0; font-size: .78rem; line-height: 1.7; opacity: .76; }
.price-card strong { margin-top: 1.8rem; font-size: 1.25rem; font-weight: 500; letter-spacing: .04em; }
.price-card strong small { font-size: .7rem; }
.price-card-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(25,23,21,.2);
  font-size: .68rem;
  letter-spacing: .1em;
}
.price-card-link span { font-size: 1rem; transition: transform .3s ease; }
.price-card:hover .price-card-link { border-color: rgba(243,239,232,.35); }
.price-card:hover .price-card-link span { transform: translate(.2rem, -.2rem); }
.demo-note { margin: 1rem 0 0; color: #777069; font-size: .62rem; letter-spacing: .08em; }

.works { background: var(--ink); color: var(--paper); }
.works-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 5rem; }
.works-head h2 { margin: 0; font-size: clamp(3rem, 7.5vw, 7.5rem); line-height: 1; letter-spacing: -.06em; font-weight: 400; }
.works-head p { max-width: 25rem; margin: 0; font-size: .82rem; line-height: 1.8; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(3rem, 6vw, 7rem) 1.5rem; }
.work-card--wide { grid-column: 1 / -1; }
.work-art { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: grid; place-items: center; }
.work-card--wide .work-art { aspect-ratio: 2 / 1; }
.work-art.photo-photo { isolation: isolate; background: #b7a99c; }
.work-art.photo-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(120deg, rgba(25,23,21,.08), rgba(25,23,21,.28));
  mix-blend-mode: multiply;
}
.work-art.photo-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0) contrast(.96);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .8s ease;
}
.work-card:hover .work-art.photo-photo img,
.work-card:focus-within .work-art.photo-photo img {
  transform: scale(1.04);
  filter: grayscale(0) saturate(1) contrast(1);
}
.work-art.photo-photo > span {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  margin: 1.25rem;
  width: 2.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243,239,232,.8);
  border-radius: 50%;
  color: var(--paper);
  font-size: .72rem;
  letter-spacing: .05em;
}
.art-aurora { background: #d9ff6e; color: #11110f; font-family: var(--font-serif); }
.art-aurora span { font-size: clamp(7rem, 24vw, 25rem); line-height: 1; font-style: italic; }
.art-aurora i { position: absolute; width: 38%; aspect-ratio: 1; border: 1px solid; border-radius: 50%; }
.art-kaze { background: #d5d3cb; color: #181816; }
.art-kaze span { z-index: 2; font-size: clamp(3rem, 8vw, 8rem); font-weight: 700; letter-spacing: -.08em; }
.art-kaze i { position: absolute; width: 22rem; height: 1px; background: #111; transform: rotate(-25deg); }
.art-kaze i:nth-of-type(2) { transform: rotate(25deg); }
.art-kaze i:nth-of-type(3) { transform: rotate(90deg); }
.art-nocturne { background: #1d2633; color: #f1d4c1; }
.art-nocturne::before { content: ""; position: absolute; width: 45%; aspect-ratio: 1; border-radius: 50%; background: #f15b3b; filter: blur(1px); }
.art-nocturne span { z-index: 1; font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 6rem); letter-spacing: .08em; }
.art-nocturne small { position: absolute; z-index: 1; bottom: 8%; letter-spacing: .2em; }
.work-info { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.work-info span, .work-info p { margin: 0; font-size: .62rem; letter-spacing: .1em; }
.work-info h3 { margin: .4rem 0 0; font-size: 1.4rem; font-weight: 400; }

.features { background: var(--lime); }
.features .section-index,
.features .display-copy { position: relative; z-index: 1; }
.features .display-copy { max-width: 70rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 7rem; border-top: 1px solid; border-bottom: 1px solid; }
.feature { position: relative; min-height: 28rem; padding: 1.5rem; border-right: 1px solid; display: flex; flex-direction: column; overflow: hidden; }
.feature:last-child { border: 0; }
.feature > span { font-size: .65rem; }
.feature-photo { position: absolute; inset: 0; z-index: 0; opacity: .24; mix-blend-mode: multiply; transition: opacity .5s ease, transform .8s cubic-bezier(.16, 1, .3, 1); }
.feature-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(231,215,184,.05), rgba(231,215,184,.88) 80%); }
.feature-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: grayscale(1) saturate(.2); }
.feature h3 { position: relative; z-index: 1; margin: auto 0 1rem; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.06em; transition: color .35s ease, transform .35s ease; }
.feature p { max-width: 21rem; min-height: 4.5em; margin: 0; font-size: .82rem; line-height: 1.7; }
.feature > span, .feature p { position: relative; z-index: 1; }
.feature::after { position: absolute; right: 1.5rem; bottom: 0; left: 1.5rem; height: 3px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.16, 1, .3, 1); }
.feature:hover::after, .feature:focus-within::after { transform: scaleX(1); }
.feature:hover .feature-photo, .feature:focus-within .feature-photo { opacity: .72; transform: scale(1.04); }
.feature:hover h3, .feature:focus-within h3 { color: var(--orange); transform: translateX(.35rem); }
.features .display-copy strong { position: relative; display: inline-block; font-family: inherit; font-weight: 700; letter-spacing: inherit; }
.feature-house { position: absolute; z-index: 0; top: 19%; left: clamp(14rem, 29vw, 28rem); width: clamp(14rem, 32vw, 27rem); overflow: visible; color: #557258; opacity: var(--house-opacity, .14); transform: translate(-50%, -50%) scale(var(--house-scale, .35)) rotate(var(--house-rotate, -2deg)); transform-origin: 50% 68%; pointer-events: none; transition: opacity .35s ease; }
.feature-house path { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.feature-house .feature-house-detail { stroke-width: 1; opacity: .74; }
.features.is-house-active .feature-house { opacity: var(--house-opacity, .72); }

.updates { background: #e9e0d5; }
.updates-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 4rem; }
.updates-head h2 { margin: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: 1; letter-spacing: -.06em; font-weight: 500; }
.updates-head .text-link { width: 10rem; margin: 0; }
.update-row { display: grid; grid-template-columns: 10vw 1fr auto; gap: 2rem; align-items: start; border-top: 1px solid var(--ink); padding: 1.7rem 0; }
.update-row:last-child { border-bottom: 1px solid var(--ink); }
.update-row .service-icon { transition: background .35s ease, color .35s ease, transform .35s cubic-bezier(.16, 1, .3, 1); }
.update-row:hover .service-icon,
.update-row:focus-within .service-icon { background: var(--orange); color: var(--paper); transform: scale(1.2) rotate(45deg); }
.update-row time { font-size: .68rem; letter-spacing: .08em; }
.update-row h3 { margin: .5rem 0 .5rem; font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 400; letter-spacing: -.03em; }
.update-row p { margin: 0; color: #65645e; font-size: .78rem; line-height: 1.7; }
.update-tag { font-size: .6rem; letter-spacing: .16em; }

.lab { background: var(--ink); color: var(--paper); }
.lab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.lab-copy { max-width: 24rem; margin: 3rem 0 0; color: #b3b2ac; font-size: .84rem; line-height: 1.9; }
.lab-card { position: relative; min-height: 24rem; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: linear-gradient(120deg, rgba(43,53,38,.9), rgba(83,102,70,.55)), url("./assets/salon-corner.png") center / cover; color: var(--paper); }
.lab-card::before, .lab-card::after { position: absolute; content: ""; border: 1px solid rgba(243,239,232,.35); border-radius: 100% 0 100% 0; transform: rotate(28deg); }
.lab-card::before { width: 12rem; height: 20rem; top: -7rem; left: 48%; }
.lab-card::after { width: 8rem; height: 13rem; right: -2rem; bottom: -4rem; transform: rotate(-26deg); }
.lab-card-label { position: relative; z-index: 1; font-size: .65rem; letter-spacing: .13em; }
.lab-card-title { position: relative; z-index: 1; font-size: clamp(2.7rem, 6vw, 6rem); line-height: .86; letter-spacing: -.08em; }
.lab-card-arrow { position: relative; z-index: 1; align-self: end; width: 2.5rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid; border-radius: 50%; font-size: 1.2rem; }

.social { background: #e5ded2; }
.social-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 4.5rem; }
.social-head .text-link { width: 13rem; margin: 0; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  background: #c3b8a9;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), box-shadow .55s ease;
}
.social-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25,23,21,0) 55%, rgba(25,23,21,.65));
  pointer-events: none;
}
.social-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) saturate(0) contrast(.95);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}
.social-card:hover,
.social-card:focus-visible {
  z-index: 2;
  transform: translateY(-.7rem) scale(1.035);
  box-shadow: 0 1.5rem 3rem rgba(25,23,21,.18);
}
.social-card:hover img,
.social-card:focus-visible img { filter: grayscale(0) saturate(1) contrast(1); transform: scale(1.06); }
.social-card-meta {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  color: var(--paper);
  font-size: .62rem;
  letter-spacing: .12em;
}

.guide { background: #d4c8ba; }
.guide-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; }
.guide-body { max-width: 25rem; font-size: .88rem; line-height: 1.9; }
.guide-body .text-link { margin-top: 2.5rem; }

.recruit-teaser { background: linear-gradient(90deg, rgba(25,23,21,.78), rgba(25,23,21,.28)), url("./assets/hero-cut.png") center / cover; color: var(--paper); }
.recruit-teaser .section-index { border-color: var(--line-dark); }
.recruit-teaser .recruit-teaser-copy { color: #eee7de; }
.recruit-teaser-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.recruit-teaser-copy { max-width: 25rem; font-size: .88rem; line-height: 1.9; }
.recruit-teaser-copy .text-link { margin-top: 2.5rem; }

.visit-tools { background: #f3efe8; }
.visit-tools-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1rem; align-items: stretch; }
.calendar-card, .booking-demo, .access-card { min-height: 28rem; padding: clamp(1.5rem, 3vw, 3rem); border: 1px solid var(--line); background: #e6ded2; }
.calendar-card-head { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.eyebrow { display: block; font-size: .6rem; letter-spacing: .16em; }
.calendar-card h2, .booking-demo h2, .access-copy h2 { margin: .7rem 0 0; font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.06em; line-height: .95; }
.calendar-card h2 { font-family: var(--font-serif); }
.calendar-month { text-align: right; font-size: .65rem; line-height: 1.25; letter-spacing: .14em; }
.calendar-week, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; text-align: center; }
.calendar-week { margin-top: 3rem; color: #81796f; font-size: .55rem; letter-spacing: .1em; }
.calendar-days { margin-top: .7rem; }
.calendar-days button { width: 100%; aspect-ratio: 1; border: 1px solid transparent; border-radius: 50%; color: inherit; background: transparent; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.calendar-days button:hover, .calendar-days button[aria-pressed="true"] { background: var(--orange); color: var(--paper); transform: scale(1.08); }
.calendar-legend { display: flex; gap: 1.2rem; margin-top: 1.5rem; color: #81796f; font-size: .62rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.calendar-legend i { width: .55rem; aspect-ratio: 1; display: inline-block; border-radius: 50%; background: var(--orange); }
.calendar-legend span:last-child i { background: var(--ink); }
.booking-demo { background: var(--ink); color: var(--paper); }
.booking-demo h2 { margin-bottom: 2rem; }
.booking-demo h2 em { font-family: var(--font-serif); font-style: normal; font-weight: 400; }
.booking-demo label { display: block; margin-top: 1rem; color: #b8b1a8; font-size: .65rem; letter-spacing: .1em; }
.booking-demo select, .booking-demo input { width: 100%; margin-top: .45rem; padding: .8rem 0; border: 0; border-bottom: 1px solid var(--line-dark); border-radius: 0; color: var(--paper); background: transparent; font: inherit; font-size: .8rem; }
.booking-demo select option { color: var(--ink); }
.booking-demo-button { width: 100%; margin-top: 1.5rem; padding: 1rem 0; display: flex; justify-content: space-between; border: 0; border-bottom: 1px solid var(--paper); color: inherit; background: transparent; cursor: pointer; font-size: .75rem; letter-spacing: .1em; }
.booking-demo-button span { font-size: 1.1rem; transition: transform .3s ease; }
.booking-demo-button:hover span { transform: translateX(.4rem); }
.booking-demo-note { min-height: 2.6em; margin: 1rem 0 0; color: #a8a096; font-size: .7rem; line-height: 1.6; }
.booking-staff-preview { position: relative; min-height: 5.5rem; margin-top: 1.3rem; display: flex; align-items: center; }
.booking-staff-face { position: absolute; left: 0; width: 5.5rem; height: 5.5rem; display: block; object-fit: cover; border: 1px solid rgba(243,239,232,.5); border-radius: 50%; opacity: 0; filter: blur(10px) saturate(.65); transform: scale(.82); transition: opacity .6s ease, filter .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1); }
.booking-staff-face.is-active { opacity: 1; filter: blur(0) saturate(.9); transform: scale(1); }
.booking-staff-face-label { margin-left: 6.8rem; color: #d9d1c7; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .08em; }
.access-card { grid-column: 1 / -1; min-height: 24rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; background: #d3c8b9; }
.map-art { position: relative; min-height: 18rem; overflow: hidden; background: #b8b29f; }
.map-art::before { position: absolute; inset: 0; content: ""; opacity: .4; background: linear-gradient(28deg, transparent 47%, #f3efe8 48% 50%, transparent 51%), linear-gradient(142deg, transparent 46%, #f3efe8 47% 49%, transparent 50%), linear-gradient(90deg, transparent 48%, #d5ccb7 49% 52%, transparent 53%); }
.map-road { position: absolute; display: block; height: .3rem; border-radius: 99px; background: rgba(243,239,232,.8); transform-origin: left; }
.map-road--one { top: 29%; left: -5%; width: 65%; transform: rotate(14deg); }
.map-road--two { top: 58%; left: 35%; width: 78%; transform: rotate(-28deg); }
.map-road--three { top: 74%; left: -5%; width: 66%; transform: rotate(-5deg); }
.map-pin { position: absolute; top: 42%; left: 48%; width: 3rem; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid var(--paper); border-radius: 50% 50% 50% 0; color: var(--paper); background: var(--orange); transform: rotate(-45deg); box-shadow: 0 .5rem 1rem rgba(25,23,21,.15); }
.map-pin::first-letter { transform: rotate(45deg); }
.map-label { position: absolute; right: 1rem; bottom: 1rem; color: var(--ink); font-size: .6rem; letter-spacing: .14em; }
.access-copy { align-self: end; }
.access-copy h2 { font-family: var(--font-serif); }
.access-digit { font-family: var(--font-sans); font-weight: 700; }
.access-copy p { max-width: 22rem; margin: 2rem 0 0; color: #645e57; font-size: .82rem; line-height: 1.8; }
.access-copy .text-link { margin-top: 2rem; }

.contact { position: relative; min-height: 90svh; display: flex; flex-direction: column; justify-content: center; background: var(--paper); overflow: hidden; }
.contact-kicker { font-size: .65rem; letter-spacing: .16em; }
.contact h2 { position: relative; z-index: 1; margin: 2rem 0; font-size: clamp(3.2rem, 9vw, 9rem); line-height: .95; letter-spacing: -.07em; font-weight: 400; }
.contact h2 span { display: block; }
.contact h2 span:last-child { margin-left: 10vw; }
.contact h2 em { font-family: var(--font-serif); font-weight: 400; }
.contact-copy { position: relative; z-index: 1; align-self: flex-end; max-width: 30rem; font-size: .9rem; line-height: 1.8; }
.contact-button {
  position: relative; z-index: 1; width: min(36rem, 100%); margin-top: 3rem; padding: 1.2rem 0;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: center;
  border-top: 1px solid; border-bottom: 1px solid; font-size: .72rem;
}
.contact-button i { font-size: 1.2rem; font-style: normal; }
.contact-orbit {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 58vw;
  aspect-ratio: 1.12;
  background: linear-gradient(120deg, rgba(243,239,232,.35), rgba(95,117,83,.72)), url("./assets/salon-corner.png") center / cover;
  border-radius: 56% 44% 52% 48%;
  opacity: .55;
  transform: rotate(-9deg);
}
.contact-orbit::before, .contact-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(243,239,232,.45);
  border-radius: 100% 0 100% 0;
}
.contact-orbit::before { width: 16vw; height: 28vw; top: -8vw; left: 20%; transform: rotate(24deg); }
.contact-orbit::after { width: 9vw; height: 17vw; right: 6%; bottom: 4%; transform: rotate(-32deg); }

.site-footer { padding: 5rem var(--gutter) 2rem; background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand span { display: block; font-size: clamp(4rem, 10vw, 9rem); line-height: .8; letter-spacing: -.07em; }
.footer-brand small { letter-spacing: .2em; }
.footer-nav, .footer-info { display: flex; flex-direction: column; gap: .8rem; font-size: .75rem; }
.footer-info p { margin: 0; }
.footer-bottom {
  grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line-dark); margin-top: 4rem; padding-top: 1rem;
  font-size: .62rem; letter-spacing: .1em;
}

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo { transition: none; }
  .scissors-blades { transition: none; }
  body.intro-active { overflow: auto; }
  .intro-loader { display: none; }
}

@media (max-width: 800px) {
  .line-nowrap { white-space: normal; }
  .journal-line { white-space: normal; }
  /* 日本語見出しはスマホでは最小サイズを画面幅基準に下げ、意図した位置でだけ改行させる */
  .display-copy { font-size: clamp(1.8rem, 8.4vw, 2.7rem); }
  .features .display-copy strong { display: block; }
  .updates-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .updates-head .text-link { width: 100%; max-width: 16rem; }
  .intro-loader { padding-top: 1.25rem; }
  .intro-stage { min-height: 48vh; }
  .intro-word { font-size: clamp(1.8rem, 8.5vw, 5rem); }
  .intro-bottomline { align-items: flex-start; flex-direction: column; }
  .site-header { grid-template-columns: 1fr 1fr; height: 6rem; }
  .header-note { display: none; }
  .hero { min-height: 90svh; padding-top: 8rem; background-size: 12.5vw 12.5vw; }
  .hero-meta { top: 19%; }
  .hero-title { font-size: clamp(3.6rem, 17vw, 6rem); line-height: .85; }
  .hero-title span:last-child { padding: 0; white-space: normal; }
  .hero-copy { margin: 2rem 0 4.5rem; }
  .scroll-cue { bottom: 1.5rem; }
  .scissors-scroll { left: 50%; right: auto; bottom: 1rem; transform: translateX(-50%); }
  .hero-photo-wrap { inset: 0; width: auto; aspect-ratio: auto; }
  .hero-photo-label { right: .8rem; bottom: 4.5rem; font-size: .55rem; }
  .hero-photo-counter { left: .8rem; bottom: .75rem; font-size: .55rem; }
  .statement-layout, .services-head, .works-head { grid-template-columns: 1fr; display: grid; }
  .price-head { grid-template-columns: 1fr; gap: 2rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 16rem; border-right: 0; border-bottom: 1px solid var(--ink); }
  .price-card:last-child { border-bottom: 0; }
  .statement-body { margin-left: 14vw; }
  .service-row { grid-template-columns: 2.5rem 1fr auto; gap: 1rem; }
  .service-row p { grid-column: 2 / -1; }
  .service-preview { width: 100%; }
  .service-preview-copy { grid-template-columns: 1fr; gap: .6rem; }
  .service-preview-copy p { max-width: 100%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: auto; }
  .work-card--wide .work-art { aspect-ratio: 16 / 11; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 16rem; border-right: 0; border-bottom: 1px solid; }
  .contact h2 span:last-child { margin-left: 0; }
  .contact-copy { align-self: flex-start; }
  .contact-button { grid-template-columns: 1fr auto; }
  .contact-button span:nth-child(2) { display: none; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .lab-layout, .guide-layout { grid-template-columns: 1fr; gap: 3rem; }
  .lab-card { min-height: 19rem; }
  .social-head { display: grid; gap: 2rem; }
  .social-head .text-link { width: 100%; }
  .social-grid { grid-template-columns: 1fr; gap: 1rem; }
  .social-card { aspect-ratio: 1 / 1.05; }
  .visit-tools-grid { grid-template-columns: 1fr; }
  .calendar-card, .booking-demo, .access-card { min-height: auto; padding: 1.5rem; }
  .access-card { grid-template-columns: 1fr; }
  .map-art { min-height: 14rem; }
  .update-row { grid-template-columns: 5.5rem 1fr auto; gap: 1rem; }
}

@media (max-width: 480px) {
  .section-index { margin-bottom: 3.5rem; }
  .statement-body { margin-left: 0; }
  .service-row h3 { font-size: 1.55rem; }
  .update-row { grid-template-columns: 1fr auto; }
  .update-row time { grid-column: 1 / -1; }
  .update-row > div { grid-column: 1; }
  .update-row > .service-icon { grid-column: 2; grid-row: 2; }
  .work-info { display: block; }
  .work-info p { margin-top: .7rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-bottom { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Detail pages: menu and recruit */
.detail-page { background: var(--paper); color: var(--ink); }
.detail-hero {
  position: relative;
  min-height: 72svh;
  padding: 12rem var(--gutter) 4rem;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.detail-hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(25,23,21,.8), rgba(25,23,21,.18)), var(--detail-image) center / cover; opacity: .9; }
.detail-hero-inner { position: relative; z-index: 1; width: min(68rem, 100%); }
.detail-breadcrumb { display: flex; gap: 1.5rem; margin-bottom: 4rem; color: #c8c1b8; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; }
.detail-hero h1 { max-width: 12ch; margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 11vw, 11rem); font-weight: 400; line-height: .85; letter-spacing: -.07em; }
.detail-hero h1 em { font-family: var(--font-serif); font-size: .56em; font-style: normal; }
.detail-hero-copy { max-width: 27rem; margin: 2rem 0 0; color: #d9d2c8; font-size: .9rem; line-height: 1.9; }
.detail-index { padding: 5rem var(--gutter) 3rem; background: #e8dfd3; }
.detail-index-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.detail-index h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.06em; }
.detail-index-head p { max-width: 22rem; margin: 0; font-size: .82rem; line-height: 1.8; }
.detail-index-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.detail-index-list a { min-height: 9rem; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); transition: background .35s ease, color .35s ease; }
.detail-index-list a:last-child { border-right: 0; }
.detail-index-list a:hover, .detail-index-list a:focus-visible { background: var(--ink); color: var(--paper); }
.detail-index-list small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.detail-index-list strong { font-size: 1.1rem; font-weight: 400; }
.detail-index-list span { align-self: end; font-size: 1.25rem; }
.menu-detail-list { padding: 2rem var(--gutter) 8rem; background: #eee6da; }
.menu-detail-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 7vw, 8rem); align-items: center; padding: 7rem 0; border-bottom: 1px solid var(--line); scroll-margin-top: 2rem; }
.menu-detail-card:nth-child(even) { grid-template-columns: 1.3fr .7fr; }
.menu-detail-card:nth-child(even) .menu-detail-media { order: 2; }
.menu-detail-card:nth-child(even) .menu-detail-copy { order: 1; }
.menu-detail-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #c7baaa; }
.menu-detail-media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.8); transition: transform .9s cubic-bezier(.16, 1, .3, 1); }
.menu-detail-card:hover .menu-detail-media img { transform: scale(1.04); }
.menu-detail-copy > span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; }
.menu-detail-copy h2 { margin: 1.2rem 0 1.2rem; font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.menu-detail-copy h2 em { display: block; margin-top: .3rem; font-family: var(--font-display); font-size: .55em; font-style: normal; letter-spacing: 0; }
.menu-detail-copy > p { max-width: 28rem; margin: 0; font-size: .88rem; line-height: 1.9; }
.menu-detail-meta { display: grid; grid-template-columns: repeat(2, minmax(8rem, 1fr)); gap: 1rem; max-width: 28rem; margin: 2rem 0; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-detail-meta span { color: #766e65; font-size: .65rem; }
.menu-detail-meta strong { display: block; margin-top: .35rem; font-size: .95rem; font-weight: 500; }
.detail-back { display: none; }
.detail-back a { display: flex; justify-content: space-between; border-bottom: 1px solid; padding-bottom: .8rem; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em; }
.recruit-page .detail-hero::before { background-image: linear-gradient(90deg, rgba(25,23,21,.76), rgba(25,23,21,.2)), url("./assets/hero-team.png"); }
.recruit-intro { padding: 7rem var(--gutter); background: #cdd7c2; }
.recruit-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.recruit-intro h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -.06em; }
.recruit-intro-copy { max-width: 28rem; font-size: .9rem; line-height: 1.9; }
.recruit-intro-copy p { margin: 0; }
.recruit-facts { padding: 2rem var(--gutter) 7rem; background: #e9e1d6; }
.recruit-facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.recruit-fact { min-height: 16rem; padding: 1.5rem; border-right: 1px solid var(--ink); }
.recruit-fact:last-child { border-right: 0; }
.recruit-fact small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.recruit-fact h3 { margin: 4rem 0 1rem; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400; }
.recruit-fact p { margin: 0; color: #665f57; font-size: .78rem; line-height: 1.8; }
.recruit-steps { padding: 7rem var(--gutter); background: var(--paper); }
.recruit-steps h2 { margin: 0 0 3rem; font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 400; }
.recruit-step { display: grid; grid-template-columns: 8rem 1fr; gap: 2rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.recruit-step:last-child { border-bottom: 1px solid var(--line); }
.recruit-step small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.recruit-step h3 { margin: 0 0 .4rem; font-size: 1.25rem; font-weight: 400; }
.recruit-step p { max-width: 34rem; margin: 0; color: #665f57; font-size: .8rem; line-height: 1.8; }
.recruit-cta { padding: 7rem var(--gutter); background: var(--ink); color: var(--paper); }
.recruit-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 8vw, 8rem); font-weight: 400; line-height: .9; letter-spacing: -.07em; }
.recruit-cta p { max-width: 26rem; margin: 2rem 0 0; color: #bcb5ac; font-size: .85rem; line-height: 1.8; }
.recruit-cta .text-link { width: min(30rem, 100%); margin-top: 3rem; }

@media (max-width: 800px) {
  .detail-hero { min-height: 78svh; padding-top: 10rem; }
  .detail-index-head, .recruit-intro-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
  .detail-index-list, .recruit-facts-grid { grid-template-columns: 1fr; }
  .detail-index-list a, .recruit-fact { min-height: 8rem; border-right: 0; border-bottom: 1px solid var(--ink); }
  .detail-index-list a:last-child, .recruit-fact:last-child { border-bottom: 0; }
  .menu-detail-card, .menu-detail-card:nth-child(even) { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 0; }
  .menu-detail-card:nth-child(even) .menu-detail-media, .menu-detail-card:nth-child(even) .menu-detail-copy { order: initial; }
  .menu-detail-media { aspect-ratio: 16 / 11; }
  .recruit-fact h3 { margin-top: 2rem; }
  .recruit-step { grid-template-columns: 5rem 1fr; gap: 1rem; }
}

.subpage-heading > span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; }
.subpage-heading h2 { margin: 1.4rem 0 0; font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 6rem); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.subpage-heading h2 em { font-family: var(--font-display); font-size: .7em; font-style: normal; }
.about-story { padding: 8rem var(--gutter); background: #e8dfd3; scroll-margin-top: 8rem; }
.about-story-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.about-story h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.7rem, 6vw, 6.3rem); font-weight: 400; line-height: 1; letter-spacing: -.06em; }
.about-story h2 em { font-family: var(--font-display); font-size: .68em; font-style: normal; }
@media (max-width: 800px) {
  /* 「サロンにいる時間も、」がスマホ幅でも1行に収まるサイズまで下げる */
  .about-story h2 { font-size: clamp(1.7rem, 9vw, 2.15rem); }
}
.about-story-layout > div { max-width: 27rem; font-size: .9rem; line-height: 1.9; }
.about-story-layout p + p { margin-top: 1.4rem; }
.about-values { padding: 7rem var(--gutter); background: #d5dfca; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.about-values-grid article { min-height: 17rem; padding: 1.5rem; border-right: 1px solid var(--ink); }
.about-values-grid article:last-child { border-right: 0; }
.about-values-grid small, .about-visit-list small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.about-values-grid h3 { margin: 4rem 0 1rem; font-family: var(--font-serif); font-size: 2rem; font-weight: 400; }
.about-values-grid p { max-width: 18rem; margin: 0; color: #5d6758; font-size: .8rem; line-height: 1.8; }
.about-visit { padding: 7rem var(--gutter); background: var(--paper); }
.about-visit-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); }
.about-visit-list > div { padding: 1.5rem 1rem 2rem 0; border-bottom: 1px solid var(--line); }
.about-visit-list > div + div { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.about-visit-list h3 { margin: 3rem 0 .8rem; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; }
.about-visit-list p { max-width: 18rem; margin: 0; color: #6b655f; font-size: .8rem; line-height: 1.8; }
.about-visit-link { width: min(25rem, 100%); margin-top: 3rem; }
.styles-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: 7rem var(--gutter) 5rem; background: #d5dfca; }
.styles-intro > p { max-width: 25rem; margin: 0; font-size: .88rem; line-height: 1.9; }
.styles-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5rem 1.5rem; padding: 3rem var(--gutter) 8rem; background: var(--ink); color: var(--paper); }
.style-showcase { scroll-margin-top: 8rem; }
.style-showcase--wide { grid-column: 1 / -1; }
.style-carousel { position: relative; overflow: hidden; aspect-ratio: 16 / 11; background: #8c8379; }
.style-showcase--wide .style-carousel { aspect-ratio: 2 / 1; }
.style-carousel-viewport { width: 100%; height: 100%; overflow: hidden; }
.style-carousel-track { display: flex; width: 100%; height: 100%; transition: transform 1s cubic-bezier(.16, 1, .3, 1); will-change: transform; }
.style-carousel-slide { flex: 0 0 100%; height: 100%; }
.style-carousel-slide img { width: 100%; height: 100%; display: block; object-fit: cover; filter: grayscale(1) saturate(.1); transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .6s ease; }
.style-showcase:hover .style-carousel-slide img { filter: grayscale(0) saturate(1); }
.style-showcase:hover .style-carousel-slide img { transform: scale(1.04); }
.style-carousel-count { position: absolute; right: 1rem; bottom: 1rem; padding: .35rem .5rem; background: rgba(25,23,21,.72); color: var(--paper); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; }
.style-showcase > span { display: block; margin-top: 1rem; color: #b8b1a8; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.style-showcase h3 { margin: .4rem 0 0; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; }
.style-showcase p { margin: .5rem 0 0; color: #b8b1a8; font-size: .75rem; }
.hair-lengths { padding: 7rem var(--gutter); background: #d5dfca; }
.hair-length-list { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 3rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.hair-length-list a { position: relative; padding: 1.5rem 1rem; border-right: 1px solid var(--ink); font-family: var(--font-serif); font-size: clamp(1.35rem, 2vw, 2.3rem); transition: color .3s ease, background .3s ease; }
.hair-length-list a:last-child { border-right: 0; }
.hair-length-list a::after { position: absolute; right: 1rem; bottom: .65rem; content: "↗"; font-family: var(--font-mono); font-size: .7rem; opacity: .6; transition: transform .3s ease; }
.hair-length-list a:hover { background: var(--orange); color: var(--paper); }
.hair-length-list a:hover::after { transform: translate(.25rem, -.25rem); }
.hair-length-list a, .hair-length-detail-card { scroll-margin-top: 8rem; }
.hair-length-details { display: grid; gap: 1px; padding: 1px var(--gutter) 8rem; background: var(--ink); }
.hair-length-detail-card { display: grid; grid-template-columns: minmax(15rem, .75fr) 1fr; gap: clamp(2rem, 7vw, 8rem); align-items: center; padding: 4rem 0; background: var(--paper); }
.hair-length-detail-card:nth-child(even) { grid-template-columns: 1fr minmax(15rem, .75fr); }
.hair-length-detail-card:nth-child(even) { padding-inline: clamp(1rem, 3vw, 3rem); }
.hair-length-detail-card:nth-child(even) .hair-length-detail-image { order: 2; }
.hair-length-detail-image { overflow: hidden; aspect-ratio: 4 / 3; background: #c4b8a7; }
.hair-length-detail-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.78); transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .6s ease; }
.hair-length-detail-card:hover .hair-length-detail-image img { transform: scale(1.04); filter: saturate(1); }
.hair-length-detail-card > div + div > span { color: #6d655d; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; }
.hair-length-detail-card h3 { margin: 1rem 0 .9rem; font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.hair-length-detail-card p { max-width: 28rem; margin: 0; color: #6b645c; font-size: .84rem; line-height: 1.9; }
.hair-length-detail-card .text-link { width: min(20rem, 100%); margin-top: 2rem; }
.styles-cta { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding: 7rem var(--gutter); background: #e8dfd3; }
.styles-cta h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -.06em; }
.styles-cta .text-link { width: 14rem; margin: 0; }
.journal-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; padding: 7rem var(--gutter); background: #e8dfd3; }
.journal-feature-image { aspect-ratio: 4 / 3; overflow: hidden; }
.journal-feature-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.journal-feature > div + div > span, .journal-list article > span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.journal-feature h2 { margin: 1.5rem 0; font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.journal-feature h2 em { font-family: var(--font-display); font-size: .7em; font-style: normal; }
.journal-feature p { max-width: 25rem; margin: 0; font-size: .86rem; line-height: 1.9; }
.journal-feature .text-link { width: 13rem; margin-top: 2.5rem; }
.journal-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem var(--gutter) 8rem; background: #eee6da; }
.journal-list article { border-top: 1px solid var(--ink); padding-top: 1rem; scroll-margin-top: 8rem; }
.journal-card-image { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 1.2rem; }
.journal-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.75); transition: transform .8s ease; }
.journal-list article:hover .journal-card-image img { transform: scale(1.04); }
.journal-list article > span { color: #6d655d; }
.journal-list h3 { margin: 1.5rem 0 .8rem; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.journal-list p { min-height: 3.5em; margin: 0; color: #6b645c; font-size: .78rem; line-height: 1.8; }
.journal-list article > a { display: flex; justify-content: space-between; margin-top: 2rem; padding-bottom: .6rem; border-bottom: 1px solid; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; }
.news-list-page { padding: 7rem var(--gutter) 8rem; background: #e8dfd3; }
.news-item-page { display: grid; grid-template-columns: 8rem 1fr auto; gap: 2rem; align-items: start; padding: 2rem 0; border-top: 1px solid var(--ink); }
.news-item-page:last-child { border-bottom: 1px solid var(--ink); }
.news-item-page time { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .08em; }
.news-item-page div > span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; }
.news-item-page h3 { margin: .8rem 0 .7rem; font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2.4rem); font-weight: 400; }
.news-item-page p { max-width: 35rem; margin: 0; color: #6b645c; font-size: .8rem; line-height: 1.8; }
.news-item-page > a { border-bottom: 1px solid; padding-bottom: .5rem; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; }
.news-follow { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding: 7rem var(--gutter); background: #d5dfca; }
.news-follow h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -.06em; }
.news-follow h2 em { font-family: var(--font-display); font-size: .7em; font-style: normal; }
.news-follow .text-link { width: 16rem; margin: 0; }
.staff-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: 7rem var(--gutter) 5rem; background: #d5dfca; }
.staff-intro > p { max-width: 27rem; margin: 0; font-size: .88rem; line-height: 1.9; }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem var(--gutter) 8rem; background: #eee6da; }
.staff-card { border-top: 1px solid var(--ink); padding-top: 1rem; }
.staff-card > div { aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 1rem; background: #c4b8a7; }
.staff-card img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.75); transition: transform .8s ease, filter .6s ease; }
.staff-card:hover img { transform: scale(1.04); filter: saturate(1); }
.staff-card > span, .staff-card > small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; }
.staff-card h3 { margin: 1rem 0 .8rem; font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; }
.staff-card p { min-height: 5em; margin: 0 0 1.3rem; color: #6b645c; font-size: .8rem; line-height: 1.8; }
.staff-card > small { color: #82796f; letter-spacing: .04em; }
.staff-cta { padding: 7rem var(--gutter); background: var(--ink); color: var(--paper); }
.staff-cta h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.staff-cta h2 em { font-family: var(--font-display); font-size: .7em; font-style: normal; }
.staff-cta p { max-width: 25rem; margin: 2rem 0 0; color: #b8b1a8; font-size: .84rem; line-height: 1.8; }
.staff-cta .text-link { width: 16rem; margin-top: 2.5rem; }
.contact-info-band { background: #d5dfca; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.contact-info-grid article { min-height: 15rem; padding: 1.5rem 1.5rem 2rem 0; border-right: 1px solid var(--ink); }
.contact-info-grid article + article { padding-left: 1.5rem; }
.contact-info-grid article:last-child { border-right: 0; }
.contact-info-grid span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; }
.contact-info-grid h3 { margin: 4rem 0 1rem; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; }
.contact-info-grid p { max-width: 18rem; margin: 0; color: #5d6758; font-size: .8rem; line-height: 1.8; }

@media (max-width: 800px) {
  .about-story-layout, .styles-intro, .journal-feature, .staff-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values-grid, .about-visit-list, .journal-list, .staff-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-grid article, .contact-info-grid article + article { min-height: auto; padding: 1.5rem 0 2rem; border-right: 0; border-bottom: 1px solid var(--ink); }
  .contact-info-grid article:last-child { border-bottom: 0; }
  .about-values-grid article, .about-visit-list > div + div { border-right: 0; border-left: 0; border-bottom: 1px solid var(--ink); padding-left: 0; }
  .about-values-grid article:last-child, .about-visit-list > div:last-child { border-bottom: 0; }
  .styles-gallery { grid-template-columns: 1fr; }
  .style-showcase--wide { grid-column: auto; }
  .style-showcase--wide .style-carousel { aspect-ratio: 16 / 11; }
  .hair-length-list { grid-template-columns: repeat(2, 1fr); }
  .hair-length-list a:nth-child(2n) { border-right: 0; }
  .hair-length-list a { border-bottom: 1px solid var(--ink); }
  .hair-length-list a:nth-last-child(-n + 2) { border-bottom: 0; }
  .hair-length-detail-card, .hair-length-detail-card:nth-child(even) { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .hair-length-detail-card:nth-child(even) .hair-length-detail-image { order: 0; }
  .styles-cta, .news-follow { display: grid; gap: 2rem; }
  .styles-cta .text-link, .news-follow .text-link { width: 100%; }
  .news-item-page { grid-template-columns: 1fr auto; gap: 1rem; }
  .news-item-page time { grid-column: 1 / -1; }
  .news-item-page div { grid-column: 1 / -1; }
  .news-item-page > a { grid-column: 2; grid-row: 2; }
}

.pop-in { opacity: 0; filter: blur(.35rem); transform: translateY(2rem) scale(.985); transition: opacity .75s ease, filter .75s ease, transform .85s cubic-bezier(.16, 1, .3, 1); transition-delay: var(--pop-delay, 0ms); }
.pop-in.is-popped { opacity: 1; filter: none; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pop-in { opacity: 1; filter: none; transform: none; transition: none; }
  .feature-house { opacity: .58; transform: translate(-50%, -50%) scale(.72); }
}

.floating-booking {
  position: fixed;
  z-index: 30;
  right: var(--gutter);
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 .75rem;
  align-items: center;
  min-width: 11rem;
  padding: .85rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(243, 239, 232, .38);
  box-shadow: 0 1rem 2rem rgba(25, 23, 21, .18);
  transition: transform .35s ease, background .35s ease;
}
.floating-booking span { font-size: .72rem; letter-spacing: .1em; }
.floating-booking small { grid-column: 1; color: #b8b1a8; font-family: var(--font-mono); font-size: .52rem; letter-spacing: .12em; }
.floating-booking i { grid-column: 2; grid-row: 1 / span 2; font-size: 1.2rem; font-style: normal; }
.floating-booking:hover { transform: translateY(-.35rem); background: #536646; }
.floating-home { position: fixed; z-index: 30; left: var(--gutter); bottom: 1.25rem; display: grid; gap: .2rem; min-width: 11rem; padding: .85rem 1rem; background: var(--paper); color: var(--ink); border: 1px solid rgba(25,23,21,.38); box-shadow: 0 1rem 2rem rgba(25,23,21,.14); transition: transform .35s ease, background .35s ease; }
.floating-home span { font-size: .72rem; letter-spacing: .1em; }
.floating-home small { color: #6d655d; font-family: var(--font-mono); font-size: .52rem; letter-spacing: .12em; }
.floating-home:hover { transform: translateY(-.35rem); background: var(--lime); }
@media (max-width: 480px) {
  .floating-booking { right: .85rem; bottom: .75rem; min-width: 9.5rem; padding: .7rem .8rem; }
  .floating-home { left: .85rem; bottom: .75rem; min-width: 8.8rem; padding: .7rem .8rem; }
}
