:root {
  --moss-deep: #3a4a3f;
  --sage-deep: #4a5d4f;
  --sage-mid: #6b7e6f;
  --sage-light: #a8b5a8;
  --sage-pale: #dbe1db;
  --sage-mist: #ecf0ec;
  --cream: #f5f1e9;
  --ivory: #fbf9f4;
  --paper: #f3eee3;
  --charcoal: #1f2421;
  --text: #2c322e;
  --text-soft: #5a5f59;
  --gold: #a88859;
  --gold-light: #c9b08a;
  --line: #d8d2c3;
  --line-soft: rgba(0,0,0,0.06);
  --display: 'Shippori Mincho', serif;
  --body: 'Noto Sans JP', sans-serif;
  --accent: 'Cormorant', serif;
  --hand: 'Klee One', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--sage-deep);
  color: var(--ivory);
}

/* ============================
   FLOATING ORNAMENTS (botanical)
============================ */
.leaf-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}

/* ============================
   NAVIGATION
============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 48px;
  background: rgba(251, 249, 244, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(216, 210, 195, 0.4);
  transition: padding 0.4s;
}

.nav.scrolled { padding: 14px 48px; }

.nav-logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--moss-deep);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.nav-logo .r-mark {
  font-family: var(--accent);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-deep);
  transition: width 0.4s;
}

.nav-links a:hover { color: var(--sage-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--moss-deep);
  color: var(--ivory);
  padding: 13px 28px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.4s;
  border: 1px solid var(--moss-deep);
}

.nav-cta:hover {
  background: transparent;
  color: var(--moss-deep);
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 17px; letter-spacing: 0.25em; }
  .nav-cta { padding: 10px 18px; font-size: 9px; }
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at top left, rgba(58, 74, 63, 0.55), transparent 60%),
    linear-gradient(135deg, rgba(31, 36, 33, 0.55) 0%, rgba(74, 93, 79, 0.35) 100%),
    url('images/hero.jpg') center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(168, 136, 89, 0.12), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 181, 168, 0.15), transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--ivory) 100%);
  pointer-events: none;
}

/* SVG botanical decoration */
.hero-deco-1 {
  position: absolute;
  top: 12%;
  right: -50px;
  width: 280px;
  height: auto;
  opacity: 0.25;
  z-index: 1;
  transform: rotate(-15deg);
}

.hero-deco-2 {
  position: absolute;
  bottom: 15%;
  left: -40px;
  width: 220px;
  opacity: 0.18;
  z-index: 1;
  transform: rotate(180deg) rotate(-12deg);
}

/* English Service Badge */
.eng-badge {
  position: absolute;
  top: 110px;
  right: 64px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 28px;
  background: rgba(31, 36, 33, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201, 176, 138, 0.4);
  color: var(--ivory);
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 1.4s 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.4s;
}

.eng-badge:hover {
  background: rgba(168, 136, 89, 0.85);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.eng-badge-mark {
  font-family: var(--accent);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.eng-badge:hover .eng-badge-mark {
  color: var(--ivory);
}

.eng-badge-text {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-pale);
}

.eng-badge:hover .eng-badge-text {
  color: var(--ivory);
}

@media (max-width: 768px) {
  .eng-badge {
    top: 90px;
    right: 20px;
    padding: 12px 18px;
  }
  .eng-badge-mark { font-size: 18px; }
  .eng-badge-text { font-size: 8px; letter-spacing: 0.2em; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--accent);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.3s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.hero-main {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px);
  color: var(--ivory);
  line-height: 1.55;
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-main .line-1,
.hero-main .line-2 {
  display: block;
  overflow: hidden;
}

.hero-main em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--sage-pale);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 1.4s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badges {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 1.4s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  font-family: var(--accent);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--sage-pale);
  padding: 0 24px;
  border-right: 1px solid rgba(168, 181, 168, 0.4);
}

.hero-badge:first-child { padding-left: 0; }
.hero-badge:last-child { border-right: none; }

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.4s 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  text-decoration: none;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--ivory);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--moss-deep);
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-primary {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
  position: relative;
}

.btn-primary:hover { color: var(--ivory); border-color: var(--moss-deep); }
.btn-primary:hover::before { left: 0; }

.btn-primary .arrow {
  font-family: var(--accent);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
}

.btn-secondary:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--accent);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ivory);
  opacity: 0;
  animation: fadeUp 1.4s 1.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
  text-align: center;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--ivory), transparent);
  margin: 14px auto 0;
  animation: scrollLine 2.5s 3s infinite;
}

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

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

