/*
 * style-salon-lp.css
 * ATELIER LUMIÈRE — Hair Salon LP スタイルシート
 * WordPress カスタムページテンプレート用
 */

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sand: #e8dfd0;
  --taupe: #c4b8a8;
  --brown: #8c7355;
  --dark-brown: #4a3728;
  --charcoal: #2a2018;
  --gold: #b8935a;
  --gold-light: #d4b07a;
  --text: #2a2018;
  --text-muted: #8c7355;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Noto Sans JP', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(139,115,85,0.15);
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.4s;
}

header.scrolled .logo { color: var(--dark-brown); }

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

nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: rgba(250,248,244,0.8);
  transition: color 0.3s;
}

header.scrolled nav a { color: var(--text-muted); }
nav a:hover { color: var(--gold) !important; }

.nav-cta {
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  padding: 10px 22px;
  border: 1px solid rgba(250,248,244,0.5);
  border-radius: 0;
  color: var(--warm-white) !important;
  transition: all 0.3s !important;
}

header.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--warm-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1px;
  background: var(--warm-white);
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

header.scrolled .hamburger span { background: var(--dark-brown); }

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(42,32,24,0.62) 0%, rgba(42,32,24,0.28) 55%, rgba(42,32,24,0.55) 100%),
    /* NOTE: Hero background image (base64 data URI) — WordPress 実装時はここを実際の画像URLに差し替えてください */
    url('/wp-content/uploads/2026/05/pexels-the-ghazi-2152398165-33412989.jpg') center / cover no-repeat,
    linear-gradient(135deg, #3d2a1a 0%, #6b4a2a 40%, #2a1a0e 100%) center / cover no-repeat;
}

/* Decorative texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,147,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

/* Botanical illustration placeholder */
.hero-botanical {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 55%;
  height: 110%;
  opacity: 0.12;
  background:
    radial-gradient(ellipse 2px 120px at 60% 50%, var(--gold-light) 0%, transparent 100%),
    radial-gradient(ellipse 2px 80px at 65% 30%, var(--gold-light) 0%, transparent 100%),
    radial-gradient(ellipse 2px 90px at 70% 60%, var(--gold-light) 0%, transparent 100%),
    radial-gradient(ellipse 80px 2px at 58% 45%, var(--gold-light) 0%, transparent 100%),
    radial-gradient(ellipse 60px 2px at 62% 35%, var(--gold-light) 0%, transparent 100%),
    radial-gradient(ellipse 40px 2px at 68% 55%, var(--gold-light) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroFadeIn 1.2s 0.2s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 12px;
  animation: heroFadeIn 1.2s 0.3s ease both;
}

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

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,244,0.6);
  margin-bottom: 40px;
  animation: heroFadeIn 1.2s 0.4s ease both;
}

.hero-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(250,248,244,0.7);
  max-width: 420px;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  animation: heroFadeIn 1.2s 0.5s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.6s ease both;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--warm-white);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  border: 1px solid rgba(250,248,244,0.4);
  color: var(--warm-white);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroFadeIn 1.2s 0.9s ease both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(250,248,244,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(250,248,244,0.4);
  writing-mode: vertical-rl;
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(42,32,24,0.7);
  backdrop-filter: blur(12px);
  display: flex;
  border-top: 1px solid rgba(184,147,90,0.2);
}

.stat-item {
  padding: 24px 36px;
  border-left: 1px solid rgba(184,147,90,0.15);
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(250,248,244,0.4);
}

/* ── SECTION COMMON ── */
section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--dark-brown);
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--brown); }

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c4a882 0%, #8c6845 40%, #5a3d28 100%);
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.about-img-label {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-img-label span:first-child {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
}

.about-img-label span:last-child {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(250,248,244,0.7);
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--dark-brown);
  margin-bottom: 24px;
}

.about-text h2 em { font-style: italic; color: var(--brown); }

.about-lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

.feature-text h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}

.feature-text p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── MENU ── */
.menu-section {
  padding: 120px 0;
  background: var(--warm-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-bottom: 48px;
}

.menu-card {
  background: var(--warm-white);
  padding: 40px 28px;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-card:hover { background: var(--cream); }
.menu-card:hover::after { transform: scaleX(1); }

.menu-num {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--taupe);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.menu-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 6px;
}

.menu-name-jp {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.menu-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.menu-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--brown);
}

.menu-price span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--taupe);
  margin-left: 4px;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 120px 0;
  background: var(--charcoal);
}

.gallery-section .section-title { color: var(--warm-white); }
.gallery-section .eyebrow { color: var(--gold-light); }
.gallery-section .eyebrow::before,
.gallery-section .eyebrow::after { background: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  transition: transform 0.6s ease;
  position: relative;
}

.gallery-item:first-child .gallery-img { min-height: 480px; }

