/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --space-xs: 16px;
  --space-sm: 32px;
  --space-section: 96px;
  --pad-x: 64px;
  --pad-x-md: 40px;
  --pad-x-sm: 32px;
  --color-muted: #999;
  --color-soft: #908d84;
  --color-ink: #19180e;
  --lh-body: 1.75;
  --tracking-en: 0.08em;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f7f4;
  color: var(--color-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: var(--lh-body);
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul,
ol {
  list-style: none;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--color-soft);
  text-transform: uppercase;
}

.section-label--on-dark {
  color: rgba(248, 247, 244, 0.3);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 80px;
  background: transparent;
}

.header-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.logo {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #111;
  line-height: 1.2;
}

.site-tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: var(--tracking-en);
  color: #555;
  padding-bottom: 4px;
  transition: color 0.35s ease;
}

.nav a:hover {
  color: #111;
}

.menu-btn {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
}

.menu-btn span {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 1px;
  background: #19180e;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn span:nth-child(1) { top: 10.5px; }
.menu-btn span:nth-child(2) { top: 17.5px; }
.menu-btn span:nth-child(3) { top: 24.5px; }

body.nav-open .menu-btn span:nth-child(1) {
  top: 17.5px;
  transform: rotate(45deg);
}

body.nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-btn span:nth-child(3) {
  top: 17.5px;
  transform: rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 724px;
  padding: 120px 80px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -217px;
  left: 51.5%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(280px, 52vw, 579px);
  font-weight: 200;
  line-height: 1;
  color: #19180e;
  opacity: 0.03;
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-top {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

.hero-eyebrow {
  margin-bottom: var(--space-xs);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.hero-title {
  position: relative;
  z-index: 1;
  padding-top: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 200;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #111;
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
}

.hero-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 114px;
  height: 46px;
  padding: 0 28px;
  background: #111;
  border-radius: 2px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #fff;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease;
}

.hero-cta:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ===== Ticker ===== */
.ticker {
  overflow: hidden;
  background: #19180e;
  border-top: 1px solid #19180e;
  border-bottom: 1px solid #19180e;
  height: 51px;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: ticker-scroll 50s linear infinite;
  opacity: 0.75;
}

.ticker-track span {
  padding: 0 36px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f8f7f4;
  white-space: nowrap;
}

.ticker-track i {
  font-style: normal;
  font-size: 5.6px;
  color: rgba(248, 247, 244, 0.25);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Empathy ===== */
.empathy {
  padding: var(--space-section) 0;
}

.empathy-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-sm);
  align-items: start;
}

.empathy-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empathy-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.empathy-title {
  margin-top: var(--space-xs);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

.empathy-body {
  padding-left: var(--space-sm);
  padding-top: 2px;
}

.empathy-body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-soft);
}

.empathy-body p + p {
  margin-top: var(--space-xs);
}

/* ===== Concept ===== */
.concept {
  background: #19180e;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.concept-grid {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 80px;
  align-items: start;
}

.concept-visual .section-label {
  margin-bottom: var(--space-sm);
}

.concept-image {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 396px;
}

.concept-image img {
  width: 100%;
  height: 108%;
  object-fit: cover;
}

.concept-image img.parallax {
  will-change: transform;
}

.concept-content {
  position: relative;
  padding-top: 0;
}

.concept-deco {
  margin-bottom: 0;
  padding-bottom: var(--space-sm);
  font-family: "Instrument Serif", serif;
  font-size: clamp(56px, 9vw, 99px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(248, 247, 244, 0.08);
  pointer-events: none;
  user-select: none;
}

.concept-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
}

.concept-body {
  max-width: 448px;
  margin-top: var(--space-sm);
}

.concept-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(248, 247, 244, 0.5);
}

.concept-body p + p {
  margin-top: var(--space-xs);
}

/* ===== Flow ===== */
.flow {
  padding: var(--space-section) 0;
}

