/* ============================================
   月灯り - Dark Theme NSPC-inspired Design

   Color Palette:
   --dark-deep:   #0C0C18  (deepest dark)
   --dark-base:   #2A2848  (dark purple/navy)
   --gold:        #C9A84C  (accent gold)
   --beige:       #E4D9BE  (light gold/beige)
   --cream:       #F4F1EC  (off-white/cream)
   ============================================ */

:root {
  --dark-deep: #0C0C18;
  --dark-base: #2A2848;
  --gold: #C9A84C;
  --beige: #E4D9BE;
  --cream: #F4F1EC;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  color: var(--cream);
  background-color: var(--dark-deep);
  line-height: 2;
  overflow-x: hidden;
  cursor: none;
}

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

ul {
  list-style: none;
}

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

/* --- Custom Cursor --- */
#cursor-dot {
  width: 12px;
  height: 12px;
  background: rgba(201, 168, 76, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

#cursor-dot.hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* --- Loading Screen --- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo-img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.loading-logo {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--beige);
  margin-bottom: 2rem;
}

.loading-bar {
  width: 120px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  overflow: hidden;
}

.loading-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- Header --- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  transition: background 0.3s ease, padding 0.3s ease;
}

#header.scrolled {
  background: rgba(12, 12, 24, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--beige);
}

.nav-main ul {
  display: flex;
  gap: 2.5rem;
}

.nav-main a {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--beige);
  position: relative;
  padding-bottom: 2px;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-main a:hover::after {
  width: 100%;
}

.nav-main a:hover {
  color: var(--gold);
}

.nav-contact {
  border: 1px solid var(--gold);
  padding: 0.4rem 1.2rem !important;
  color: var(--gold) !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-contact:hover {
  background: var(--gold);
  color: var(--dark-deep) !important;
}

.nav-contact::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--beige);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-deep);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 2rem;
}

.mobile-nav a {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--beige);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(42, 40, 72, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(42, 40, 72, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
  background-color: var(--dark-deep);
  animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background:
      radial-gradient(ellipse at 15% 50%, rgba(42, 40, 72, 0.8) 0%, transparent 60%),
      radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 85%, rgba(42, 40, 72, 0.5) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    background-color: var(--dark-deep);
  }
  50% {
    background:
      radial-gradient(ellipse at 40% 40%, rgba(42, 40, 72, 0.7) 0%, transparent 60%),
      radial-gradient(ellipse at 60% 70%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(42, 40, 72, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
    background-color: #0E0E1C;
  }
  100% {
    background:
      radial-gradient(ellipse at 60% 30%, rgba(42, 40, 72, 0.6) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 60%, rgba(201, 168, 76, 0.07) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(42, 40, 72, 0.5) 0%, transparent 50%),
      radial-gradient(ellipse at 40% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
    background-color: #0A0A16;
  }
}

/* Floating particles / stars effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(201, 168, 76, 0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(228, 217, 190, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 50% 40%, rgba(201, 168, 76, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 80%, rgba(228, 217, 190, 0.2) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 30%, rgba(201, 168, 76, 0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 55%, rgba(201, 168, 76, 0.25) 50%, transparent 50%),
    radial-gradient(1px 1px at 75% 15%, rgba(228, 217, 190, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 45% 90%, rgba(201, 168, 76, 0.2) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(228, 217, 190, 0.15) 50%, transparent 50%),
    radial-gradient(1px 1px at 15% 85%, rgba(201, 168, 76, 0.3) 50%, transparent 50%);
  animation: twinkle 4s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes twinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 2.2s forwards;
}

.hero-logo-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.15));
}

.hero-logo {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, serif;
  font-weight: 300;
  font-size: 3.2rem;
  letter-spacing: 0.25em;
  line-height: 1.4;
  color: var(--beige);
}

.hero-logo span {
  display: block;
  font-family: 'Martel Sans', sans-serif;
  font-weight: 200;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 0.5rem;
}

.hero-tagline {
  margin-top: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  color: rgba(228, 217, 190, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 2.8s forwards;
}

.scroll-indicator span {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

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

/* --- Sections Common --- */
.section {
  padding: 10rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 4rem;
  color: var(--gold);
}

.section-heading {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--beige);
}

.section-text {
  font-size: 0.9rem;
  line-height: 2.2;
  color: rgba(228, 217, 190, 0.6);
  margin-bottom: 2rem;
}

.link-underline {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  transition: opacity 0.3s ease;
}

.link-underline:hover {
  opacity: 0.6;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- About Section --- */
.section-about {
  background: var(--dark-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* --- Services Section --- */
.section-services {
  background: var(--dark-base);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.3s ease;
}

.service-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.service-item:hover {
  transform: translateX(8px);
}

.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-label {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--beige);
}

/* --- Media Section --- */
.section-media {
  background: var(--dark-deep);
}

.media-intro {
  margin-bottom: 5rem;
  text-align: right;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.media-card {
  padding: 3rem;
  background: rgba(42, 40, 72, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.media-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(42, 40, 72, 0.5);
}

.media-card-title {
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--beige);
}

.media-card-text {
  font-size: 0.85rem;
  line-height: 2.2;
  color: rgba(228, 217, 190, 0.55);
  margin-bottom: 2rem;
}

/* --- Recruit Section --- */
.section-recruit {
  background: var(--dark-base);
}

.recruit-content {
  max-width: 600px;
}

/* --- Access Section --- */
.section-access {
  background: var(--dark-deep);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.access-region {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.access-office {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--beige);
}

.access-address {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(228, 217, 190, 0.55);
  margin-bottom: 1.5rem;
}

/* --- Decorative Section Divider --- */
.section-services::before,
.section-recruit::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 0 3rem;
  opacity: 0.3;
}

/* --- Footer --- */
#footer {
  padding: 5rem 3rem 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--dark-deep);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
}

.footer-logo-text {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--beige);
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(228, 217, 190, 0.6);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(228, 217, 190, 0.35);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(228, 217, 190, 0.25);
  margin-top: 2rem;
  font-family: 'Martel Sans', sans-serif;
  letter-spacing: 0.1em;
}

/* --- Podcast Perspectives --- */
.perspectives {
  margin-top: 5rem;
}

.perspectives-title {
  font-family: 'Martel Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.perspective-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  background: rgba(42, 40, 72, 0.2);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.perspective-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(42, 40, 72, 0.4);
}

.perspective-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.perspective-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--beige);
  margin-bottom: 0.5rem;
}

