/* ===== 夜桜の夢 — FanKoch Editorial Style ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Courier+Prime:wght@400;700&family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #f5ede0;
  --bg-rgb:       245, 237, 224;
  --bg-card:      #ede3d4;
  --bg-section:   #e8dccb;
  --bg-dark:      #1c1917;
  --text:         #2c2418;
  --text-muted:   #8a7a68;
  --gold:         #c09a45;
  --gold-light:   #d4b462;
  --gold-bg:      rgba(192, 154, 69, 0.12);
  --border:       rgba(44, 36, 24, 0.12);
  --border-strong:rgba(44, 36, 24, 0.28);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-mono:    'Courier Prime', 'Courier New', monospace;
  --font-jp:      'Noto Serif JP', serif;
  --font-zh:      'Noto Serif TC', serif;
  --radius:       3px;
  --radius-lg:    6px;
  --shadow:       0 2px 16px rgba(44, 36, 24, 0.1);
  --transition:   0.22s ease;
}

/* ── Dark Mode ── */
[data-theme="dark"] {
  --bg:           #1a1918;
  --bg-rgb:       26, 25, 24;
  --bg-card:      #252220;
  --bg-section:   #2d2926;
  --bg-dark:      #0f0e0d;
  --text:         #e8e4df;
  --text-muted:   #a8a09a;
  --gold:         #d4b462;
  --gold-light:   #e5c97a;
  --gold-bg:      rgba(212, 180, 98, 0.15);
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.2);
  --shadow:       0 2px 16px rgba(0, 0, 0, 0.3);
}

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

/* 右上角固定 Logo（隨滾動可見）*/
.site-corner-logo {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 100;
  width: 288px;
  height: auto;
  pointer-events: none;
}
.site-corner-logo img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: var(--font-jp);
  font-size: 17px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  padding-bottom: 24px;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('./picture/Sakura-1.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.12;
}
body.lang-zh { font-family: var(--font-zh); }
body.lang-en { font-family: var(--font-mono); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SITE NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
}

