/* ============================================================
   LUMIÈRE Hair & Beauty Salon — salon.css v2
   設計書: 2026-03-15_hair-salon-v2_A.md
   ============================================================ */

/* ============================================================
   CSS Variables (Design Tokens)
   ============================================================ */
:root {
  /* ベース */
  --salon-bg:          #FAF8F5;
  --salon-surface:     #F2EDE6;
  --salon-surface-dark:#E8E0D6;

  /* テキスト */
  --salon-text:        #1A1612;
  --salon-muted:       #6B5F55;
  --salon-placeholder: #9B9189;

  /* アクセント（デュアル） */
  --salon-terra:       #8C4830;
  --salon-terra-d:     #7A3F28;
  --salon-gold:        #C9A96E;
  --salon-gold-lt:     #DFC18A;

  /* ボーダー・ライン */
  --salon-border:      #E0D8CF;
  --salon-border-md:   #C8BDB3;
  --salon-line:        #1A1612;

  /* デモバナー */
  --salon-demo-bg:     #1A1612;
  --salon-demo-link:   #C9A96E;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--salon-text);
  background-color: var(--salon-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1,
.salon-display {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: "Noto Serif JP", Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3, h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.salon-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--salon-muted);
}

/* ============================================================
   Accessibility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--salon-terra);
  outline-offset: 3px;
}

/* ============================================================
   Container
   ============================================================ */
.salon-container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .salon-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ============================================================
   0. Demo Banner
   ============================================================ */
.demo-banner {
  background: var(--salon-demo-bg);
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .demo-banner {
    font-size: 0.625rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem;
  }
}

.demo-banner a {
  color: var(--salon-demo-link);
  margin-left: 1rem;
  text-decoration: underline;
  transition: opacity 200ms ease-out;
}

.demo-banner a:hover {
  opacity: 0.8;
}

/* ============================================================
   1. Navigation
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 300ms ease;
}

#site-header.hidden-up {
  transform: translateY(-100%);
}

.salon-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(26, 22, 18, 0.12);
  transition: background 300ms ease-out, box-shadow 300ms ease-out;
}

@media (min-width: 768px) {
  .salon-nav {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .salon-nav {
    padding: 0 4rem;
  }
}

/* scrolled state kept for potential future enhancements */

.salon-nav-logo {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 1.625rem;
  color: var(--salon-text);
  letter-spacing: 0.02em;
  transition: opacity 200ms ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.salon-nav-logo:hover {
  opacity: 0.7;
}

.salon-nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .salon-nav-links {
    display: flex;
  }
}

.salon-nav-links a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salon-muted);
  transition: color 200ms ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}

.salon-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--salon-terra);
  transition: width 300ms ease-out;
}

@media (hover: hover) {
  .salon-nav-links a:hover {
    color: var(--salon-text);
  }
  .salon-nav-links a:hover::after {
    width: 100%;
  }
}

.salon-nav-cta {
  display: none;
  background: var(--salon-terra);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 200ms ease-out, transform 200ms ease-out;
  min-height: 44px;
  align-items: center;
}

.salon-nav-cta:hover {
  background: var(--salon-terra-d);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .salon-nav-cta {
    display: flex;
  }
}

/* Hamburger Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.625rem;
  color: var(--salon-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms ease-out;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 300ms ease-in-out, opacity 200ms ease-in-out;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--salon-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  pointer-events: none;
}

#mobile-menu[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#mobile-menu a {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--salon-text);
  padding: 0.875rem 2rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 200ms ease-out;
  letter-spacing: 0.02em;
}

#mobile-menu a:hover {
  color: var(--salon-terra);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salon-muted);
  font-size: 1.5rem;
  transition: color 200ms ease-out;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-close:hover {
  color: var(--salon-text);
}

/* ============================================================
   2. Hero
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  #hero {
    grid-template-columns: 45fr 55fr;
  }
}

.hero-photo {
  order: -1;
  position: relative;
  overflow: hidden;
  height: 75vw;
  min-height: 300px;
}

@media (min-width: 768px) {
  .hero-photo {
    order: 2;
    height: auto;
    min-height: 100vh;
  }
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-photo-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 248, 245, 0.88);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-family: "Noto Serif JP", Georgia, serif;
  color: var(--salon-muted);
  letter-spacing: 0.08em;
  max-width: 200px;
  line-height: 1.6;
  border-radius: 1px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 3rem 2rem;
  background: var(--salon-bg);
}

@media (min-width: 768px) {
  .hero-text {
    order: 1;
    padding: 5rem 3rem 6rem 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-text {
    padding: 5rem 4rem 6rem 5rem;
  }
}

.hero-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4A3F37;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 7rem);
  color: var(--salon-text);
  line-height: 1.0;
}

.hero-catch {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--salon-text);
  margin-top: 1.5rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-subcopy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: var(--salon-muted);
  margin-top: 1rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  max-width: 36rem;
  text-wrap: pretty;
}

.hero-microcopy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: var(--salon-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9E5D42;
  color: #fff;
  padding: 0.875rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 200ms ease-out, transform 200ms ease-out;
  min-height: 44px;
  min-width: 180px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #A8633D;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--salon-muted);
  padding: 0.875rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--salon-border-md);
  border-radius: 2px;
  transition: border-color 300ms ease-out, color 200ms ease-out;
  min-height: 44px;
  min-width: 180px;
}

.btn-secondary:hover {
  border-color: var(--salon-terra);
  color: var(--salon-terra);
}

/* Scroll hint — SP版ではCTAがあるため非表示 */
.hero-scroll-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--salon-muted);
}