.perspective-desc {
  font-size: 0.8rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
}

/* --- Media Card Icon --- */
.media-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* --- Price Section --- */
.section-price {
  background: var(--dark-base);
}

.price-intro {
  margin-bottom: 4rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.price-card {
  background: rgba(12, 12, 24, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 6px;
  padding: 2.5rem 1.8rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.price-card-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-deep);
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card-badge {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.price-card-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--beige);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.price-card-amount {
  font-family: 'Martel Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.price-card-amount span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(228, 217, 190, 0.5);
}

.price-card-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(228, 217, 190, 0.5);
  margin-bottom: 1.5rem;
}

.price-card-features {
  list-style: none;
}

.price-card-features li {
  font-size: 0.78rem;
  color: rgba(228, 217, 190, 0.6);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-card-features li i {
  color: var(--gold);
  font-size: 0.65rem;
}

/* --- Salon Banner --- */
.salon-banner {
  margin-top: 2rem;
}

.salon-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem;
  background: rgba(12, 12, 24, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
}

.salon-badge {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.salon-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 0.8rem;
}

.salon-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(228, 217, 190, 0.5);
}

.salon-price-wrap {
  text-align: center;
  flex-shrink: 0;
}

.salon-price {
  font-family: 'Martel Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.salon-price span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(228, 217, 190, 0.5);
}

/* --- Access Section (updated) --- */
.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.access-note {
  font-size: 0.8rem;
  color: rgba(228, 217, 190, 0.4);
  margin-top: 1rem;
  line-height: 1.8;
}

.access-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.access-sns-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
  color: var(--beige);
  font-size: 0.85rem;
}

.access-sns-link:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(42, 40, 72, 0.3);
}

.access-sns-link i {
  font-size: 1.2rem;
  color: var(--gold);
  width: 24px;
  text-align: center;
}