.nav-hamburger-btn {
  width: 60px; height: 60px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav-hamburger-btn span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 1px;
  transition: var(--transition);
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-center-link {
  padding: 0 16px;
  height: 60px;
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-center-link:hover { color: var(--text); }
.nav-center-link.active { color: var(--gold); }

.nav-contact-btns {
  display: flex; gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-cta-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.nav-cta-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-cta-fill {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}
.nav-cta-fill:hover { background: var(--gold-light); }

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  gap: 16px;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand-btn, .sidebar-logo-btn {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 0;
}
.nav-brand-btn:hover, .sidebar-logo-btn:hover { opacity: 0.85; }
.sidebar-logo { display: block; text-align: left; }

.nav-lang {
  display: flex; gap: 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.nav-lang button {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  padding: 4px 6px;
  transition: color var(--transition);
}
.nav-lang button:hover,
.nav-lang button.active { color: var(--gold); }

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { color: var(--gold); }
.theme-icon { display: none; }
/* Light mode: 顯示月亮（點擊切換到 dark） */
[data-theme="light"] .theme-icon-moon,
html:not([data-theme]) .theme-icon-moon { display: inline; }
/* Dark mode: 顯示太陽（點擊切換到 light） */
[data-theme="dark"] .theme-icon-sun { display: inline; }

.sidebar-theme-toggle {
  align-self: flex-start;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

/* ── SIDEBAR ── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 25, 23, 0.5);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.open {
  opacity: 1; pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--bg);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.sidebar.open { transform: translateX(0); }

.sidebar-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--text-muted);
  padding: 4px; line-height: 1;
  margin-bottom: 32px;
}

.sidebar-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
  width: 100%; text-align: left;
}

.sidebar-nav {
  list-style: none;
  flex: 1;
}
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar-nav li a:hover { color: var(--gold); }

.sidebar-lang {
  display: flex; gap: 0;
  margin-top: 32px; margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}
.sidebar-lang button {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  padding: 6px 10px;
}
.sidebar-lang button.active { color: var(--gold); }

.sidebar-contacts {
  display: flex; flex-direction: column; gap: 8px;
}
.sidebar-contact-btn {
  display: block;
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sc-line  { background: #06c755; color: white; }
.sc-tg    { background: #229ed9; color: white; }
.sc-gleezy{ background: #f5c518; color: #1a1a1a; }

/* ── HERO ── */
.hero {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - 60px);
}

.hero-img-side {
  position: relative;
  overflow: hidden;
}
.hero-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-tab-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.hero-tab-btn {
  padding: 18px 12px;
  background: rgba(28, 25, 23, 0.72);
  backdrop-filter: blur(8px);
  border: none; border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}
.hero-tab-btn:last-child { border-right: none; }
.hero-tab-btn:hover, .hero-tab-btn.active {
  background: var(--gold);
  color: white;
}

.hero-text-side {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 52px;
  background: var(--bg);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 400px;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.btn {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* 品牌色按鈕：LINE 綠、Telegram 藍、Gleezy 黃 */
.btn-line { background: #06c755; color: white; border: 1px solid #06c755; }
.btn-line:hover { background: #05b34a; border-color: #05b34a; }
.btn-telegram { background: #229ed9; color: white; border: 1px solid #229ed9; }
.btn-telegram:hover { background: #1d8bc4; border-color: #1d8bc4; }
.btn-gleezy { background: #f5c518; color: #1a1a1a; border: 1px solid #f5c518; }
.btn-gleezy:hover { background: #e6b70c; border-color: #e6b70c; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.trust-item:last-child { border-right: none; }
.trust-mark {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── SECTION BASE ── */
section { padding: 96px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
}

.section-rule {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.section-rule::before, .section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}
.section-rule-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.85;
}

/* ── FEATURES ── */
.features {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}
.feature-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 217, 0.6), transparent 30%),
    radial-gradient(circle at top right, rgba(246, 206, 221, 0.65), transparent 32%),
    linear-gradient(135deg, #f8eef4 0%, #f5e7ef 45%, #f6eff7 100%);
  padding: 72px 0;
}
.about::before,
.about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about::before {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(255, 210, 227, 0.5) 0%, rgba(255, 210, 227, 0) 72%);
}
.about::after {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(255, 217, 232, 0.6) 0%, rgba(255, 217, 232, 0) 70%);
}
.about-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
  min-height: 480px;
  position: relative;
  z-index: 1;
}
.about-text-side {
  padding: 24px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.about-img-side {
  position: relative;
}
.about-collage {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}
.about-collage-col {
  display: grid;
  gap: 20px;
  align-content: start;
}
.about-photo {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 60px rgba(88, 63, 87, 0.14);
}
.about-photo img {
  width: 100%;
  display: block;
  height: auto;
}
.about-photo-small-top {
  transform: translateY(18px);
}
.about-text-side p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 16px;
}
[data-theme="dark"] .about {
  background:
    radial-gradient(circle at top left, rgba(45, 40, 50, 0.5), transparent 30%),
    radial-gradient(circle at top right, rgba(50, 42, 55, 0.5), transparent 32%),
    linear-gradient(135deg, #252220 0%, #2d2828 45%, #2a2528 100%);
}
[data-theme="dark"] .about::before {
  background: radial-gradient(circle, rgba(80, 60, 90, 0.35) 0%, transparent 72%);
}
[data-theme="dark"] .about::after {
  background: radial-gradient(circle, rgba(70, 55, 85, 0.4) 0%, transparent 70%);
}
[data-theme="dark"] .about-photo {
  background: rgba(40, 38, 42, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.link-more {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  transition: gap var(--transition);
}
.link-more:hover { gap: 14px; }
.about-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.about-links .link-line { color: #06c755; }
.about-links .link-telegram { color: #229ed9; }
.about-links .link-gleezy { color: #f5c518; }
.about-links a {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition);
}
.about-links a:hover { opacity: 0.85; }

/* ── SERVICES ── */
.services { background: var(--bg-section); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card-area { grid-column: 1 / -1; }
.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
}
.service-card h3 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Japan Map */
.area-map-wrap { margin: 12px 0 16px; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.japan-map {
  width: 100%;
  height: 260px;
  background: var(--bg);
}
.japan-map .leaflet-container { background: var(--bg-card); font-family: inherit; }
.japan-map .leaflet-control-attribution { font-size: 0.65rem; opacity: 0.7; }
.japan-map .leaflet-bar a { color: var(--text); }
.japan-map-marker .map-pin {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
/* Area Tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.area-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }
.area-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.area-groups { display: flex; flex-direction: column; gap: 24px; margin-top: 16px; }
.area-group { display: flex; flex-direction: column; gap: 8px; }
.area-group-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

/* ── PRICING ── */
.pricing-section { background: var(--bg); padding: 64px 0; }
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-strong);
}
.pricing-tab {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  min-width: 160px;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.pricing-tab:hover { color: var(--text); }
.pricing-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: pricingFadeIn 0.3s ease; }
@keyframes pricingFadeIn { from { opacity: 0; } to { opacity: 1; } }

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .pricing-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pricing-tiers { grid-template-columns: 1fr; gap: 12px; }
}

.pricing-tier {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 140px;
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0.4;
}
.pricing-tier.tier-ss::before { opacity: 0.55; }
.pricing-tier.tier-sss::before { opacity: 0.75; }
.pricing-tier.tier-svip::before { opacity: 1; background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%); }
.pricing-tier:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-tier .tier-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 28px;
}
.pricing-tier .tier-icon { font-size: 1.25rem; line-height: 1; width: 1.5rem; text-align: center; }
.pricing-tier .tier-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-tier .tier-price {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.pricing-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.pricing-meta-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.pricing-meta-card:hover { border-color: var(--border-strong); }
.pricing-meta-icon {
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  padding-top: 2px;
}
.pricing-meta-content { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pricing-meta-card strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.pricing-meta-card .pricing-meta-content span {
  display: block;
  word-break: break-word;
}
.pricing-areas-list {
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.pricing-transport-zones { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.pricing-zone { display: flex; flex-direction: column; gap: 4px; }
.pricing-zone-fee {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.pricing-transport-card {
  background: var(--gold-bg);
  border-color: rgba(192, 154, 69, 0.3);
}
.pricing-transport-card strong { color: var(--gold); }
.pricing-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  padding: 14px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}

.pricing-addon {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(192, 154, 69, 0.25);
  border-radius: var(--radius-lg);
}
.pricing-addon-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pricing-addon-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  padding-left: 0;
}
.pricing-addon-list li::before {
  content: '・';
  color: var(--gold);
  margin-right: 6px;
}
.pricing-addon-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ── GALLERY + NEWS TABS ── */
.gallery-section { background: var(--bg); }

.section-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 48px;
  gap: 0;
}
.section-tab {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.section-tab:hover { color: var(--text); }
.section-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.gallery-card {
  background: var(--bg);
  transition: background var(--transition);
}
.gallery-card:hover { background: var(--bg-card); }

.card-img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-card);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover .card-img-wrap img { transform: scale(1.06); }

/* Badge — top-left corner */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  z-index: 2;
}

/* Card info — always visible below image */
.card-info {
  padding: 16px 20px;
  background: var(--bg-card);
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.card-stats {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 8px;
}
.card-stats-extracted {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.stat-line {
  display: flex; align-items: baseline; gap: 6px;
}
.stat-label {
  color: var(--text);
  min-width: 4.5em;
}
.stat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245,237,224,0.75);
}
.stat + .stat::before { content: '·'; margin-right: 6px; color: rgba(245,237,224,0.4); }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ctag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--text-muted);
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.gallery-cta > span:first-child { display: block; margin-bottom: 12px; }
.gallery-cta-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-cta .link-line { color: #06c755; }
.gallery-cta .link-telegram { color: #229ed9; }
.gallery-cta .link-gleezy { color: #f5c518; }
.gallery-cta a {
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition);
}
.gallery-cta a:hover { opacity: 0.85; }

/* ── NEWS LIST ── */
.news-list { max-width: 760px; margin: 0 auto; }
.news-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
  min-width: 64px;
  flex-shrink: 0;
}
.news-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}
.tag-new    { background: var(--gold); color: white; }
.tag-info   { border: 1px solid var(--border-strong); color: var(--text-muted); }
.tag-update { border: 1px solid var(--gold); color: var(--gold); }
.news-text  { font-size: 1rem; color: var(--text); }

/* ── BOOKING ── */
.booking-flow { background: var(--bg-section); }
.steps {
  max-width: 640px; margin: 0 auto 24px;
  display: flex; flex-direction: column; gap: 0;
}
.step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}
.step span:last-child { font-size: 1.02rem; color: var(--text-muted); padding-top: 4px; }
.booking-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--bg);
  padding: 36px 28px;
  text-align: center;
}
.why-icon { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.why-card h3 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* ── REVIEWS ── */
.reviews { background: var(--bg-section); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-card { position: relative; }
.review-img-wrap {
  width: 100%; aspect-ratio: 16/10; overflow: hidden; border-radius: 8px; margin-bottom: 12px;
  background: var(--bg-muted);
}
.review-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.review-card {
  background: var(--bg-card);
  padding: 36px 32px;
}
.review-card p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.9; font-style: italic; }

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}
.reviews-cta > span:first-child { display: block; margin-bottom: 12px; }
.reviews-cta-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.reviews-cta .link-line { color: #06c755; }
.reviews-cta .link-telegram { color: #229ed9; }
.reviews-cta .link-gleezy { color: #f5c518; }
.reviews-cta a {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition);
}
.reviews-cta a:hover { opacity: 0.85; }

/* ── WARNING ── */
.warning {
  padding: 32px 0;
  background: rgba(192, 154, 69, 0.08);
  border-top: 1px solid rgba(192, 154, 69, 0.25);
  border-bottom: 1px solid rgba(192, 154, 69, 0.25);
}
.warning-inner {
  display: flex; gap: 16px; align-items: flex-start;
  max-width: 760px; margin: 0 auto;
}
.warning h3 {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  white-space: nowrap;
}
.warning p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: #f5ede0;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.cta-section .section-label { margin-bottom: 24px; }
.cta-section .section-label { color: var(--gold); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-section .btn-primary { background: var(--gold); border-color: var(--gold); }
.cta-section .btn-secondary { border-color: rgba(245, 237, 224, 0.3); color: #f5ede0; }
.cta-section .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.cta-section .btn-outline { border: 1px solid rgba(245, 237, 224, 0.3); color: #f5ede0; }
.cta-section .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
  color: rgba(245, 237, 224, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5ede0;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 237, 224, 0.5);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.6);
  line-height: 1.9;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(245, 237, 224, 0.35);
}

/* ── FLOAT VIDEO CHARACTER ── */
.video-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}
.video-float-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-direction: row-reverse;
}
.video-float-video {
  width: 120px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-float-video:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}
.video-float-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-float-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition);
}
.video-float:hover .video-float-links,
.video-float.expanded .video-float-links {
  max-height: 140px;
  opacity: 1;
}
.vf-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.12);
}
.vf-link:hover { opacity: 0.9; }
.vf-line   { color: #06c755; }
.vf-tg     { color: #229ed9; }
.vf-gleezy { color: #f5c518; }
@media (max-width: 640px) {
  .video-float { bottom: 16px; right: 16px; }
  .video-float-video { width: 100px; height: 134px; }
}

/* ── DIARY SECTION ── */
.diary-section { background: var(--bg-section); }

.diary-filter {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 48px;
}
.diary-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.diary-filter-btn:hover { color: var(--text); }
.diary-filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.diary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* 日記分頁 */
.diary-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.diary-pagination.visible {
  display: flex;
}
.diary-page-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.diary-page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.diary-page-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
  cursor: default;
}
.diary-page-btn.active:hover {
  background: var(--gold);
  color: var(--bg);
}
.diary-page-numbers {
  display: flex;
  gap: 4px;
}
.diary-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.diary-card:hover { background: var(--bg); }

.diary-thumb {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.diary-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.diary-card:hover .diary-thumb img { transform: scale(1.03); }

.diary-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }

.diary-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.diary-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.diary-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--text-muted);
}

.diary-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.diary-stats {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.diary-stats span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 8px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 2px;
}
.diary-excerpt {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.diary-readmore {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: letter-spacing var(--transition);
}
.diary-readmore:hover { letter-spacing: 0.16em; }

/* Diary Modal */
.diary-modal {
  position: fixed; inset: 0;
  z-index: 500;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.diary-modal.open { display: flex; }
.diary-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(28, 25, 23, 0.7);
  backdrop-filter: blur(4px);
}
.diary-modal-content {
  position: relative;
  background: var(--bg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  z-index: 1;
}
.diary-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-muted);
  z-index: 2;
  transition: color var(--transition);
}
.diary-modal-close:hover { color: var(--text); }
.diary-modal-img {
  width: 100%; aspect-ratio: 2/3;
  object-fit: cover; object-position: top;
  display: block;
}
.diary-modal-header { padding: 24px 28px 0; }
.diary-modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 10px 0 12px;
}
.diary-modal-stats {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.diary-modal-stats span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 2px;
}
.diary-modal-text {
  padding: 20px 28px 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.95;
}

/* Review enhancements */
.review-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.review-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.review-girl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.review-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Admin nav link in footer (hidden from public) */
.admin-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(245,237,224,0.2);
  text-decoration: none;
  transition: color var(--transition);
}
.admin-link:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-side { height: 55vw; max-height: 420px; }
  .hero-text-side { padding: 48px 24px; }
  .hero-title { font-size: 2.4rem; }

  .nav-center { display: none; }
  .nav-contact-btns { display: none; }

  .about { padding: 56px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-text-side { padding: 0; }
  .about-collage {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-collage-col { gap: 16px; }
  .about-photo { border-radius: 20px; }
  .about-photo-small-top { transform: none; }

  .services-grid { grid-template-columns: 1fr; }
  .japan-map { height: 200px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .trust-item { padding: 8px 16px; }
  .trust-inner { justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  section { padding: 64px 0; }
  .hero-tab-strip { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .hero-tab-btn { font-size: 0.78rem; padding: 14px 6px; }

  .diary-grid { grid-template-columns: 1fr; }
  .diary-modal { padding: 12px; }
}

/* ── Admin Login Modal ── */
.admin-login-modal {
  position: fixed; inset: 0; z-index: 600;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.admin-login-modal.open { display: flex; }
.admin-login-overlay {
  position: absolute; inset: 0;
  background: rgba(28, 25, 23, 0.75);
  cursor: pointer;
}
.admin-login-box {
  position: relative;
  background: var(--bg-card);
  padding: 40px 36px;
  width: 340px; max-width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.admin-login-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-muted);
  padding: 4px; line-height: 1;
}
.admin-login-close:hover { color: var(--text); }
.admin-login-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.admin-login-sub {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.admin-login-box .form-group {
  margin-bottom: 16px;
}
.admin-login-box .form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.admin-login-box .form-group input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  font-size: 0.9rem; color: var(--text);
  outline: none; border-radius: 4px;
}
.admin-login-box .form-group input:focus {
  border-color: var(--gold);
}
.admin-login-box .pwd-input-wrap {
  position: relative; display: block;
}
.admin-login-box .pwd-input-wrap input {
  padding-right: 56px;
}
.admin-login-box .pwd-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  padding: 4px 10px; font-size: 0.75rem; color: var(--muted);
  background: transparent; border: none; cursor: pointer;
  transition: color 0.2s;
}
.admin-login-box .pwd-toggle:hover { color: var(--gold); }
.btn-admin-login {
  width: 100%; padding: 12px 24px;
  background: var(--gold); color: var(--bg-dark);
  border: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-admin-login:hover { background: var(--gold-light); }
.admin-login-error {
  margin-top: 12px; color: #c0392b;
  font-size: 0.82rem; text-align: center;
  min-height: 20px;
}