@media (min-width: 768px) {
  .hero-scroll-hint {
    display: flex;
  }
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: var(--salon-border-md);
  position: relative;
  overflow: hidden;
}

.scroll-arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: var(--salon-terra);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ============================================================
   3. Brand Statement
   ============================================================ */
#statement {
  background: var(--salon-bg);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  #statement {
    padding: 6rem 0;
  }
}

#statement .salon-container {
  display: flex;
  justify-content: center;
}

.statement-quote {
  border-top: 1px solid var(--salon-gold);
  border-bottom: 1px solid var(--salon-gold);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.statement-quote p {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 4vw, 2.75rem);
  color: var(--salon-text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ============================================================
   4. Concept (Zigzag x3)
   ============================================================ */
#concept {
  /* セクション全体 */
}

.concept-block {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .concept-block {
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
  }
}

.concept-block--bg {
  background: var(--salon-bg);
}

.concept-block--surface {
  background: var(--salon-surface);
}

.concept-photo {
  position: relative;
  overflow: hidden;
  height: 65vw;
  min-height: 240px;
  order: -1;
}

@media (min-width: 768px) {
  .concept-photo {
    height: auto;
    min-height: 60vh;
    order: unset;
  }
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out;
  position: absolute;
  inset: 0;
}

.concept-photo:hover img {
  transform: scale(1.03);
}

/* 偶数ブロック: 写真を右に */
.concept-block--reverse .concept-photo {
  order: -1;
}

@media (min-width: 768px) {
  .concept-block--reverse .concept-photo {
    order: 2;
  }
  .concept-block--reverse .concept-text {
    order: 1;
  }
}

.concept-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: inherit;
}

@media (min-width: 768px) {
  .concept-text {
    padding: 5rem 4rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.concept-text-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 0.75rem;
}

.concept-text-subtitle {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.875rem;
  color: var(--salon-muted);
  margin-bottom: 0.5rem;
}

.concept-text h2 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--salon-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.concept-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  color: var(--salon-muted);
  margin-top: 2rem;
  line-height: 1.85;
  max-width: 640px;
}

/* ============================================================
   5. Services (Sticky Sidebar)
   ============================================================ */
#services {
  background: var(--salon-surface);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .services-inner {
    grid-template-columns: 260px 1fr;
    align-items: start;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }
}

/* Section header (mobile / tablet) */
.services-header {
  padding: 3rem 2rem 1.5rem;
}

@media (min-width: 768px) {
  .services-header {
    padding: 4rem 4rem 2rem;
    max-width: 1024px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .services-header {
    display: none;
  }
}

.services-header-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 0.75rem;
}

.services-header h2 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--salon-text);
  letter-spacing: -0.02em;
}

/* Sidebar */
.services-sidebar {
  padding: 1rem 2rem 1.5rem;
}

@media (min-width: 768px) {
  .services-sidebar {
    padding: 1rem 4rem 2rem;
    max-width: 1024px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .services-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
    padding: 3rem 2rem 3rem 0;
    max-width: none;
    margin: 0;
  }
}

.services-sidebar-label {
  display: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .services-sidebar-label {
    display: block;
  }
}

.services-sidebar-heading {
  display: none;
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--salon-text);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .services-sidebar-heading {
    display: block;
  }
}

.services-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .services-cat-list {
    flex-direction: column;
    gap: 0;
  }
}

