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

:root {
  --primary: #1E3A2F;
  --primary-dark: #162d24;
  --primary-light: #2d5444;
  --secondary: #8A6A42;
  --secondary-light: #a07d52;
  --accent: #D4AF37;
  --accent-light: #e8c84a;
  --bg: #F8F5EE;
  --bg-dark: #EDE8DF;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-muted: #9B9B9B;
  --font-serif: 'Noto Serif JP', '游明朝', 'Yu Mincho', Georgia, serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', sans-serif;
  --font-latin: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.14);
  --transition: 0.4s ease;
  --transition-slow: 0.7s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-serif);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 300; letter-spacing: 0.1em; line-height: 1.5; }

.section-label {
  font-family: var(--font-latin);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 0.98rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }
.section-title.text-white { color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}
.nav.scrolled {
  background: rgba(22, 45, 36, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.2rem;
}
.nav-logo-ja {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.25em;
}
.nav-logo-en {
  font-family: var(--font-latin);
  font-size: 0.58rem;
  color: var(--accent);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}
.nav-menu {
  display: none;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-menu a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-lang {
  display: flex;
  gap: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.nav-lang a { font-family: var(--font-latin); font-size: 0.78rem; letter-spacing: 0.2em; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%; max-width: 360px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 5.5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }
.mobile-nav-list { list-style: none; margin-bottom: 3rem; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-list a {
  display: block;
  padding: 1.1rem 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-nav-list a:hover { color: var(--accent); padding-left: 0.4rem; }
.mobile-lang {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-lang a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--font-latin);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  transition: color 0.3s;
}
.mobile-lang a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  height: 100svh; min-height: 620px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(45,84,68,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(138,106,66,0.2) 0%, transparent 45%),
    linear-gradient(160deg, #0a1e14 0%, #1E3A2F 45%, #2d5444 75%, #3a6052 100%);
  will-change: transform;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(212,175,55,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 35%);
}
.hero-grain {
  position: absolute; inset: 0;
  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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-latin);
  font-size: clamp(0.62rem, 1.5vw, 0.78rem);
  letter-spacing: 0.55em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.1s ease 0.8s forwards;
}
.hero-title-sub {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 2vw, 0.98rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.hero-scroll-text {
  font-family: var(--font-latin);
  font-size: 0.6rem; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.5s ease infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  padding: 1rem 2.4rem;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--accent);
}
.btn-accent:hover { background: transparent; color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary-solid {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.btn-primary-solid:hover { background: transparent; color: var(--primary); }
.btn-white {
  background: var(--white);
  color: var(--secondary);
  border: 1px solid var(--white);
}
.btn-white:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ===== CONCEPT ===== */
.concept-inner {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
  align-items: center;
}
.concept-visual {
  position: relative;
  aspect-ratio: 5/4;
  background: linear-gradient(145deg, #1E3A2F 0%, #2d5444 50%, #4a7a62 100%);
  overflow: hidden;
}
.concept-visual::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(212,175,55,0.28);
  pointer-events: none;
  z-index: 2;
}
.concept-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-text .lead {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--primary);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.concept-text p {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.concept-divider {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}

/* ===== MENU CARDS ===== */
.menu-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-top: 4rem;
}
.menu-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.menu-card-image {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d5444 0%, #8A6A42 100%);
  display: flex; align-items: center; justify-content: center;
}
.menu-card-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.18) 0%, transparent 55%);
}
.menu-card-icon {
  font-size: 3.5rem;
  opacity: 0.2; color: white;
  position: relative; z-index: 1;
}
.menu-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); color: var(--primary);
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.1em;
  padding: 0.28rem 0.8rem;
}
.menu-card-body { padding: 1.8rem; }
.menu-card-name {
  font-size: 1.1rem; color: var(--primary);
  font-weight: 400; letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.menu-card-desc {
  font-family: var(--font-sans); font-size: 0.83rem;
  color: var(--text-light); font-weight: 300;
  line-height: 1.85; margin-bottom: 1.4rem;
}
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--bg-dark);
}
.menu-card-price {
  font-family: var(--font-latin); font-size: 1.45rem;
  color: var(--secondary); font-weight: 400;
}
.menu-card-price span {
  font-family: var(--font-sans); font-size: 0.68rem;
  color: var(--text-muted); margin-left: 0.25rem;
}

