/* ============================================
   LUMIÈRE — Awwwards-Level Redesign
   Visual Direction: Cinematic Editorial Luxury
   ============================================ */
:root {
  --gold: #C4935A;
  --gold-light: rgba(196, 147, 90, 0.1);
  --cream: #F5F0EB;
  --cream-dark: #EDE6DE;
  --bg: #FAF8F5;
  --bg-white: #FFFFFF;
  --text: #1A1816;
  --text-muted: #8C8279;
  --text-light: #B8AFA7;
  --border: #E8E2DB;
  --dark: #1A1816;
  --radius: 8px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --text-display: clamp(48px, 8vw, 96px);
  --text-h2: clamp(32px, 5vw, 64px);
  --text-h3: clamp(20px, 2.5vw, 28px);
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --space-section: clamp(100px, 14vw, 180px);
  --space-group: clamp(48px, 7vw, 96px);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-text.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 48px);
}

/* ============================================
   Typography
   ============================================ */
.section-label {
  font-family: var(--font-serif);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-desc {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 2;
  margin-top: 20px;
  max-width: 480px;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,147,90,0.3);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-smooth);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--dark);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateY(-4px); }

/* ============================================
   Header
   ============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
  padding: 24px 0;
}
header.scrolled {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  transition: color 0.4s;
}
header.scrolled .logo { color: var(--text); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.desktop-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
header.scrolled .desktop-nav a { color: var(--text-muted); }
.desktop-nav a:hover { color: #fff; }
header.scrolled .desktop-nav a:hover { color: var(--text); }
.header-cta {
  padding: 10px 28px !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
header.scrolled .hamburger span { background: var(--text); }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 1001;
  transition: right 0.5s var(--ease-out);
  padding: 100px 40px 40px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 32px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,22,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 1000;
}
.overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================
   Hero — Cinematic full-bleed
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,24,22,0.15) 0%, rgba(26,24,22,0.1) 40%, rgba(26,24,22,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(32px, 6vw, 100px) clamp(60px, 8vw, 120px);
  max-width: 800px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   Menu — Magazine editorial style
   ============================================ */
.menu-section {
  padding: var(--space-section) 0;
  background: var(--bg-white);
}
.menu-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: var(--space-group);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.menu-card {
  background: var(--bg-white);
  padding: 40px 32px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}