.flow-list {
  margin-top: var(--space-sm);
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 155px 1fr 1.6fr;
  align-items: center;
  min-height: 0;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
  padding: var(--space-sm) 0;
}

.flow-num {
  font-family: "Instrument Serif", serif;
  font-size: clamp(44px, 6vw, 66px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e5e3de;
}

.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
}

.flow-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #908d84;
}

/* ===== FAQ ===== */
.faq {
  background: #efede8;
  padding: var(--space-section) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.faq-title {
  margin-top: var(--space-xs);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #19180e;
}

.faq-item {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.faq-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) 0;
  text-align: left;
  gap: var(--space-xs);
}

.faq-q {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #19180e;
}

.faq-toggle {
  flex-shrink: 0;
  padding-top: 2px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: var(--tracking-en);
  color: #908d84;
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

.faq-trigger:hover .faq-toggle,
.faq-item.is-open .faq-toggle {
  opacity: 1;
}

.faq-answer {
  padding: 0 0 var(--space-sm);
}

.faq-answer p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #908d84;
  max-width: 520px;
}

.faq-more {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.faq-more a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #908d84;
  transition: color 0.35s ease;
}

.faq-more a:hover {
  color: #19180e;
}

/* ===== Reserve ===== */
.reserve {
  position: relative;
  background: #19180e;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  font-family: "Instrument Serif", serif;
  font-size: clamp(160px, 30vw, 330px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(248, 247, 244, 0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.reserve .inner {
  position: relative;
  z-index: 1;
}

.reserve-title {
  margin-top: var(--space-sm);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 200;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
}

.reserve-lead {
  margin-top: var(--space-sm);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(248, 247, 244, 0.38);
}

.reserve-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 57px;
  border: 1px solid rgba(248, 247, 244, 0.3);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(248, 247, 244, 0.75);
  overflow: hidden;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn-outline:hover {
  background: rgba(248, 247, 244, 0.08);
  border-color: rgba(248, 247, 244, 0.55);
  color: #f8f7f4;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(248, 247, 244, 0.28);
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: rgba(248, 247, 244, 0.7);
}

.reserve-meta {
  margin-top: var(--space-sm);
  padding-top: 33px;
  border-top: 1px solid rgba(248, 247, 244, 0.08);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(248, 247, 244, 0.2);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.footer-logo {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #19180e;
}

.footer-catch {
  margin-top: var(--space-xs);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #908d84;
}

.footer-heading {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #19180e;
}

.footer-list,
.footer-nav {
  margin-top: var(--space-xs);
}

.footer-list li,
.footer-nav li {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #908d84;
}

.footer-list li + li,
.footer-nav li + li {
  margin-top: 12px;
}

.footer-nav a {
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #19180e;
}

.footer-copy {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.footer-copy p {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 64px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
}

/* ===== Tablet ===== */
@media (max-width: 900px) {
  .header {
    padding: 0 40px;
  }

  .hero {
    padding: 120px 40px 80px;
  }

  .inner {
    padding-left: var(--pad-x-md);
    padding-right: var(--pad-x-md);
  }

  .empathy,
  .flow,
  .faq {
    padding: var(--space-section) 0;
  }

  .concept {
    padding: var(--space-section) 0;
  }

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

  .empathy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .empathy-body {
    padding-left: 0;
    padding-top: 0;
  }

  .flow-item {
    grid-template-columns: 100px 1fr 1.4fr;
  }

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

  .footer-copy p {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ===== Mobile (TOP-rc) ===== */
@media (max-width: 768px) {
  .header {
    padding: 0 32px;
    height: 80px;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: #f8f7f4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 16px;
    letter-spacing: 0.22em;
  }

  .menu-btn {
    display: block;
    z-index: 101;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 80px 80px;
  }

  .hero-bg {
    top: -255px;
    left: -60%;
    font-size: 680px;
  }

  .hero-top {
    padding-top: 48px;
  }

  .hero-title {
    padding-top: 0;
    font-size: 51px;
    letter-spacing: 0.03em;
    line-height: 1.45;
  }

  .hero-cta {
    right: 32px;
    bottom: 32px;
  }

  .inner {
    padding-left: var(--pad-x-sm);
    padding-right: var(--pad-x-sm);
  }

  .empathy {
    padding: 80px 0;
  }

  .empathy-title {
    margin-top: var(--space-xs);
    font-size: 32px;
    line-height: 1.3;
  }

  .empathy-body p {
    line-height: 1.8;
  }

  .concept {
    padding: 80px 0;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .concept-visual {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
  }

  .concept-visual .section-label {
    margin-bottom: 0;
    writing-mode: horizontal-tb;
  }

  .concept-image {
    max-width: 128px;
    max-height: 192px;
    justify-self: end;
  }

  .concept-deco {
    font-size: 56px;
    padding-bottom: 40px;
  }

  .concept-title {
    font-size: 28.7px;
  }

  .concept-body {
    max-width: none;
  }

  .flow {
    padding: 80px 0;
  }

  .flow-list {
    margin-top: 80px;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 58px 100px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0 16px;
    min-height: 0;
    padding: 40px 0 48px;
  }

  .flow-num {
    grid-row: 1 / 3;
    font-size: 45px;
    align-self: start;
    margin-top: 8px;
  }

  .flow-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .flow-text {
    grid-column: 3;
    line-height: 1.75;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-title {
    font-size: 22px;
    line-height: 1.55;
  }

  .faq-title br:nth-child(2) {
    display: none;
  }

  .faq-q {
    font-size: 13px;
  }

  .reserve {
    padding: 80px 0;
  }

  .reserve-title {
    font-size: 36px;
  }

  .reserve-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .btn-outline {
    padding: 20px 56px;
  }

  .reserve-meta {
    line-height: 1.7;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-copy p {
    padding: 24px 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 32px 80px;
  }

  .hero-title {
    font-size: 40px;
  }

  .flow-item {
    grid-template-columns: 48px 1fr;
    gap: 8px 12px;
  }

  .flow-num {
    grid-row: 1;
  }

  .flow-title {
    grid-column: 2;
  }

  .flow-text {
    grid-column: 2;
    grid-row: 2;
  }
}

/* ===== ABOUT Page ===== */
.page-header {
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
  padding: calc(80px + var(--space-section)) 0 var(--space-sm);
}

.page-title {
  margin-top: var(--space-xs);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #19180e;
}

.about-story {
  padding: var(--space-section) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
}

.about-story-heading {
  margin-top: var(--space-sm);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #19180e;
}

.about-story-body {
  margin-top: var(--space-sm);
}

.about-story-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #908d84;
}

.about-story-body p + p {
  margin-top: var(--space-xs);
}

.about-story-image {
  position: relative;
  background: #e5e3de;
  overflow: hidden;
  margin: 0;
  min-height: 100%;
}

.about-story-image img {
  position: absolute;
  inset: -4% 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
}

.about-values {
  background: #efede8;
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.about-values-title {
  margin-top: var(--space-sm);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #19180e;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.values-item {
  padding: var(--space-sm) var(--space-sm) 0 0;
}

.values-num {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #908d84;
  line-height: 1.4;
}

.values-heading {
  margin-top: var(--space-xs);
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
  line-height: 1.5;
}

.values-text {
  margin-top: var(--space-xs);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #908d84;
}

.about-stylist {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.about-stylist-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}

.about-stylist-image {
  position: relative;
  background: #e5e3de;
  overflow: hidden;
  margin: 0;
  min-height: 100%;
}

.about-stylist-image img {
  position: absolute;
  inset: -4% 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
}

.stylist-name {
  margin-top: 32px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
  line-height: 1.33;
}

.stylist-role {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #908d84;
}

.stylist-body {
  margin-top: var(--space-sm);
}

.stylist-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #908d84;
}

.stylist-body p + p {
  margin-top: var(--space-xs);
}

.stylist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.stylist-stat-value {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #19180e;
  line-height: 1.33;
}

.stylist-stat-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
}

.about-menu-cta {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
  padding: var(--space-section) 0;
}

.about-menu-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.about-menu-cta-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #19180e;
  line-height: 1.4;
}

.about-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 16px 41px;
  border: 1px solid rgba(25, 24, 14, 0.25);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: #19180e;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.about-menu-btn:hover {
  background: rgba(25, 24, 14, 0.04);
  border-color: rgba(25, 24, 14, 0.5);
}

@media (max-width: 900px) {
  .about-story-grid,
  .about-stylist-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  .about-story-image {
    order: -1;
    height: auto;
    aspect-ratio: 3 / 4;
    max-height: 440px;
  }

  .about-story-image img {
    position: absolute;
  }

  .about-stylist-image {
    height: auto;
    aspect-ratio: 3 / 4;
  }

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

  .values-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(25, 24, 14, 0.08);
  }

  .values-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: calc(80px + 64px) 0 var(--space-sm);
  }

  .page-title {
    font-size: 26px;
  }

  .about-story,
  .about-stylist {
    padding: 80px 0;
  }

  .about-values {
    padding: 80px 0;
  }

  .about-story-heading {
    font-size: 24px;
    line-height: 1.7;
  }

  .stylist-stats {
    gap: 16px;
  }

  .about-menu-cta {
    padding: 80px 0;
  }

  .about-menu-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-menu-btn {
    width: 100%;
  }
}

/* ===== MENU Page ===== */
.menu-section {
  padding: var(--space-sm) 0 0;
}

.menu-note {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #908d84;
}

.menu-filters {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 48px;
  border: 1px solid rgba(25, 24, 14, 0.08);
}

.menu-filter {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #908d84;
  border-right: 1px solid rgba(25, 24, 14, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.menu-filter:last-child {
  border-right: none;
}

.menu-filter:hover {
  color: #19180e;
}

.menu-filter.is-active {
  background: #19180e;
  color: #f8f7f4;
}

.menu-list {
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
}

.menu-item[hidden] {
  display: none;
}

.menu-item-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-item-name {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #19180e;
  line-height: 1.4;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid rgba(25, 24, 14, 0.12);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #908d84;
  line-height: 1.4;
}

.menu-item-desc {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #908d84;
}

.menu-item-time {
  padding-top: 3px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #908d84;
  text-align: left;
}

.menu-item-price {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #19180e;
  text-align: right;
  line-height: 1.4;
}

.menu-reserve-cta {
  margin-top: 0;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
  padding: var(--space-section) 0;
}

.menu-reserve-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.menu-reserve-title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #19180e;
  line-height: 1.4;
}

.menu-reserve-text {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .menu-section {
    padding: 64px 0 0;
  }

  .menu-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .menu-filter {
    border-right: 1px solid rgba(25, 24, 14, 0.08);
    border-bottom: 1px solid rgba(25, 24, 14, 0.08);
    text-align: center;
    justify-content: center;
  }

  .menu-filter:nth-child(3),
  .menu-filter:nth-child(5) {
    border-right: none;
  }

  .menu-filter:nth-child(4),
  .menu-filter:nth-child(5) {
    border-bottom: none;
  }

  .menu-filter:nth-child(4) {
    grid-column: 1 / 2;
  }

  .menu-filter:nth-child(5) {
    grid-column: 2 / 3;
  }

  .menu-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0 16px;
    padding: 32px 0;
  }

  .menu-item-main {
    grid-column: 1 / -1;
  }

  .menu-item-time {
    grid-column: 1;
    margin-top: 16px;
    padding-top: 0;
  }

  .menu-item-price {
    grid-column: 2;
    align-self: end;
    margin-top: 16px;
  }

  .menu-reserve-cta {
    padding: 80px 0;
  }

  .menu-reserve-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-reserve-cta-inner .about-menu-btn {
    width: 100%;
  }
}

/* ===== FAQ Page ===== */
.faq-page {
  padding: var(--space-sm) 0 0;
}

.faq-group + .faq-group {
  margin-top: var(--space-sm);
}

.faq-group-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #908d84;
  line-height: 1.4;
  margin-bottom: 0;
}

.faq-page-list {
  margin-top: 32px;
}

.faq-page .faq-item {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.faq-page .faq-item:last-child {
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
}

.faq-page .faq-trigger {
  padding: 28px 0;
}

.faq-page .faq-q {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
  line-height: 1.6;
}

.faq-page .faq-toggle {
  opacity: 0.35;
}

.faq-page .faq-answer {
  padding: 0 0 28px;
}

.faq-page .faq-answer p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #908d84;
  max-width: 640px;
}

.faq-contact {
  margin-top: var(--space-sm);
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.faq-contact-title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #19180e;
  line-height: 1.4;
}

.faq-contact-text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
  line-height: 2;
}

.faq-contact .about-menu-btn {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .faq-page {
    padding: 64px 0 0;
  }

  .faq-group + .faq-group {
    margin-top: 48px;
  }

  .faq-page .faq-q {
    font-size: 13px;
    padding-right: 16px;
  }

  .faq-contact {
    padding: 80px 0;
  }

  .faq-contact .about-menu-btn {
    display: inline-flex;
    width: 100%;
  }
}

/* ===== NEWS Page ===== */
.news-section {
  padding: var(--space-sm) 0 var(--space-section);
}

.news-list {
  border-top: 1px solid rgba(25, 24, 14, 0.08);
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
}

.news-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 64px;
  align-items: start;
  width: 100%;
  padding: 32px 0;
  border: none;
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
  background: none;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.news-list li:last-child .news-item {
  border-bottom: none;
}

.news-item:hover {
  opacity: 0.65;
}

.news-date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
  line-height: 1.4;
  padding-top: 4px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border: 1px solid rgba(25, 24, 14, 0.08);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #908d84;
  line-height: 1.4;
}

.news-title {
  display: block;
  margin-top: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
  line-height: 1.6;
}

/* News modal */
body.modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-modal[hidden] {
  display: none;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 247, 244, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.news-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 56px 48px 48px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(25, 24, 14, 0.08);
}

.news-modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #999;
  transition: color 0.25s ease;
}