@media (max-width: 768px) {
  .hero-content { padding: 0 28px; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 0.2em; }
  .hero-badges { gap: 0; }
  .hero-badge { font-size: 11px; padding: 4px 14px; }
  .hero-deco-1, .hero-deco-2 { width: 140px; }
  .btn-primary, .btn-secondary { padding: 16px 24px; font-size: 10px; letter-spacing: 0.25em; }
}

/* ============================
   SECTION COMMON
============================ */
.section {
  padding: 160px 64px;
  position: relative;
}

.section-narrow { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.section-wide { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }

.section-label {
  font-family: var(--accent);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--sage-mid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--sage-mid);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 56px;
  letter-spacing: 0.06em;
}

.section-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
}

@media (max-width: 768px) {
  .section { padding: 100px 28px; }
  .section-title { margin-bottom: 40px; }
}

/* ============================
   CONCEPT
============================ */
.concept {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.concept-deco-l, .concept-deco-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  opacity: 0.1;
  z-index: 0;
}

.concept-deco-l { left: -30px; }
.concept-deco-r { right: -30px; transform: translateY(-50%) scaleX(-1); }

.concept p {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 2.6;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 28px;
  letter-spacing: 0.1em;
}

.concept .ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px auto;
  gap: 14px;
}

.concept .ornament::before,
.concept .ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--sage-mid);
}

.concept .ornament-mark {
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-mid);
  letter-spacing: 0.2em;
}

.concept-finale {
  margin-top: 56px !important;
  font-family: var(--accent) !important;
  font-style: italic !important;
  font-size: 24px !important;
  color: var(--sage-deep) !important;
  letter-spacing: 0.15em !important;
}

/* ============================
   COMMITMENT
============================ */
.commitment {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.commitment-deco {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 380px;
  opacity: 0.08;
  z-index: 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 80px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.commit-item {
  position: relative;
  padding-left: 100px;
  padding-top: 12px;
}

.commit-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--accent);
  font-style: italic;
  font-size: 76px;
  font-weight: 300;
  color: var(--sage-deep);
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.commit-number::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage-deep);
  margin-top: 8px;
}

.commit-title {
  font-family: var(--accent);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.commit-subtitle {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-mid);
  letter-spacing: 0.4em;
  margin-bottom: 28px;
}

.commit-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text);
  letter-spacing: 0.06em;
}

.commit-image {
  margin-top: 28px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.commit-image::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--sage-deep);
  z-index: -1;
  opacity: 0.6;
}

@media (max-width: 968px) {
  .commitment-grid { grid-template-columns: 1fr; gap: 64px; }
  .commit-item { padding-left: 80px; }
  .commit-number { font-size: 56px; }
}

/* ============================
   THERAPIST
============================ */
.therapist {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.therapist-deco {
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 320px;
  opacity: 0.08;
  z-index: 0;
}

.therapist-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.therapist-visual {
  position: sticky;
  top: 120px;
}

.therapist-image {
  aspect-ratio: 3/4;
  background: url('images/therapist.jpg') center/cover;
  position: relative;
}

.therapist-image::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--sage-deep);
  z-index: -1;
}

.therapist-image-caption {
  margin-top: 40px;
  text-align: right;
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-mid);
  letter-spacing: 0.15em;
  line-height: 1.8;
}

.therapist-image-caption::before {
  content: '— ';
  color: var(--sage-deep);
}

.therapist-name-block {
  margin-bottom: 8px;
}

.therapist-name {
  font-family: var(--accent);
  font-style: italic;
  font-size: 72px;
  font-weight: 300;
  color: var(--sage-deep);
  line-height: 0.9;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.therapist-role {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 56px;
}

.story-chapter {
  margin-bottom: 56px;
  position: relative;
}

.story-chapter h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.story-chapter h3::before {
  content: '◆';
  font-size: 9px;
  color: var(--sage-mid);
  position: relative;
  top: -3px;
}

.story-chapter p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}

.story-pullquote {
  font-family: var(--accent);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--sage-deep);
  text-align: center;
  margin: 64px 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.credentials {
  margin-top: 72px;
  padding: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}

.credentials::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  width: 56px;
  height: 1px;
  background: var(--sage-deep);
}

.credentials h4 {
  font-family: var(--accent);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--sage-deep);
  margin-bottom: 24px;
}

.credentials ul {
  list-style: none;
}

