/* ===========================================================
   KARUIZAWA Private Party Plan LP — Design System
   =========================================================== */

/* ---- Theme tokens (default: beige) ---- */
:root {
  --bg: #f5efe4;
  --bg-alt: #ebe3d3;
  --bg-deep: #e0d4bd;
  --ink: #1a1613;
  --ink-sub: #3a2f26;
  --ink-muted: #6b5d4f;
  --accent: #b8935a;
  --accent-deep: #8a6a3f;
  --accent-soft: #d9bd8a;
  --line: #d9cdb6;
  --card-bg: #ffffff;
  --header-bg: rgba(245, 239, 228, 0.92);
  --header-ink: #1a1613;
  --footer-bg: #1a1613;
  --footer-ink: #d9cdb6;
}

/* Dark theme */
[data-theme="dark"] {
  --bg: #0f0d0b;
  --bg-alt: #171412;
  --bg-deep: #1f1b17;
  --ink: #f0e6d2;
  --ink-sub: #d9cdb6;
  --ink-muted: #a89880;
  --accent: #d4a860;
  --accent-deep: #b8935a;
  --accent-soft: #e6c88c;
  --line: #2a2420;
  --card-bg: #1a1613;
  --header-bg: rgba(15, 13, 11, 0.9);
  --header-ink: #f0e6d2;
  --footer-bg: #050403;
  --footer-ink: #a89880;
}