.menu-card:hover {
  background: var(--cream);
}
.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.menu-card:hover::after { transform: scaleX(1); }
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.menu-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.menu-card-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-sans);
}
.menu-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}
.menu-card-time {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ============================================
   Stylist — Editorial alternating layout
   ============================================ */
.stylist-section {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.stylist-header {
  text-align: center;
  margin-bottom: var(--space-group);
}
.stylist-list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.stylist-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.stylist-item:nth-child(even) {
  direction: rtl;
}
.stylist-item:nth-child(even) > * {
  direction: ltr;
}
.stylist-item-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.stylist-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.stylist-item:hover .stylist-item-image img {
  transform: scale(1.04);
}
.stylist-item-image .stylist-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}
.stylist-item:hover .stylist-social {
  opacity: 1;
  transform: translateY(0);
}
.stylist-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.stylist-social a:hover {
  background: var(--gold);
  color: #fff;
}
.stylist-social a svg { width: 18px; height: 18px; }
.stylist-item-info {
  padding: 20px 0;
}
.stylist-item-info .role {
  font-family: var(--font-serif);
  font-size: var(--text-caption);
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.stylist-item-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.stylist-item-info .name-jp {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}
.stylist-item-info .speciality {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 2;
}

/* ============================================
   Gallery — Horizontal scroll
   ============================================ */
.gallery-section {
  padding: var(--space-section) 0 0;
  background: var(--bg-white);
  overflow: hidden;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-group);
  padding: 0 clamp(24px, 5vw, 80px);
}
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 clamp(24px, 5vw, 80px) 0;
  scroll-snap-type: x mandatory;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 clamp(280px, 30vw, 400px);
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}
.gallery-item:nth-child(2n) {
  aspect-ratio: 4/5;
}
.gallery-item:nth-child(3n) {
  aspect-ratio: 3/3.5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-progress {
  padding: 40px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery-progress-bar {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.gallery-progress-fill {
  width: 30%;
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s;
}
.gallery-progress-text {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ============================================
   Access
   ============================================ */
.access-section {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.access-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.access-map {
  min-height: 400px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.access-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}
.access-info { padding: 20px 0; }
.access-info h3 {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.access-table {
  width: 100%;
  font-family: var(--font-sans);
}
.access-table tr {
  border-bottom: 1px solid var(--border);
}
.access-table th {
  text-align: left;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  width: 80px;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.access-table td {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.access-table a {
  color: var(--gold);
  font-weight: 600;
}
.access-hours {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream);
}
.access-hours h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.access-hours p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: var(--space-section) 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,147,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.cta-section .cta-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.cta-contact {
  margin-top: 28px;
}
.cta-contact p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.cta-contact a {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.cta-contact a:hover { opacity: 0.7; }

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 48px 0 0;
  background: #0F0E0D;
  color: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  display: block;
}
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #57534E;
  line-height: 2;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; color: #78716C; }
.footer-social a:hover svg { color: #fff; }
.footer-nav {
  display: flex;
  gap: 56px;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #57534E;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #44403C;
  letter-spacing: 0.02em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #44403C;
  transition: color 0.2s;
}
.footer-links a:hover { color: #78716C; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .menu-header { grid-template-columns: 1fr; }
  .stylist-item { grid-template-columns: 1fr 1fr; gap: 40px; }
  .access-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: 100svh; }
  .hero-content { padding: 0 24px 80px; }
  .menu-grid { grid-template-columns: 1fr; gap: 1px; }
  .stylist-item {
    grid-template-columns: 1fr;
  }
  .stylist-item:nth-child(even) {
    direction: ltr;
  }
  .stylist-item-image { max-height: 500px; }
  .gallery-item { flex: 0 0 280px; }
  .footer-inner { flex-direction: column; }
  .footer-nav { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Phase 3 — Multi-page Subpage Styles
   ============================================ */

/* Nav Active */
.nav-link.active {
  color: var(--gold) !important;
}

/* Page Hero (subpages) */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero .section-title { color: var(--text); }
.page-hero .section-desc {
  margin: 16px auto 0;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { pointer-events: none; }

/* CTA Band (subpages) */
.cta-band {
  padding: var(--space-section) 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,147,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.cta-band .cta-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

/* Section More Link */
.section-more {
  text-align: center;
  margin-top: 48px;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-smooth);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.more-link:hover {
  border-bottom-color: var(--gold);
}
.more-link svg {
  transition: transform 0.3s;
}
.more-link:hover svg { transform: translateX(4px); }

/* Sub-sections (alternating bg) */
.sub-section {
  padding: var(--space-section) 0;
}
.sub-section:nth-child(odd) { background: var(--bg-white); }
.sub-section:nth-child(even) { background: var(--bg); }

/* Concept section */
.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.concept-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-text h3 {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.concept-text p {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 16px;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.value-card {
  background: var(--bg-white);
  padding: 40px 32px;
  text-align: center;
}
.value-card .value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.value-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Company info table (about) */
.company-info {
  max-width: 700px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  font-family: var(--font-sans);
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th {
  text-align: left;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  width: 100px;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.company-table td {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Menu full page */
.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.set-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.set-menu-card {
  background: var(--bg-white);
  padding: 40px 32px;
  transition: background 0.4s;
}
.set-menu-card:hover { background: var(--cream); }
.set-menu-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.set-menu-card .set-items {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.set-menu-card .set-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.first-visit-offer {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--cream);
}
.first-visit-offer h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.first-visit-offer p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 8px;
}
.first-visit-offer .offer-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 16px;
}
.first-visit-offer .offer-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Gallery page — reuses .gallery-scroll etc. */
.stylist-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stylist-gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.stylist-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.stylist-gallery-card:hover img {
  transform: scale(1.06);
}
.stylist-gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,24,22,0.7) 0%, transparent 100%);
  color: #fff;
}
.stylist-gallery-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.stylist-gallery-info p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg-white);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-light);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

/* Phase 3 responsive additions */
@media (max-width: 1024px) {
  .concept-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .set-menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .value-grid { grid-template-columns: 1fr; gap: 1px; }
  .menu-full-grid { grid-template-columns: 1fr; gap: 1px; }
  .stylist-gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
}