.credentials li {
  font-size: 13px;
  color: var(--text);
  padding: 10px 0;
  padding-left: 24px;
  border-bottom: 1px dotted var(--line);
  position: relative;
  letter-spacing: 0.05em;
}

.credentials li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--sage-deep);
}

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

@media (max-width: 968px) {
  .therapist-grid { grid-template-columns: 1fr; gap: 56px; }
  .therapist-visual { position: static; max-width: 420px; margin: 0 auto; }
  .therapist-name { font-size: 56px; }
  .credentials { padding: 32px 24px; }
}

/* ============================
   MENU
============================ */
.menu {
  background: var(--moss-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.menu-deco-circle-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(247, 244, 239, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.menu-deco-circle-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(247, 244, 239, 0.06);
  border-radius: 50%;
  z-index: 0;
}

.menu-deco-leaf {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 180px;
  opacity: 0.15;
  z-index: 0;
}

.menu .section-label { color: var(--sage-light); }
.menu .section-label::before { background: var(--sage-light); }
.menu .section-title { color: var(--ivory); }
.menu .section-title em { color: var(--gold-light); }

.menu-intro {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  color: var(--sage-pale);
  max-width: 680px;
  margin-bottom: 96px;
  letter-spacing: 0.08em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247, 244, 239, 0.12);
  position: relative;
  z-index: 2;
}

.menu-item {
  background: var(--moss-deep);
  padding: 56px 44px;
  position: relative;
  transition: background 0.4s;
}

.menu-item:hover { background: #2f3c33; }

.menu-item-popular {
  background: linear-gradient(135deg, #2c3a30 0%, #3d4f42 100%);
}

.popular-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 6px 14px;
}

.menu-item h3 {
  font-family: var(--accent);
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-item .ja-name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  color: var(--sage-light);
  letter-spacing: 0.4em;
  margin-bottom: 32px;
}

.menu-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(247, 244, 239, 0.15);
}

.menu-time {
  font-family: var(--accent);
  font-style: italic;
  font-size: 18px;
  color: var(--sage-light);
  letter-spacing: 0.05em;
}

.menu-price {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.03em;
}

.menu-price small {
  font-family: var(--accent);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--sage-light);
  margin-left: 8px;
  font-weight: 400;
}

.menu-desc {
  font-size: 13px;
  line-height: 2.2;
  color: var(--sage-pale);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.menu-includes {
  font-family: var(--accent);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--sage-light);
  line-height: 1.9;
  padding-top: 20px;
  border-top: 1px dotted rgba(247, 244, 239, 0.2);
}

.menu-note {
  margin-top: 56px;
  padding: 40px;
  background: rgba(0,0,0,0.2);
  font-family: var(--display);
  font-size: 13px;
  color: var(--sage-pale);
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { padding: 40px 28px; }
  .menu-item h3 { font-size: 34px; }
  .menu-price { font-size: 26px; }
}