/* Navy gold theme */
[data-theme="navy"] {
  --bg: #f4f1ea;
  --bg-alt: #e8e3d6;
  --bg-deep: #d9d1bc;
  --ink: #0e1a2b;
  --ink-sub: #1a2c47;
  --ink-muted: #4a5a72;
  --accent: #b8935a;
  --accent-deep: #8a6a3f;
  --accent-soft: #d9bd8a;
  --line: #c9c0a8;
  --card-bg: #ffffff;
  --header-bg: rgba(14, 26, 43, 0.94);
  --header-ink: #f0e6d2;
  --footer-bg: #0a1424;
  --footer-ink: #b8935a;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Serif JP', 'Shippori Mincho', serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .4s ease, color .4s ease;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Typography helpers ---- */
.script {
  font-family: 'Tangerine', cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.serif-en {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.08em;
}
.mincho {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
}
.tracking-wide { letter-spacing: 0.25em; }
.tracking-wider { letter-spacing: 0.4em; }

/* ---- Layout containers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Header (参照サイト karuizawa.com.my と同一DNA) ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000;
  color: #fff;
}
#header {
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  background: #000;
}
#header_logo {
  max-width: 260px;
  margin: 0 auto 16px;
}
#header_logo img {
  width: 100%;
  height: auto;
  display: block;
}
#menu-box {
  width: 100%;
  height: 2.6em;
  background: linear-gradient(to bottom, #9A7A4A, #74502C);
}
#menu ul {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#menu ul::after {
  content: "";
  display: block;
  clear: both;
}
#menu li {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  width: 25%;
  font-size: 1em;
  line-height: 1.3;
  float: left;
  border-right: 1px solid #76522E;
  list-style: none;
  box-sizing: border-box;
}
#menu li:last-child,
#menu li.r { border-right: none; }
#menu li a {
  display: block;
  padding: 0.7em 1em;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}
#menu li.on a,
#menu li a:hover,
#menu li a:active {
  background: linear-gradient(to bottom, #DEA842, #CA551B);
}
#toggle { display: none; }

/* Fixed header の下に本文が潜り込まないための余白 */
body { padding-top: 175px; }

@media only screen and (max-width: 960px) {
  #header { padding: 0; }
  #header_logo { max-width: 150px; margin: 16px auto; }
  #menu ul { width: 480px; }
  #menu li { font-size: 0.9em; }
  #menu li a { padding: 0.9em 0.5em; white-space: nowrap; }
  /* 実際のヘッダー高さ(約168px)に合わせて余白を確保 */
  body { padding-top: 130px; }
}

@media only screen and (max-width: 480px) {
  #header_logo { max-width: 200px; margin: 12px auto; }
  #menu-box {
    width: auto;
    height: auto;
    margin: 0 auto;
    background: none;
  }
  #menu { display: none; }
  #menu ul {
    width: 100%;
    background: #222;
    display: block;
  }
  #menu li {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    width: 100%;
    float: none;
    border: 0;
    font-size: 1em;
    line-height: 1;
  }
  #menu li a {
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    display: block;
    border: 0;
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px solid #333;
    box-sizing: border-box;
    white-space: nowrap;
  }
  #menu li:last-child a { border-bottom: none; }
  #menu li.on a { background: none; }
  #menu li.on a:hover,
  #menu li.on a:active {
    background: linear-gradient(to bottom, #DEA842, #CA551B);
  }
  #toggle {
    display: block;
    position: relative;
    width: 100%;
    background: #222;
  }
  #toggle a {
    height: 47px;
    font-size: 1em;
    font-weight: bold;
    display: block;
    position: relative;
    padding: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }
  #toggle::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }
  #toggle a::before,
  #toggle a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #222;
  }
  #toggle a::before { margin-top: -6px; }
  #toggle a::after  { margin-top: 2px; }
  body { padding-top: 120px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top はブレークポイントごとの実ヘッダー高さ＋余白を確保
     (>960px: 約140px / 481-960px: 約168px / ≤480px: 約132px) */
  padding: 165px 32px 140px;
  overflow: hidden;
  /* body の padding-top（ヘッダー分）を打ち消して、ヒーローをヘッダー直下から表示 */
  margin-top: -175px;
}
@media (max-width: 960px) {
  .hero { margin-top: -130px; padding-top: 195px; }
}
@media (max-width: 480px) {
  .hero { margin-top: -120px; padding-top: 150px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,8,6,0.55) 0%,
    rgba(10,8,6,0.35) 40%,
    rgba(10,8,6,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f5efe4;
  max-width: 900px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.6em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '—';
  margin: 0 12px;
  color: var(--accent);
}
.hero-script {
  font-family: 'Tangerine', cursive;
  font-size: 120px;
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: 24px;
  display: block;
}
.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero-title .accent { color: var(--accent-soft); }
.hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  color: #ebe3d3;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}
.btn-primary {
  background: var(--accent);
  color: #1a1613;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #f5efe4;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #f5efe4;
  border-color: rgba(245,239,228,0.7);
}
.btn-outline:hover {
  background: #f5efe4;
  color: #1a1613;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn svg { width: 18px; height: 18px; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: #ebe3d3;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

@media (max-width: 860px) {
  .hero {
    /* padding-top は上の 960px クエリ側の値(195px)を維持するため上書きしない */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 160px; /* 下部を拡張し hero-scroll との重なりを防止 */
    min-height: 90vh;
    min-height: 90dvh; /* モバイルブラウザのアドレスバー変動に対応 */
  }
  .hero-script { font-size: 90px; }
  .hero-title { font-size: 26px; letter-spacing: 0.05em; }
  .hero-sub { font-size: 15px; }
  .hero-tagline { font-size: 11px; letter-spacing: 0.4em; }
  .btn { min-width: 260px; padding: 16px 24px; font-size: 13px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-scroll { bottom: 20px; }
}

@media (max-width: 480px) {
  /* 縦長スクリプト文字が3行になり縦幅を圧迫するため、さらに縮小 */
  .hero-script { font-size: 60px; }
  .hero { padding-bottom: 140px; }
  .hero-scroll { gap: 8px; font-size: 10px; }
  .hero-scroll::after { height: 32px; }
}

/* ---- Section base ---- */
section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-deep { background: var(--bg-deep); }

.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-head .script {
  font-size: 90px;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-head .title {
  font-family: 'Shippori Mincho', serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-head .divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 20px auto;
}
.section-head .lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .section-head .script { font-size: 60px; }
  .section-head .title { font-size: 24px; letter-spacing: 0.08em; }
  .section-head .lead { font-size: 14px; }
}

/* ---- Intro section ---- */
.intro-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.intro-copy .ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: var(--ink-sub);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.intro-copy .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  font-style: italic;
  text-wrap: pretty;
}

/* ---- Features ---- */
.features {
  display: grid;
  gap: 80px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.feature-media:hover img { transform: scale(1.03); }
.feature-media::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--accent);
  z-index: 0;
  transition: all .5s ease;
}
.feature.reverse .feature-media::before {
  left: 40px; right: -20px;
}
.feature-media > * { position: relative; z-index: 1; }

.feature-body .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.feature-body .script {
  font-size: 60px;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--ink);
}
.feature-body .divider {
  width: 32px; height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}