.gallery-img-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Gradient placeholders for gallery */
.g1 { background: linear-gradient(135deg, #c4a882 0%, #6b4f35 60%, #3d2a1a 100%); }
.g2 { background: linear-gradient(135deg, #d4bfa0 0%, #9c7d5e 100%); }
.g3 { background: linear-gradient(135deg, #8c6845 0%, #5a3d28 100%); }
.g4 { background: linear-gradient(135deg, #b8935a 0%, #7a5535 100%); }
.g5 { background: linear-gradient(135deg, #d4b07a 0%, #8c6845 100%); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,32,24,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { background: rgba(42,32,24,0.4); }
.gallery-item:hover .gallery-img-inner { transform: scale(1.04); transition: transform 0.6s ease; }

.gallery-overlay-text {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--warm-white);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay-text { opacity: 1; }

.gallery-item[data-img] { cursor: zoom-in; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  animation: lb-fade-in 0.25s ease;
}

@keyframes lb-fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-label {
  color: var(--warm-white, #f5f0e8);
  font-family: var(--serif, serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 14px;
  opacity: 0.85;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 9001;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.lightbox-close:hover,
.lightbox-close:focus { opacity: 1; outline: none; }

/* ── STAFF ── */
.staff-section {
  padding: 120px 0;
  background: var(--cream);
}

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

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

.staff-photo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}

.staff-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.staff-photo-bg {
  width: 100%;
  height: 100%;
  display: block;
}

.staff-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sp1 { background: linear-gradient(135deg, #d4b07a 0%, #8c6845 100%); }
.sp2 { background: linear-gradient(135deg, #c4a882 0%, #7a5c3c 100%); }
.sp3 { background: linear-gradient(135deg, #b8935a 0%, #6b4a2a 100%); }

.staff-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
}

.staff-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 4px;
}

.staff-role {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.staff-bio {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2;
}

/* ── VOICE ── */
.voice-section {
  padding: 120px 0;
  background: var(--warm-white);
}

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

.voice-card {
  background: var(--cream);
  padding: 36px 28px;
  position: relative;
}

.voice-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.voice-star { color: var(--gold); font-size: 13px; }

.voice-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.voice-author {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-author::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--taupe);
}

/* ── VOICE MORE LINK ── */
.voice-more {
  text-align: center;
  margin-top: 48px;
}

.voice-more-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.voice-more-link:hover {
  background: var(--gold);
  color: var(--warm-white);
}

/* ── VOICE ARCHIVE ── */
.voice-archive-page header {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(139,115,85,0.15);
}

.voice-archive-page .logo { color: var(--dark-brown); }
.voice-archive-page nav a { color: var(--text-muted); }
.voice-archive-page .hamburger span { background: var(--dark-brown); }

.voice-archive-page .nav-cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.voice-archive-hero {
  padding: 130px 0 72px;
  background: var(--warm-white);
  text-align: center;
}

.voice-archive-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.voice-archive-section {
  padding: 40px 0 120px;
  background: var(--warm-white);
}

.voice-archive-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

.voice-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── PAGINATION ── */
.voice-pagination {
  display: flex;
  justify-content: center;
  margin: 56px 0 40px;
}

.voice-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.voice-pagination li a,
.voice-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--sand);
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1;
}

.voice-pagination li a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.voice-pagination li .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--warm-white);
}

.voice-pagination li .dots {
  border: none;
  color: var(--taupe);
}

/* ── VOICE ARCHIVE BACK LINK ── */
.voice-archive-back {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
}

.voice-back-link {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.voice-back-link:hover { color: var(--gold); }

/* ── ACCESS ── */
.access-section {
  padding: 120px 0;
  background: var(--dark-brown);
}

.access-section .section-title { color: var(--warm-white); }
.access-section .eyebrow { color: var(--gold-light); }
.access-section .eyebrow::before,
.access-section .eyebrow::after { background: var(--gold-light); }

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

.map-wrap {
  aspect-ratio: 4/3;
  background: #3a2a1e;
  position: relative;
  overflow: hidden;
}

/* Decorative map placeholder */
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(184,147,90,0.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(184,147,90,0.08) 40px);
}

.map-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 14px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 50% 80%, 18% 100%, 0% 38%);
}

.map-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(42,32,24,0.85);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.access-info {
  color: var(--warm-white);
}

.access-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,248,244,0.8);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* ── CONTACT ── */
.contact-section {
  padding: 120px 0;
  background: var(--cream);
}

.contact-wrap {
  max-width: 660px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-label span {
  font-size: 9px;
  color: var(--gold);
  margin-left: 4px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c7355' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--dark-brown);
  color: var(--warm-white);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
}

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

.form-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--taupe);
  text-align: center;
  margin-top: 16px;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.footer-brand .logo-f {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,248,244,0.3);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,248,244,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-col ul li a:hover { color: var(--gold-light); }

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

.sns-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.sns-link:hover {
  border-color: var(--gold);
  background: rgba(184,147,90,0.1);
}

.sns-link svg { width: 14px; height: 14px; stroke: rgba(250,248,244,0.5); fill: none; }
.sns-link:hover svg { stroke: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(250,248,244,0.2);
  letter-spacing: 0.1em;
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(74,55,40,0.97);
    backdrop-filter: blur(12px);
    padding: 16px 0 24px;
    z-index: 99;
  }
  nav.nav-open { display: flex; }
  nav a {
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: rgba(250,248,244,0.85);
    border-bottom: 1px solid rgba(250,248,244,0.08);
  }
  nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin: 8px 28px 0;
    text-align: center;
    border-color: rgba(250,248,244,0.4) !important;
    color: var(--warm-white) !important;
  }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .hero-content { padding: 0 24px; }
  .hero-stats { position: relative; display: flex; flex-wrap: wrap; }
  .stat-item { padding: 16px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-label { width: 100px; height: 100px; bottom: -12px; right: -12px; }
  .about-img-label span:first-child { font-size: 28px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child .gallery-img { min-height: 260px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .voice-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .voice-archive-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
  .voice-archive-hero { padding: 110px 0 56px; }
  .access-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .section-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .hero-scroll { left: 24px; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .hero-title { font-size: 42px; }
  .stat-item { padding: 14px 16px; }
  .stat-num { font-size: 24px; }
  .staff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .voice-archive-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
