@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ===== Variables ===== */
:root {
  --dark:       #1A1A2E;
  --navy:       #16213E;
  --gold:       #C4A35A;
  --gold-light: #D9C07A;
  --white:      #FFFFFF;
  --off-white:  #F8F7F5;
  --gray-light: #EEECE8;
  --text:       #333333;
  --text-sub:   #777777;
  --border:     #E0DDD8;
  --header-h:   80px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  padding-top: var(--header-h);
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 16px;
}

.logo a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
  line-height: 1;
}

.logo-jp {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-sub);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-phone {
  border: 1px solid var(--dark);
  color: var(--dark);
}
.btn-phone:hover { background: var(--dark); color: var(--white); }

.btn-reserve {
  background: var(--dark);
  color: var(--white);
}
.btn-reserve:hover { background: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
}
.btn-gold:hover { background: var(--gold-light); }

/* ===== Global Nav (インラインナビ) ===== */
.global-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list a {
  display: block;
  padding: 0 14px;
  height: var(--header-h);
  line-height: var(--header-h);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 400;
  transition: all 0.2s;
}
.nav-list a:hover, .nav-list a.active {
  color: var(--gold);
}

/* hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2C3E60 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

.page-hero-jp {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* breadcrumb */
.breadcrumb {
  background: var(--off-white);
  padding: 10px 0;
  font-size: 12px;
  color: var(--text-sub);
}
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ===== Section ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--dark);
}

.section-dark .section-en { color: var(--white); }

.section-jp {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-sub);
  font-weight: 400;
}

.section-dark .section-jp { color: rgba(255,255,255,0.5); }

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ===== Photo Placeholder ===== */
.photo {
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--border);
  font-size: 12px;
  letter-spacing: 0.1em;
  gap: 8px;
}

.photo::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cccccc' viewBox='0 0 24 24'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-1.1 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E") center/24px no-repeat;
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
}

.hero-slide:nth-child(1) .hero-slide-bg {
  background: linear-gradient(160deg, #1A1A2E 0%, #2C3654 40%, #1A1A2E 100%);
}
.hero-slide:nth-child(2) .hero-slide-bg {
  background: linear-gradient(160deg, #2C1A1A 0%, #3A2020 40%, #1A1818 100%);
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background: linear-gradient(160deg, #1A2420 0%, #2A3830 40%, #1A2420 100%);
}

.hero-slide-photo {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}

.hero-slide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.4em;
  opacity: 0.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text {
  margin-top: 24px;
  font-size: 13px;
  line-height: 2;
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* slider dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ===== Statement Section ===== */
.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.statement-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 400;
}

.statement-title {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: var(--dark);
}

.statement-text {
  margin-top: 28px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-sub);
}

/* ===== GOTO meaning ===== */
.goto-words {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.goto-word {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.goto-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.goto-word-en {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-sub);
  font-weight: 400;
}

.goto-word-jp {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text);
}

/* ===== 2-col layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== Menu Grid ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.menu-card {
  position: relative;
  overflow: hidden;
}

.menu-card-photo {
  height: 280px;
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  text-align: center;
}

.menu-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.menu-card-jp {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-top: 4px;
}

.menu-card-link {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.menu-card:hover .menu-card-link { border-color: var(--white); }

/* ===== Service Card (menu page) ===== */
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-child { border-bottom: none; }

.service-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.service-inner.reverse {
  grid-template-columns: 1.4fr 1fr;
}
.service-inner.reverse .service-photo { order: 2; }
.service-inner.reverse .service-info { order: 1; }

.service-photo {
  height: 280px;
}

.service-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--dark);
}

.service-title-jp {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--text-sub);
}

.service-desc {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
  color: var(--text-sub);
}

.price-table {
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.price-name { color: var(--text); }
.price-amount { color: var(--dark); font-weight: 500; letter-spacing: 0.05em; }
.price-note { font-size: 11px; color: var(--text-sub); margin-top: 4px; }

/* Anchor nav (menu page) */
.anchor-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}

.anchor-nav-list {
  display: flex;
  overflow-x: auto;
}

.anchor-nav-list a {
  display: block;
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.anchor-nav-list a:hover {
  color: var(--dark);
  border-bottom-color: var(--gold);
}

/* ===== Stylist Grid ===== */
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stylist-card { text-align: center; }

.stylist-photo {
  height: 260px;
  border-radius: 2px;
}

.stylist-name-en {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--dark);
}

.stylist-name-jp {
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 2px;
}

.stylist-role {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
}

.stylist-meta {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.8;
}

.stylist-bio {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-sub);
  text-align: left;
}

/* ===== Pickup (teaser on top) ===== */
.pickup-teaser {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
}

.pickup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pickup-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 500;
}