.feature-body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-sub);
  letter-spacing: 0.05em;
  text-wrap: pretty;
}
.feature-body .highlight {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .features { gap: 64px; }
  .feature, .feature.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .feature-media::before { display: none; }
  .feature-body .script { font-size: 44px; }
  .feature-body h3 { font-size: 22px; }
  .feature-body p { font-size: 14px; }
}

/* ---- Plan pricing block ---- */
.plan-card {
  background: var(--card-bg);
  padding: 64px 56px;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--line);
  position: relative;
}
.plan-card::before,
.plan-card::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
}
.plan-card::before {
  top: -1px; left: -1px;
  border-top-width: 1px;
  border-left-width: 1px;
}
.plan-card::after {
  bottom: -1px; right: -1px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.plan-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.plan-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}
.plan-note {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.plan-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.plan-meta-item .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.plan-meta-item .value {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.4;
}
.plan-meta-item .value .unit {
  font-size: 14px;
  color: var(--ink-muted);
  margin-left: 4px;
}

.plan-price {
  text-align: center;
  padding: 32px 0;
}
.plan-price .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-price .amount {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.plan-price .amount .currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-right: 8px;
  color: var(--accent);
}
.plan-price .amount .big {
  font-size: 68px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.plan-price .amount .suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-left: 8px;
  color: var(--accent);
  text-transform: uppercase;
}
.plan-price .per {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  margin-top: 8px;
}
.plan-price .note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.price-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 4px;
  margin: 0 auto 24px;
  background: var(--bg);
}
.price-toggle button {
  padding: 8px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: all .3s ease;
}
.price-toggle button.active {
  background: var(--accent);
  color: #1a1613;
}
[data-theme="dark"] .price-toggle button.active { color: #0f0d0b; }

.people-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 4px;
  margin: 0 auto 8px;
  background: var(--bg);
}
.people-toggle button {
  padding: 8px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  transition: all .3s ease;
}
.people-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}
.plan-controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.plan-control-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 860px) {
  .plan-card { padding: 40px 24px; }
  .plan-title { font-size: 22px; }
  .plan-meta { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
  .plan-meta-item { text-align: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .plan-meta-item:last-child { border-bottom: none; }
  .plan-price .amount .big { font-size: 48px; }
  .plan-price .amount .suffix { font-size: 14px; }
}

/* ---- Plan quote block (replaces price) ---- */
.plan-quote {
  text-align: center;
  padding: 40px 0 8px;
}
.plan-quote .quote-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.plan-quote .quote-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.plan-quote .quote-divider {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 0 auto 24px;
}
.plan-quote .quote-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--ink-sub);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.plan-quote .quote-cta {
  margin-bottom: 24px;
}
.quote-note {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  line-height: 1.9;
}
div .quote-note {
  margin-top: 20px;
}

@media (max-width: 860px) {
  .plan-quote .quote-title { font-size: 20px; letter-spacing: 0.05em; }
  .plan-quote .quote-body { font-size: 14px; }
}

/* ---- Package inclusions ---- */
.package {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.pack-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all .3s ease;
}
.pack-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.pack-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.pack-card .icon svg { width: 100%; height: 100%; }
.pack-card h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--ink);
}
.pack-card .en-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pack-card .divider {
  width: 24px; height: 1px;
  background: var(--accent);
  margin: 0 auto 20px;
}
.pack-card ul {
  list-style: none;
  text-align: left;
}
.pack-card li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-sub);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  letter-spacing: 0.03em;
}
.pack-card li:last-child { border-bottom: none; }
.pack-card li::before {
  content: '•';
  color: var(--accent);
  margin-right: 8px;
}

@media (max-width: 860px) {
  .package { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .pack-card { padding: 32px 24px; }
}

/* ---- Scenes ---- */
.scenes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scene-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: default;
}
.scene-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.scene-card:hover img { transform: scale(1.05); }
.scene-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}
.scene-card .scene-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  color: #f5efe4;
  z-index: 2;
}
.scene-card .en-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.scene-card h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.scene-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #d9cdb6;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .scenes { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .scene-card { aspect-ratio: 3/4; }
  .scene-card .scene-body { padding: 20px 16px; }
  .scene-card h4 { font-size: 15px; letter-spacing: 0.05em; }
  .scene-card p { font-size: 11px; }
}