/* ============================
   VOICES
============================ */
.voices {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.voices-deco {
  position: absolute;
  top: 100px;
  left: -80px;
  width: 280px;
  opacity: 0.08;
  z-index: 0;
}

.voices-deco-2 {
  position: absolute;
  bottom: 100px;
  right: -80px;
  width: 280px;
  opacity: 0.08;
  z-index: 0;
  transform: scaleX(-1);
}

.voices-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 8px 20px;
  background: var(--sage-deep);
  color: var(--ivory);
  font-family: var(--accent);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.voices-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.voices-intro {
  font-family: var(--display);
  font-size: 15px;
  line-height: 2.4;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 80px;
  letter-spacing: 0.08em;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.voice-card {
  background: var(--ivory);
  padding: 56px 40px 48px;
  position: relative;
  border: 1px solid var(--line);
  opacity: 0.7;
  transition: all 0.5s;
}

.voice-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.voice-quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 72px;
  font-weight: 400;
  color: var(--sage-light);
  line-height: 1;
  opacity: 0.6;
}

.voice-text {
  font-family: var(--display);
  font-size: 14px;
  line-height: 2.2;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  min-height: 180px;
  position: relative;
  z-index: 1;
}

.voice-text-placeholder {
  color: var(--text-soft);
  font-style: italic;
  opacity: 0.7;
}

.voice-meta {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.voice-initial {
  font-family: var(--accent);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: 0.05em;
}

.voice-attr {
  font-family: var(--display);
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.15em;
  text-align: right;
}

.voices-cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  background: var(--ivory);
  border: 1px dashed var(--sage-mid);
  position: relative;
  z-index: 2;
}

.voices-cta p {
  font-family: var(--display);
  font-size: 14px;
  line-height: 2.2;
  color: var(--text);
  letter-spacing: 0.08em;
  max-width: 540px;
  margin: 0 auto;
}

.voices-cta-label {
  font-family: var(--accent);
  font-style: italic;
  font-size: 16px;
  color: var(--sage-deep);
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}

@media (max-width: 968px) {
  .voices-grid { grid-template-columns: 1fr; gap: 24px; }
  .voice-card { padding: 48px 32px 40px; }
  .voice-text { min-height: auto; }
}

/* ============================
   VOICES END
============================ */


.atmosphere {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.atmosphere .section-label,
.atmosphere .section-title {
  padding: 0 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.atmosphere-intro {
  font-family: var(--display);
  font-size: 15px;
  line-height: 2.4;
  color: var(--text);
  max-width: 640px;
  padding: 0 64px;
  margin: 0 auto 80px auto;
  letter-spacing: 0.08em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(58, 74, 63, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item .caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
  letter-spacing: 0.15em;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Editorial asymmetric layout */
.gallery-item.tall-left { grid-column: span 5; grid-row: span 2; aspect-ratio: 4/5; }
.gallery-item.small-tr  { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item.small-tr2 { grid-column: span 3; aspect-ratio: 4/3; }
.gallery-item.wide-br   { grid-column: span 7; aspect-ratio: 16/9; }
.gallery-item.med-bl    { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-item.med-br    { grid-column: span 3; aspect-ratio: 3/4; }
.gallery-item.wide-bm   { grid-column: span 5; aspect-ratio: 4/3; }

@media (max-width: 968px) {
  .atmosphere { padding: 100px 0; }
  .atmosphere .section-label,
  .atmosphere .section-title,
  .atmosphere-intro,
  .gallery-grid { padding: 0 28px; }
  .gallery-grid { gap: 12px; }
  .gallery-item.tall-left,
  .gallery-item.small-tr,
  .gallery-item.small-tr2,
  .gallery-item.wide-br,
  .gallery-item.med-bl,
  .gallery-item.med-br,
  .gallery-item.wide-bm {
    grid-column: span 12;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* ============================
   ATMOSPHERE GALLERY END
============================ */


.flow {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.flow-deco {
  position: absolute;
  top: 200px;
  right: -100px;
  width: 360px;
  opacity: 0.08;
  z-index: 0;
}

.flow-list {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.flow-list::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sage-mid) 5%, var(--sage-mid) 95%, transparent);
}

.flow-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 36px;
  margin-bottom: 56px;
  align-items: start;
}

.flow-step {
  font-family: var(--accent);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  background: var(--paper);
  padding: 16px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.flow-content h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.flow-content h3 .en {
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  color: var(--sage-mid);
  letter-spacing: 0.2em;
  margin-left: 12px;
}

.flow-content p {
  font-size: 13px;
  line-height: 2.1;
  color: var(--text);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .flow-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .flow-list::before { left: 28px; }
  .flow-step { width: 56px; font-size: 14px; padding: 10px 0; }
  .flow-content h3 { font-size: 18px; }
  .flow-content h3 .en { display: block; margin-left: 0; margin-top: 4px; }
}

/* ============================
   FAQ
============================ */
.faq {
  background: var(--ivory);
  position: relative;
}

.faq-list {
  margin-top: 80px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  cursor: pointer;
  transition: padding 0.3s;
}

.faq-item:hover { padding-left: 12px; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  gap: 24px;
  letter-spacing: 0.05em;
}

.faq-question::before {
  content: 'Q.';
  font-family: var(--accent);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--sage-deep);
  margin-right: 20px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--sage-deep);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}

.faq-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  font-size: 13px;
  line-height: 2.2;
  color: var(--text);
  padding-left: 60px;
  letter-spacing: 0.05em;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: 24px;
}

.faq-answer::before {
  content: 'A.';
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  position: absolute;
  margin-left: -36px;
  margin-top: -2px;
}

.faq-answer { position: relative; }

/* ============================
   ACCESS
============================ */
.access {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.access-deco {
  position: absolute;
  top: 100px;
  right: -60px;
  width: 280px;
  opacity: 0.1;
  z-index: 0;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.access-text p {
  font-size: 14px;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.access-note {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--ivory);
  border-left: 3px solid var(--sage-deep);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--text);
}

.access-info {
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 14px 0;
  align-items: start;
}

.info-label {
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--sage-deep);
  padding-top: 4px;
}

.info-value {
  font-size: 13px;
  color: var(--text);
  line-height: 2;
  letter-spacing: 0.05em;
}

.access-map {
  aspect-ratio: 4/5;
  background: url('images/access.jpg') center/cover;
  position: relative;
}

.access-map::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--sage-deep);
  z-index: -1;
}

@media (max-width: 968px) {
  .access-grid { grid-template-columns: 1fr; gap: 56px; }
  .info-row { grid-template-columns: 90px 1fr; gap: 20px; }
}

/* ============================
   POLICY
============================ */
.policy {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.policy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(247, 244, 239, 0.05);
  border-radius: 50%;
}

.policy::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(247, 244, 239, 0.04);
  border-radius: 50%;
}

.policy .section-label { color: var(--sage-light); }
.policy .section-label::before { background: var(--sage-light); }
.policy .section-title { color: var(--ivory); }
.policy .section-title em { color: var(--gold-light); }

.policy-intro {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  color: var(--sage-pale);
  max-width: 640px;
  margin-bottom: 72px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.policy-item {
  border: 1px solid rgba(247, 244, 239, 0.2);
  padding: 48px 32px;
  text-align: center;
  background: rgba(31, 36, 33, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.policy-item:hover {
  background: rgba(74, 93, 79, 0.3);
  border-color: var(--sage-light);
  transform: translateY(-4px);
}

.policy-when {
  font-family: var(--accent);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.policy-fee {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1;
}

.policy-fee small {
  font-size: 20px;
  margin-left: 4px;
}

.policy-when-ja {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  color: var(--sage-light);
  margin-top: 16px;
  letter-spacing: 0.3em;
}

.policy-note {
  font-size: 13px;
  color: var(--sage-light);
  line-height: 2.3;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .policy-grid { grid-template-columns: 1fr; gap: 16px; }
  .policy-fee { font-size: 36px; }
}

/* ============================
   RESERVATION
============================ */
.reservation {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation-deco {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 300px;
  opacity: 0.08;
  z-index: 0;
}

.reservation .section-label,
.reservation .section-title {
  justify-content: center;
  text-align: center;
}

.reservation-intro {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 72px;
  letter-spacing: 0.08em;
}

.reservation-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.method-card {
  border: 1px solid var(--line);
  padding: 48px 36px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--ivory);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--moss-deep);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.method-card:hover::before { height: 100%; }
.method-card:hover { border-color: var(--moss-deep); transform: translateY(-6px); }
.method-card:hover .method-label,
.method-card:hover .method-value,
.method-card:hover .method-desc,
.method-card:hover .method-arrow { color: var(--ivory); }
.method-card:hover .method-label { color: var(--gold-light); }

.method-card > * { position: relative; z-index: 1; }

.method-label {
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--sage-deep);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.method-value {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.method-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 2;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.method-arrow {
  position: absolute;
  top: 48px;
  right: 36px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-mid);
  transition: all 0.3s;
}

.method-card:hover .method-arrow {
  transform: translateX(8px);
}

.reservation-note {
  font-family: var(--accent);
  font-style: italic;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 36px;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (max-width: 768px) {
  .reservation-methods { grid-template-columns: 1fr; }
  .method-card { padding: 36px 28px; }
}

/* ============================
   FOOTER
============================ */
footer {
  background: var(--charcoal);
  color: var(--sage-pale);
  padding: 100px 64px 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-deep), transparent);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-logo {
  width: 140px;
  height: 140px;
  display: block;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.95;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.footer-logo:hover {
  transform: scale(1.04);
  opacity: 1;
}

.footer-brand {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  color: var(--ivory);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.footer-brand .r-mark {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  font-size: 40px;
  letter-spacing: 0;
}

.footer-tagline {
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-light);
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-top: 16px;
}

.footer-tagline strong {
  display: block;
  margin-top: 16px;
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  color: var(--ivory);
  font-size: 16px;
  letter-spacing: 0.15em;
}

.footer-col h4 {
  font-family: var(--accent);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.footer-col p, .footer-col a {
  font-size: 12px;
  color: var(--sage-pale);
  line-height: 2.2;
  text-decoration: none;
  display: block;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--accent);
  font-style: italic;
  font-size: 12px;
  color: var(--sage-mid);
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  footer { padding: 72px 28px 32px; }
  .footer-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-logo { width: 110px; height: 110px; margin-bottom: 20px; }
  .footer-brand { font-size: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================
   REVEAL ON SCROLL
============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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