/* --- SNS Coming Soon --- */
.sns-coming-soon {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.sns-coming-soon small {
  font-size: 0.65rem;
  color: var(--gold);
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--beige);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 0.3rem;
  font-size: 0.7rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(12, 12, 24, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.6;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.5);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-deep);
  color: var(--cream);
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .contact-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* --- Contact Section --- */
.section-contact {
  background: var(--dark-base);
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content .section-heading {
  text-align: center;
}

.contact-content .section-text {
  text-align: center;
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.contact-btn.primary {
  background: var(--gold);
  color: var(--dark-deep);
}

.contact-btn.primary:hover {
  background: #d4b35a;
  transform: translateY(-2px);
}

.contact-btn.secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.contact-btn.secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   Subpages Styles
   ============================================ */

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 12rem 0 5rem;
  background: var(--dark-deep);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.page-hero-sm {
  padding: 10rem 0 3rem;
}

.page-hero-label {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
}

/* --- About Detail Blocks --- */
.about-detail {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-block h2 {
  margin-bottom: 1.5rem;
}

.about-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.strength-item {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.strength-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.strength-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.strength-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 0.8rem;
}

.strength-item p {
  font-size: 0.82rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
}

/* --- Member Grid --- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.member-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
}

.member-role {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.member-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.member-desc {
  font-size: 0.82rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
}

/* --- Service Detail Cards --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-detail-card {
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.service-detail-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.service-detail-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-detail-card h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-detail-card h2 span {
  font-size: 0.85rem;
  color: var(--beige);
  font-weight: 300;
}

.service-detail-card p {
  font-size: 0.82rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.service-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-detail-features span {
  font-size: 0.72rem;
  color: rgba(228, 217, 190, 0.6);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
}

.service-detail-features span i {
  color: var(--gold);
  margin-right: 0.3rem;
}

/* --- Contact Method Grid --- */
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-method-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  text-align: center;
}

.contact-method-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-method-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 0.8rem;
}

.contact-method-card p {
  font-size: 0.8rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
}

/* --- FAQ --- */
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.faq-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 0.6rem;
}

.faq-item p {
  font-size: 0.82rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
}

/* --- Legal Pages --- */
.legal-page .legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.78rem;
  color: rgba(228, 217, 190, 0.4);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 0.85rem;
  color: rgba(228, 217, 190, 0.55);
  line-height: 2;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.blog-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-card-meta time {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(228, 217, 190, 0.4);
}

.blog-card-category {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-title a {
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: rgba(228, 217, 190, 0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-post-meta time {
  font-family: 'Martel Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(228, 217, 190, 0.4);
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content p {
  font-size: 0.9rem;
  color: rgba(228, 217, 190, 0.65);
  line-height: 2.2;
  margin-bottom: 1.5rem;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--beige);
  margin: 2.5rem 0 1rem;
}

/* --- Nav Current --- */
.nav-main a.current {
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor-dot {
    display: none;
  }

  .nav-main {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #header {
    padding: 1.2rem 1.5rem;
  }

  .hero-logo-img {
    width: 100px;
    height: 100px;
  }

  .hero-logo {
    font-size: 2.2rem;
  }

  .hero-logo span {
    font-size: 0.85rem;
  }

  .section {
    padding: 6rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-label {
    margin-bottom: 2.5rem;
  }

  .about-grid,
  .services-grid,
  .media-grid,
  .access-grid,
  .access-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .perspectives-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .salon-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .media-intro {
    text-align: left;
  }

  .media-card {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section-services::before,
  .section-recruit::before {
    margin-left: 1.5rem;
  }

  /* Subpages mobile */
  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .about-strengths,
  .member-grid,
  .service-detail-grid,
  .contact-method-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .member-card,
  .blog-card {
    padding: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .access-content {
    gap: 2rem;
  }
}

/* --- Sitemap Page --- */
.sitemap-content {
  max-width: 800px;
  margin: 0 auto;
}

.sitemap-group {
  margin-bottom: 2.5rem;
}

.sitemap-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sitemap-heading i {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-list {
  padding-left: 1rem;
}

.sitemap-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(244, 241, 236, 0.06);
}

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

.sitemap-list li a {
  color: var(--cream);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.sitemap-list li a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.sitemap-list li a::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--gold);
  opacity: 0.5;
}