/* ===== NATURE ===== */
.nature-section {
  background: var(--primary);
  position: relative; overflow: hidden;
}
.nature-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(138,106,66,0.12) 0%, transparent 55%);
}
.nature-section .container {
  position: relative;
  z-index: 1;
}
.nature-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 4rem;
}
.nature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.2rem;
  transition: background 0.35s, border-color 0.35s;
}
.nature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.3);
}
.nature-card-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.nature-card h3 {
  font-size: 0.95rem; color: var(--accent);
  font-weight: 300; letter-spacing: 0.12em; margin-bottom: 0.7rem;
}
.nature-card p {
  font-family: var(--font-sans); font-size: 0.83rem;
  color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.9;
}

/* ===== AGUU ===== */
.aguu-inner {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
  align-items: center;
}
.aguu-visual {
  position: relative;
  max-width: 420px; margin: 0 auto;
  aspect-ratio: 1;
}
.aguu-visual-main {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #8A6A42 0%, #D4AF37 50%, #8A6A42 100%);
  display: flex; align-items: center; justify-content: center;
}
.aguu-visual-kanji {
  font-size: 5.5rem; color: rgba(255,255,255,0.1);
  font-weight: 700;
}
.aguu-ring {
  position: absolute; inset: -1.5rem;
  border: 1px solid rgba(212,175,55,0.25);
  pointer-events: none;
}
.aguu-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.stat-item { text-align: center; padding: 1.5rem 0.5rem; border: 1px solid rgba(30,58,47,0.1); }
.stat-num {
  font-family: var(--font-latin); font-size: 2.2rem;
  color: var(--accent); font-weight: 400; line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-sans); font-size: 0.72rem;
  color: var(--text-light); letter-spacing: 0.04em; font-weight: 300;
}
.aguu-text p {
  font-family: var(--font-serif); font-size: 0.9rem;
  color: var(--text-light); line-height: 2.1; font-weight: 300; margin-bottom: 1.2rem;
}
.paiton-feature {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center; margin-top: 4rem;
  padding-top: 3.5rem; border-top: 1px solid rgba(30,58,47,0.1);
}
.paiton-feature-visual {
  position: relative;
  aspect-ratio: 5/4;
  background: linear-gradient(145deg, #f4efe4 0%, #e8dfc9 100%);
  overflow: hidden;
}
.paiton-feature-visual::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(212,175,55,0.28);
  pointer-events: none;
  z-index: 2;
}
.paiton-feature-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.paiton-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 22%; max-width: 110px; height: auto !important;
  aspect-ratio: 1/1;
  object-fit: contain !important;
  z-index: 3;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
.paiton-feature-text .section-label { display: inline-block; margin-bottom: 1rem; }
.paiton-feature-text p {
  font-family: var(--font-serif); font-size: 0.9rem;
  color: var(--text-light); line-height: 2.1; font-weight: 300; margin-bottom: 1.2rem;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg-dark); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 4rem;
}
.review-card {
  background: var(--white); padding: 2rem 2rem 2rem 2.5rem;
  position: relative; box-shadow: var(--shadow-sm);
}
.review-quote {
  position: absolute; top: 0.8rem; left: 1.2rem;
  font-family: var(--font-latin); font-size: 4rem;
  color: var(--accent); opacity: 0.3; line-height: 1;
}
.review-stars { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--font-serif); font-size: 0.88rem;
  color: var(--text); line-height: 2; margin-bottom: 1.4rem; font-weight: 300;
}
.review-author {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.8rem;
}
.review-author::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--accent);
}