/* ---- Rules table ---- */
.rules-wrap { max-width: 960px; margin: 0 auto; }
.rules-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--line);
}
.rules-table th,
.rules-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.9;
}
.rules-table th {
  background: var(--bg-deep);
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 40%;
  color: var(--ink);
}
.rules-table th .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}
.rules-table td { color: var(--ink-sub); }
.rules-table td .price {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.rules-table td .price .accent {
  color: var(--accent);
}
.rules-table td .caption {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}
.rules-table tr:last-child th,
.rules-table tr:last-child td {
  border-bottom: none;
}

.rules-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: var(--bg-deep);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.9;
}

@media (max-width: 860px) {
  .rules-table, .rules-table tbody, .rules-table tr, .rules-table th, .rules-table td {
    display: block;
    width: 100%;
  }
  .rules-table th { padding: 16px 20px 8px; }
  .rules-table td { padding: 8px 20px 20px; border-bottom: 1px solid var(--line); }
  .rules-table td .price { font-size: 16px; }
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--accent);
  font-style: italic;
  flex-shrink: 0;
  width: 32px;
}
.faq-q-text {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink);
}
.faq-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0; left: 50%; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  transition: transform .3s ease;
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 24px 52px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-sub);
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .faq-q-text { font-size: 15px; }
  .faq-answer-inner { padding: 0 0 20px 44px; font-size: 13px; }
}

/* ---- Access ---- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.access-info {
  background: var(--card-bg);
  padding: 48px 40px;
  border: 1px solid var(--line);
}
.access-info h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 500;
}
.access-info .en-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.access-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  line-height: 1.8;
}
.access-row:last-child { border-bottom: none; }
.access-row .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 4px;
}
.access-row .value { color: var(--ink-sub); }
.access-map {
  min-height: 400px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.access-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

@media (max-width: 860px) {
  .access-grid { grid-template-columns: 1fr; gap: 24px; }
  .access-info { padding: 32px 24px; }
  .access-row { grid-template-columns: 80px 1fr; gap: 12px; }
}

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  padding: 140px 32px;
  text-align: center;
  overflow: hidden;
  background: var(--footer-bg);
  color: var(--footer-ink);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/scene-toast.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(30%);
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.7) 0%, rgba(10,8,6,0.9) 100%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner .script {
  font-size: 100px;
  line-height: 0.9;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.cta-banner h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f5efe4;
  margin-bottom: 24px;
  line-height: 1.5;
}
.cta-banner .lead {
  font-size: 15px;
  line-height: 2.2;
  color: #d9cdb6;
  max-width: 640px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}
.cta-banner .contact-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #d9cdb6;
}
.cta-banner .contact-list a { color: var(--accent-soft); border-bottom: 1px solid rgba(216,189,138,0.4); padding-bottom: 2px; }
.cta-banner .contact-list a:hover { color: #f5efe4; }
.cta-banner .contact-list .divider { color: var(--accent); }

@media (max-width: 860px) {
  .cta-banner { padding: 80px 20px; }
  .cta-banner .script { font-size: 64px; }
  .cta-banner h2 { font-size: 22px; letter-spacing: 0.05em; }
  .cta-banner .lead { font-size: 14px; }
  .cta-banner .contact-list { flex-direction: column; gap: 12px; }
  .cta-banner .contact-list .divider { display: none; }
}

/* ---- Footer (参照サイト karuizawa.com.my と同一DNA) ---- */
#site-footer { padding-top: 0; }
#footerwrap {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to bottom, #967B4C, #74502E);
}
#footer_bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 13px;
  padding-bottom: 10px;
}
#footer_bottom p.copy {
  text-align: center;
  font-size: 0.8em;
  color: #fff;
  margin: 0;
}

/* ---- Ornaments ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.ornament .line { width: 40px; height: 1px; background: var(--accent); }
.ornament .diamond {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ---- Fixed WhatsApp button (mobile) ---- */
.floating-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform .2s ease;
}
.floating-cta:hover { transform: scale(1.1); }
.floating-cta svg { width: 28px; height: 28px; }

@media (min-width: 861px) {
  .floating-cta { display: none; }
}

/* ---- Anchor offset for fixed header ---- */
section[id] { scroll-margin-top: 180px; }
@media (max-width: 960px) { section[id] { scroll-margin-top: 135px; } }
@media (max-width: 480px) { section[id] { scroll-margin-top: 125px; } }

/* ---- Responsive helpers ---- */
@media (max-width: 860px) {
  .hide-sp { display: none; }
}
@media (min-width: 861px) {
  .hide-pc { display: none; }
}