.services-cat-list a {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--salon-muted);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--salon-border);
  border-radius: 2px;
  transition: color 200ms ease-out, border-color 200ms ease-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-cat-list a {
    font-size: 1.4rem;
    padding: 0.6rem 0 0.6rem 1.75rem;
    border: none;
    position: relative;
    border-radius: 0;
  }

  .services-cat-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--salon-terra);
    transition: width 200ms ease-out;
  }

  .services-cat-list a.active::before,
  .services-cat-list a:hover::before {
    width: 1rem;
  }
}

.services-cat-list a.active,
.services-cat-list a:hover {
  color: var(--salon-text);
  border-color: var(--salon-terra);
}

@media (min-width: 1024px) {
  .services-cat-list a.active,
  .services-cat-list a:hover {
    border: none;
  }
}

/* Services Content */
.services-content {
  padding: 1rem 2rem 3rem;
}

@media (min-width: 768px) {
  .services-content {
    padding: 2rem 4rem 4rem;
    max-width: 1024px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: 3rem 0 3rem 3rem;
    max-width: none;
    margin: 0;
  }
}

.service-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category h3 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--salon-text);
  border-bottom: 1px solid var(--salon-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-item:last-of-type {
  margin-bottom: 0;
}

.service-item-name {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.9375rem;
  color: var(--salon-text);
  font-weight: 400;
  /* モバイルで長いメニュー名が価格・時間を押し出さないよう min-width: 0 を設定 */
  white-space: normal;
  min-width: 0;
  word-break: break-all;
}

@media (min-width: 480px) {
  .service-item-name {
    white-space: nowrap;
    word-break: normal;
  }
}

.service-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--salon-border-md);
  position: relative;
  top: -3px;
  /* 価格・時間を表示できるよう最小幅を抑える */
  min-width: 8px;
}

/* 超小画面では dots を非表示にして名前を折り返す */
@media (max-width: 479px) {
  .service-item {
    flex-wrap: wrap;
  }

  .service-item-dots {
    display: none;
  }

  .service-item-price {
    margin-left: auto;
  }
}

.service-item-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--salon-terra);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-item-time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: var(--salon-muted);
  margin-left: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: var(--salon-muted);
  margin-top: 1.5rem;
  line-height: 1.7;
}

/* ============================================================
   6. Stylists (Horizontal Scroll)
   ============================================================ */
#stylists {
  background: var(--salon-surface-dark);
  padding: 5rem 0;
}

.stylists-header {
  padding: 0 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .stylists-header {
    padding: 0 4rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
}

.stylists-header-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 0.75rem;
}

.stylists-header h2 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--salon-text);
  letter-spacing: -0.02em;
}

.stylist-scroll {
  /* モバイル: 縦1列グリッド */
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

/* タブレット以上: 横スクロールに切り替え */
@media (min-width: 768px) {
  .stylist-scroll {
    display: flex;
    overflow-x: auto;
    grid-template-columns: unset;
    gap: 1.5rem;
    padding-left: max(2.5rem, calc((100vw - 1024px) / 2));
    padding-right: max(2.5rem, calc((100vw - 1024px) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--salon-border) transparent;
  }
}

.stylist-scroll::-webkit-scrollbar {
  height: 4px;
}

.stylist-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.stylist-scroll::-webkit-scrollbar-thumb {
  background: var(--salon-border-md);
  border-radius: 2px;
}

.stylist-card {
  /* モバイル: グリッド内で自動幅 */
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 768px) {
  /* タブレット以上: 固定幅カードで横スクロール */
  .stylist-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

.stylist-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 1px;
}

@media (min-width: 768px) {
  .stylist-photo {
    height: 340px;
  }
}

.stylist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease-out;
}

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

.stylist-photo-overlay {
  position: absolute;
  inset: 0;
  background: var(--salon-terra);
  opacity: 0;
  transition: opacity 300ms ease-out;
  pointer-events: none;
}

.stylist-card:hover .stylist-photo-overlay {
  opacity: 0.15;
}

.stylist-info {
  padding: 1.25rem 0;
}

.stylist-role {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8A4E2A;
  margin-bottom: 0.25rem;
}

.stylist-name-ja {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--salon-text);
  margin-bottom: 0.15rem;
}

.stylist-name-en {
  font-family: "Bodoni Moda", Georgia, serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--salon-muted);
  margin-bottom: 0.75rem;
}