/* ===== ACCESS STRIP ===== */
.access-strip { background: var(--primary); }
.access-strip-inner {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.access-strip-map {
  height: 300px; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.access-strip-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.access-items { display: flex; flex-direction: column; gap: 1.5rem; }
.access-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.access-item-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.8rem;
}
.access-item-label {
  font-family: var(--font-latin); font-size: 0.62rem;
  letter-spacing: 0.32em; color: var(--accent);
  text-transform: uppercase; display: block; margin-bottom: 0.25rem;
}
.access-item-value {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: rgba(255,255,255,0.82); font-weight: 300; line-height: 1.7;
}

/* ===== RESERVATION CTA ===== */
.reservation-cta {
  background: var(--secondary);
  text-align: center;
  position: relative; overflow: hidden;
}
.reservation-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.reservation-cta .section-label { justify-content: center; display: block; }
.reservation-cta h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--white); font-weight: 300; letter-spacing: 0.15em; margin-bottom: 0.8rem;
}
.reservation-cta p {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: rgba(255,255,255,0.7); margin-bottom: 2.5rem;
  font-weight: 300; letter-spacing: 0.05em;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: #0c1e14;
  padding: 5rem 0 2rem;
}
.footer-top {
  text-align: center; margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-ja {
  display: block; font-size: 1.6rem; color: var(--white);
  font-weight: 300; letter-spacing: 0.35em; margin-bottom: 0.4rem;
}
.footer-logo-sub {
  font-family: var(--font-latin); font-size: 0.62rem;
  letter-spacing: 0.55em; color: var(--accent); text-transform: uppercase;
}
.footer-rule { width: 50px; height: 1px; background: var(--accent); margin: 1.8rem auto; opacity: 0.5; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.2rem 2.5rem; list-style: none;
}
.footer-nav a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-family: var(--font-sans); font-size: 0.78rem;
  letter-spacing: 0.1em; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-info {
  text-align: center;
  font-family: var(--font-sans); font-size: 0.8rem;
  color: rgba(255,255,255,0.38); line-height: 2;
  margin-bottom: 2.5rem;
}
.footer-copy {
  text-align: center;
  font-family: var(--font-latin); font-size: 0.68rem;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.22);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 8rem 0 5rem;
  background: var(--primary);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(212,175,55,0.1) 0%, transparent 55%);
}
.page-header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white); font-weight: 300; letter-spacing: 0.22em;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg-dark); padding: 0.8rem 0; }
.breadcrumb-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  font-family: var(--font-sans); font-size: 0.75rem;
  color: var(--text-muted); letter-spacing: 0.05em;
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--accent); }