.pickup-title {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.pickup-text {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.gallery-item .photo { height: 100%; transition: transform 0.4s; }
.gallery-item:hover .photo { transform: scale(1.03); }

/* ===== News ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.news-card {
  padding: 28px 24px;
  border-left: 1px solid var(--border);
  transition: background 0.2s;
}
.news-card:first-child { border-left: none; }
.news-card:hover { background: var(--white); }

.news-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}

.news-date {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-sub);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.08em;
}

.news-title {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.news-card:hover .news-title { color: var(--gold); }

/* ===== Salon Info ===== */
.salon-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.salon-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.salon-photo {
  height: 200px;
}

.info-table { width: 100%; }

.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.info-label {
  color: var(--text-sub);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.info-value {
  color: var(--text);
  line-height: 1.8;
}

/* ===== Map ===== */
.map-placeholder {
  height: 400px;
  background: #E8E4DC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ===== Concept page ===== */
.about-section {
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  height: 480px;
}

.about-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 500;
}

.about-title {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--dark);
}

.about-text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-sub);
}

/* ===== Stylist profile (concept page) ===== */
.stylist-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.stylist-profile:first-child { padding-top: 0; }
.stylist-profile:last-child { border-bottom: none; }

.profile-photo { height: 320px; }

.profile-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--dark);
}

.profile-name-jp {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 2px;
}

.profile-role {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}

.profile-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  color: var(--text-sub);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.profile-bio {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2.2;
  color: var(--text-sub);
}

/* ===== Pick-up page ===== */
.pickup-intro {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.pickup-intro-en {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 500;
}

.pickup-intro-title {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.pickup-intro-text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.concern-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 2px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.concern-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--white);
}

/* Details section */
.detail-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.detail-card {
  padding: 32px 20px;
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 2px;
}

.detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.detail-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.detail-text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-sub);
}

/* comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.compare-table th {
  padding: 16px 20px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.compare-table th:first-child { background: transparent; }

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table td:first-child {
  color: var(--text-sub);
  font-weight: 500;
  background: var(--off-white);
}

.compare-table td.good { color: var(--dark); }
.compare-table td.bad { color: var(--text-sub); }

/* flow */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
}

.flow-label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
}

.flow-sub {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Q&A */
.qa-list { max-width: 760px; margin: 0 auto; }

.qa-item {
  border-bottom: 1px solid var(--border);
}

.qa-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.qa-q-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.2;
  flex-shrink: 0;
}

.qa-answer {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
}

.qa-a-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.2;
  flex-shrink: 0;
}

.qa-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
}

/* ===== Recruit page ===== */
.recruit-lead {
  padding: 80px 0;
  text-align: center;
}

.recruit-lead-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark);
  line-height: 1.4;
}

.recruit-lead-text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-sub);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.owner-messages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.owner-message {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}

.owner-photo {
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--dark);
}

.owner-role {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.owner-text {
  margin-top: 12px;
  font-size: 13px;
  line-height: 2;
  color: var(--text-sub);
}

/* Job cards */
.job-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.job-card {
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 2px;
}

.job-type {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}

.job-title {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dark);
}

.job-table { margin-top: 24px; width: 100%; }

.job-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.job-label { color: var(--text-sub); font-weight: 500; }
.job-value { color: var(--text); line-height: 1.8; }

/* ===== Access page ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-required {
  font-size: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 2px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--dark);
}

.form-textarea { height: 180px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 2px;
}

.form-submit:hover { background: var(--navy); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.cta-text {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.cta-buttons {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-white-fill {
  background: var(--white);
  color: var(--dark);
  padding: 12px 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.25s;
}

.btn-white-fill:hover { background: var(--off-white); }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-logo-jp {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 4px;
  color: rgba(255,255,255,0.5);
}

.footer-address {
  margin-top: 20px;
  font-size: 12px;
  line-height: 2;
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  transition: all 0.2s;
}
.footer-sns a:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-nav-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.btn-more:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn-more::after { content: '→'; font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-col,
  .about-inner,
  .pickup-inner,
  .salon-info-grid,
  .access-grid,
  .owner-messages,
  .job-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col.reverse { direction: ltr; }

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

  .stylist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goto-words { grid-template-columns: repeat(2, 1fr); }

  .detail-cards { grid-template-columns: repeat(2, 1fr); }

  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .flow-steps::before { display: none; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .service-inner, .service-inner.reverse {
    grid-template-columns: 1fr;
  }

  .service-inner.reverse .service-photo { order: 0; }
  .service-inner.reverse .service-info { order: 0; }
}

@media (max-width: 600px) {
  :root {
    --header-h: 64px;
  }

  .global-nav { display: none; }

  .nav-list {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    z-index: 999;
    padding: 8px 0;
  }

  .nav-list.open { display: flex; }

  .nav-list a {
    height: auto;
    line-height: 1;
    padding: 16px 24px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-list a:hover, .nav-list a.active { color: var(--white); }

  .hamburger { display: flex; }
  .global-nav.open { display: flex; }

  .hero-slider { height: calc(100vh - var(--header-h)); }

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

  .news-grid, .concerns-grid { grid-template-columns: 1fr; }

  .flow-steps { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 56px 0; }

  .stylist-profile {
    grid-template-columns: 1fr;
  }

  .salon-photos { grid-template-columns: 1fr; }

  .detail-cards { grid-template-columns: 1fr 1fr; }

  .header-actions .btn-phone span { display: none; }
}