.news-modal-close:hover {
  color: #19180e;
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.news-modal-date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #999;
  line-height: 1.4;
}

.news-modal-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border: 1px solid rgba(25, 24, 14, 0.12);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #999;
  line-height: 1.4;
}

.news-modal-title {
  margin-top: 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.5;
}

.news-modal-content {
  margin-top: 36px;
}

.news-modal-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #666;
}

.news-modal-content p + p {
  margin-top: 1.5em;
}

.news-modal-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.news-modal-link {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #333;
  transition: opacity 0.25s ease;
}

.news-modal-link:hover {
  opacity: 0.55;
}

@media (max-width: 768px) {
  .news-section {
    padding: 64px 0 64px;
  }

  .news-item {
    grid-template-columns: 96px 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .news-title {
    margin-top: 8px;
  }

  .news-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .news-modal-dialog {
    max-width: none;
    max-height: calc(100vh - 32px);
    padding: 48px 28px 36px;
  }

  .news-modal-close {
    top: 20px;
    right: 20px;
  }

  .news-modal-title {
    font-size: 18px;
  }
}

/* ===== CONTACT Page ===== */
.contact-section {
  padding: var(--space-sm) 0 var(--space-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-heading {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #908d84;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(25, 24, 14, 0.08);
}

.contact-info-list {
  margin-top: 32px;
}

.contact-info-item + .contact-info-item {
  margin-top: 24px;
}

.contact-info-item dt {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #19180e;
  line-height: 2;
}

.contact-info-item dd {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #908d84;
}

.contact-info-notes {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(25, 24, 14, 0.08);
}

.contact-info-notes p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #908d84;
}

.contact-info-notes p + p {
  margin-top: var(--space-xs);
}

.contact-tabs {
  display: inline-flex;
  border: 1px solid rgba(25, 24, 14, 0.08);
}

.contact-tab {
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #908d84;
  border-right: 1px solid rgba(25, 24, 14, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-tab:last-child {
  border-right: none;
}

.contact-tab.is-active {
  background: #19180e;
  color: #f8f7f4;
}

.contact-form {
  margin-top: 56px;
}

.contact-form[hidden] {
  display: none;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-row + .form-field,
.form-field + .form-row,
.form-row + .form-row,
.contact-form > .form-field + .form-field {
  margin-top: 40px;
}

.form-row--2 > .form-field {
  margin-top: 0;
}

.form-field label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #19180e;
}

.form-field .req {
  color: #908d84;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(25, 24, 14, 0.12);
  background: transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #19180e;
  line-height: 1.5;
  appearance: none;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #c5c2ba;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #19180e;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, #908d84 50%),
    linear-gradient(135deg, #908d84 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% + 2px), calc(100% - 7px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
}

.form-field select:invalid {
  color: #c5c2ba;
}

.form-actions {
  margin-top: 56px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 50px;
  background: #19180e;
  color: #f8f7f4;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease;
}

.form-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #908d84;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 64px 0 80px;
  }

  .form-row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row--2 .form-field + .form-field {
    margin-top: 40px;
  }

  .contact-tabs {
    display: flex;
    width: 100%;
  }

  .contact-tab {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
  }

  .form-submit {
    width: 100%;
  }
}

/* ===== Motion: fade / card / btn / parallax ===== */
.fade {
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

html.js .fade {
  opacity: 0;
  transform: translateY(24px);
}

html.js .fade.active,
.fade.active {
  opacity: 1;
  transform: translateY(0);
}

.fade:nth-child(1) { transition-delay: 0.1s; }
.fade:nth-child(2) { transition-delay: 0.2s; }
.fade:nth-child(3) { transition-delay: 0.3s; }
.fade:nth-child(4) { transition-delay: 0.4s; }

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

.card {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(25, 24, 14, 0.08);
}

.parallax {
  will-change: transform;
  transition: transform 0.15s linear;
}

.btn {
  position: relative;
  overflow: hidden;
}

.hero-cta.btn {
  position: fixed;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.18) 55%,
    transparent 100%
  );
  pointer-events: none;
  transition: left 0.55s ease-out;
}

.btn:hover::after {
  left: 100%;
}

.btn-outline.btn::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(25, 24, 14, 0.06) 45%,
    rgba(25, 24, 14, 0.1) 50%,
    rgba(25, 24, 14, 0.06) 55%,
    transparent 100%
  );
}

.about-menu-btn.btn::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(25, 24, 14, 0.06) 45%,
    rgba(25, 24, 14, 0.1) 50%,
    rgba(25, 24, 14, 0.06) 55%,
    transparent 100%
  );
}

.values-item.card,
.menu-item.card,
.news-item.card {
  box-shadow: none;
}

.values-item.card:hover,
.menu-item.card:hover {
  box-shadow: 0 10px 24px rgba(25, 24, 14, 0.06);
}

.news-item.card:hover {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.concept-image.card,
.about-story-image.card,
.about-stylist-image.card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .fade,
  html.js .fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker-track {
    animation: none;
    opacity: 0.75;
  }

  .card,
  .card:hover,
  .btn::after,
  .parallax {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  .btn:hover::after {
    left: -100%;
  }
}