.stylist-specialty {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: var(--salon-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.stylist-instagram {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: var(--salon-muted);
  min-height: 44px;
  padding: 0.5rem 0;
  transition: color 200ms ease-out;
}

.stylist-instagram:hover {
  color: var(--salon-terra);
  text-decoration: underline;
}

/* ============================================================
   7. Reviews (Hybrid)
   ============================================================ */
#reviews {
  background-color: var(--salon-bg);
  background-image: radial-gradient(ellipse 50% 40% at 40% 60%, rgba(196, 120, 90, 0.08), transparent 70%);
  padding: 5rem 0 3rem;
}

/* Large Quote */
.review-main {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .review-main {
    padding: 5rem 0;
  }
}

.review-main-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .review-main-inner {
    padding: 0 4rem;
  }
}

.review-main-quote-mark {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 5rem;
  color: var(--salon-gold);
  opacity: 0.4;
  line-height: 0.6;
  display: block;
  margin-bottom: 1.5rem;
  user-select: none;
}

.review-main blockquote p {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--salon-text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.review-main figcaption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: var(--salon-muted);
  margin-top: 2rem;
  letter-spacing: 0.15em;
}

.review-divider {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  height: 1px;
  background: var(--salon-border);
}

/* Small Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem 2rem 0;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem 4rem 0;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.review-card {
  background: var(--salon-surface);
  padding: 2rem;
  border-radius: 2px;
}

.review-stars {
  color: var(--salon-terra);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  color: var(--salon-muted);
  line-height: 1.75;
}

.review-card-author {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--salon-text);
  margin-top: 1.5rem;
}

/* ============================================================
   8. Booking & Access
   ============================================================ */
#booking {
  background: var(--salon-bg);
  padding: 5rem 0;
}

.booking-inner {
  padding: 0 2rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .booking-inner {
    padding: 0 4rem;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Access Column */
.booking-access-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 0.75rem;
}

.booking-access h2 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--salon-text);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.access-dl {
  border-top: 1px solid var(--salon-border);
}

.access-dl dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--salon-terra);
  padding-top: 1rem;
}

.access-dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  color: var(--salon-text);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--salon-border);
  margin-top: 0.25rem;
  margin-left: 0;
}

.access-map {
  margin-top: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--salon-border);
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  color: var(--salon-terra);
  margin-top: 0.75rem;
  transition: opacity 200ms ease-out;
  min-height: 44px;
}

.access-map-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Booking Form Column */
.booking-form-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--salon-terra);
  margin-bottom: 0.75rem;
}

.booking-form h2 {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--salon-text);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* Form first on mobile */
@media (max-width: 767px) {
  .booking-form {
    order: -1;
  }
  .booking-access {
    order: 1;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salon-muted);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--salon-terra);
  margin-left: 0.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--salon-bg);
  border: 1px solid var(--salon-border-md);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  color: var(--salon-text);
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--salon-placeholder);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--salon-terra);
  box-shadow: 0 0 0 2px rgba(196, 120, 90, 0.15);
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #B5373A;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field-error {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #B5373A;
  margin-top: 0.4rem;
}

.form-submit {
  width: 100%;
  background: var(--salon-terra);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease-out;
  min-height: 44px;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--salon-terra-d);
}

.form-success {
  background: #f0f7f0;
  border: 1px solid #a8d5a8;
  border-radius: 2px;
  padding: 1.5rem;
  text-align: center;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.9375rem;
  color: #2d6a2d;
  margin-top: 1rem;
  display: none;
}

/* ============================================================
   9. Footer
   ============================================================ */
#site-footer {
  background: var(--salon-text);
}

.footer-top {
  border-top: 1px solid rgba(201, 169, 110, 0.4);
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-top {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.footer-brand {
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: "Bodoni Moda", "Noto Serif JP", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.95);
  display: inline-block;
  margin-bottom: 0.25rem;
  transition: opacity 200ms ease-out;
  min-height: 44px;
  line-height: 1.3;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-sublogo {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.footer-col ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.2;
  transition: color 200ms ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-instagram-id {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-copyright {
    padding: 1.5rem 4rem;
  }
}

.footer-copyright p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #8c8580;
}

.footer-copyright a {
  color: rgba(201, 169, 110, 0.8);
  text-decoration: underline;
  transition: opacity 200ms ease-out;
}

.footer-copyright a:hover {
  opacity: 0.7;
}

/* ============================================================
   Scroll Reveal Animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: none;
}

/* ============================================================
   日本語タイポグラフィ最適化
   ============================================================ */
h1, h2, h3, h4 {
  word-break: auto-phrase;
  text-wrap: pretty;
  font-feature-settings: "palt";
}

/* BudouX・wbr対応 */
.break-at-phrase {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

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

  html {
    scroll-behavior: auto !important;
  }
}