/* ===== MENU PAGE ===== */
.menu-more { text-align: center; margin-top: 4rem; }
.menu-more-image {
  max-width: 640px; margin: 2rem auto 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,58,47,0.1);
}
.menu-more-image img { width: 100%; display: block; }
.menu-note {
  background: var(--bg-dark); border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem; margin-bottom: 3rem;
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--text-light); line-height: 1.9; font-weight: 300;
}
.menu-item-card {
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  overflow: hidden;
}
.menu-item-image {
  height: 320px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1E3A2F 0%, #2d5444 40%, #8A6A42 100%);
  display: flex; align-items: center; justify-content: center;
}
.menu-item-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(138,106,66,0.3) 0%, transparent 45%);
}
.menu-item-bg-text {
  font-size: 7rem; color: rgba(255,255,255,0.07);
  font-weight: 700; text-align: center; padding: 1rem;
  position: relative; z-index: 1; line-height: 1;
}
.menu-item-image img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.menu-item-body { padding: 2.8rem; }
.menu-item-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--bg-dark); }
.menu-item-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--primary); font-weight: 400; letter-spacing: 0.06em; margin-bottom: 0.35rem;
}
.menu-item-title-en {
  font-family: var(--font-latin); font-size: 0.88rem;
  color: var(--text-muted); letter-spacing: 0.25em;
}
.menu-item-desc {
  font-family: var(--font-serif); font-size: 0.9rem;
  color: var(--text-light); line-height: 2.1;
  font-weight: 300; margin-bottom: 2rem;
}
.menu-item-points { margin-bottom: 2rem; }
.menu-item-points h4 {
  font-size: 0.8rem; color: var(--primary); letter-spacing: 0.15em;
  font-weight: 400; margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.menu-points-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.menu-points-list li {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--text-light); font-weight: 300;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.menu-points-list li::before {
  content: '—';
  color: var(--accent); flex-shrink: 0; font-family: var(--font-latin);
}
.menu-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.menu-tag {
  padding: 0.3rem 0.85rem;
  background: var(--bg-dark);
  font-family: var(--font-sans); font-size: 0.72rem;
  color: var(--primary); letter-spacing: 0.05em;
}
.menu-price-row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--bg-dark); padding-top: 1.5rem;
}
.menu-price {
  font-family: var(--font-latin); font-size: 2.2rem;
  color: var(--secondary); font-weight: 400;
}
.menu-price-note { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.about-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--primary); font-weight: 400; line-height: 2; margin-bottom: 2rem;
}
.about-body p {
  font-family: var(--font-serif); font-size: 0.92rem;
  color: var(--text-light); line-height: 2.2; font-weight: 300; margin-bottom: 1.5rem;
}
.about-img-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1E3A2F 0%, #2d5444 50%, #4a7a62 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-block::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(212,175,55,0.22);
  pointer-events: none;
}
.about-img-placeholder {
  font-size: 4rem; color: rgba(255,255,255,0.08); font-weight: 700;
}
.about-img-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.25) contrast(1.02);
}
.about-img-photo--bright {
  filter: brightness(1.45) contrast(1.03);
}
.about-two-col {
  display: grid; grid-template-columns: 1fr; gap: 5rem;
  align-items: center; margin-bottom: 6rem;
}
.philosophy-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.philosophy-card {
  display: flex; gap: 1.5rem;
  padding: 2rem; border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}
.philosophy-card:hover { border-color: rgba(212,175,55,0.3); }
.philosophy-num {
  font-family: var(--font-latin); font-size: 2.2rem;
  color: var(--accent); opacity: 0.45; line-height: 1; flex-shrink: 0;
}
.philosophy-card h3 {
  font-size: 0.95rem; color: var(--white); font-weight: 300;
  letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.philosophy-card p {
  font-family: var(--font-sans); font-size: 0.82rem;
  color: rgba(255,255,255,0.52); font-weight: 300; line-height: 1.9;
}

/* ===== ACCESS PAGE ===== */
.map-container {
  height: 420px; position: relative; overflow: hidden;
  margin-bottom: 4rem;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.access-cards {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.access-card {
  background: var(--white); padding: 2rem;
  border: 1px solid rgba(30,58,47,0.08);
  box-shadow: var(--shadow-sm);
}
.access-card-title {
  font-family: var(--font-latin); font-size: 0.65rem;
  letter-spacing: 0.35em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.access-card-content {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--text); line-height: 1.9; font-weight: 300;
}
.access-card-content strong { color: var(--primary); font-weight: 500; }
.route-steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.route-step { display: flex; gap: 1rem; align-items: flex-start; }
.route-step-num {
  width: 26px; height: 26px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-latin); font-size: 0.72rem; color: var(--white);
  flex-shrink: 0;
}
.route-step-text {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--text-light); font-weight: 300; line-height: 1.7;
  padding-top: 0.2rem;
}

/* ===== FAQ ===== */
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid rgba(30,58,47,0.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; gap: 1rem; user-select: none;
}
.faq-q-text {
  font-family: var(--font-serif); font-size: 0.95rem;
  color: var(--primary); font-weight: 400; letter-spacing: 0.03em;
  line-height: 1.6; flex: 1;
}
.faq-icon {
  width: 28px; height: 28px; border: 1px solid rgba(30,58,47,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary); font-size: 1.1rem;
  transition: all 0.35s; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--text-light); font-weight: 300; line-height: 2;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }

/* ===== NEWS ===== */
.news-list { margin-top: 2rem; }
.news-article {
  border-bottom: 1px solid rgba(30,58,47,0.08);
  padding: 2.2rem 0;
  display: block; text-decoration: none; color: inherit;
  transition: padding-left 0.3s;
}
.news-article:hover { padding-left: 0.5rem; }
.news-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.7rem; }
.news-date {
  font-family: var(--font-latin); font-size: 0.78rem;
  letter-spacing: 0.12em; color: var(--text-muted);
}
.news-cat {
  font-family: var(--font-sans); font-size: 0.68rem;
  padding: 0.2rem 0.65rem; background: var(--accent);
  color: var(--primary); font-weight: 500; letter-spacing: 0.05em;
}
.news-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--primary); font-weight: 400; letter-spacing: 0.03em;
  line-height: 1.65; margin-bottom: 0.5rem;
}
.news-excerpt {
  font-family: var(--font-sans); font-size: 0.83rem;
  color: var(--text-light); font-weight: 300; line-height: 1.85;
}

/* ===== EN / KO PAGE ===== */
.lang-hero {
  padding: 8rem 0 6rem;
  background: var(--primary);
  text-align: center;
  position: relative; overflow: hidden;
}
.lang-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.lang-hero-eyebrow {
  font-family: var(--font-latin); font-size: 0.72rem;
  letter-spacing: 0.5em; color: var(--accent);
  text-transform: uppercase; display: block; margin-bottom: 1.5rem;
}
.lang-hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white); font-weight: 300; letter-spacing: 0.15em; margin-bottom: 1rem;
}
.lang-hero-desc {
  font-size: 0.98rem; color: rgba(255,255,255,0.62);
  max-width: 600px; margin: 0 auto 2.5rem;
  font-family: var(--font-sans); font-weight: 300; line-height: 2;
}
.info-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.info-table th, .info-table td {
  padding: 1rem 0; border-bottom: 1px solid rgba(30,58,47,0.08);
  font-family: var(--font-sans); font-size: 0.88rem; text-align: left;
}
.info-table th {
  width: 130px; color: var(--secondary); font-weight: 500;
  letter-spacing: 0.05em; padding-right: 1.5rem;
}
.info-table td { color: var(--text); font-weight: 300; line-height: 1.8; }
.en-menu-grid, .ko-menu-grid, .zh-menu-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-top: 2.5rem;
}
.en-menu-card, .ko-menu-card, .zh-menu-card {
  background: var(--white); padding: 2rem;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--accent);
}
.en-menu-card h3, .ko-menu-card h3, .zh-menu-card h3 {
  font-size: 1.1rem; color: var(--primary); font-weight: 400;
  margin-bottom: 0.5rem; letter-spacing: 0.05em;
}
.en-menu-card .price, .ko-menu-card .price, .zh-menu-card .price {
  font-family: var(--font-latin); font-size: 1.35rem;
  color: var(--secondary); margin-bottom: 0.75rem;
}
.en-menu-card p, .ko-menu-card p, .zh-menu-card p {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--text-light); font-weight: 300; line-height: 1.85;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(0.85); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .nature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .access-cards { grid-template-columns: repeat(2, 1fr); }
  .en-menu-grid, .ko-menu-grid, .zh-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav-toggle { display: none; }
  .concept-inner { grid-template-columns: 1fr 1fr; }
  .aguu-inner { grid-template-columns: 1fr 1fr; }
  .paiton-feature { grid-template-columns: 1fr 1fr; }
  .about-two-col { grid-template-columns: 1fr 1fr; }
  .access-strip-inner { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-item-card { display: grid; grid-template-columns: 1fr 1fr; }
  .menu-item-image { height: auto; min-height: 360px; }
}
@media (min-width: 1024px) {
  .nature-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .access-cards { grid-template-columns: repeat(4, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }
::selection { background: var(--primary); color: var(--white); }
