/* ═══════════════════════════════════════════════
   LUMINA MARIAGE — 神戸・三宮の結婚相談所
   Ivory × Champagne Gold × Sumi ink
   ═══════════════════════════════════════════════ */

:root {
  --ivory: #faf7f1;
  --ivory-deep: #f3ede2;
  --white: #fffdf9;
  --gold: #b8935a;
  --gold-soft: #d4b98c;
  --gold-pale: #ecdfc8;
  --ink: #22252e;
  --ink-soft: #4c505c;
  --ink-mute: #8a8d96;
  --seal: #b5432f;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --latin: "Cormorant Garamond", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --hand: "Zen Kurenaido", var(--sans);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 20px 60px -24px rgba(34, 37, 46, .18);
  --shadow-card: 0 12px 40px -16px rgba(34, 37, 46, .14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.9;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* paper grain over everything, print-like */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300;
  pointer-events: none; opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.container { width: min(1160px, 92%); margin-inline: auto; }
.pc { display: inline; }
.sp { display: none; }
.center { text-align: center; }
section[id], div[id] { scroll-margin-top: 76px; }

::selection { background: var(--gold-pale); color: var(--ink); }

/* ── Loading veil ─────────────────────────── */
.veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory);
  display: grid; place-items: center;
  transition: opacity 1s var(--ease-out), visibility 1s;
}
.veil.is-done { opacity: 0; visibility: hidden; }
.veil-mark { text-align: center; display: flex; flex-direction: column; align-items: center; }
.veil-logo { width: 92px; height: 92px; color: var(--gold); margin-bottom: 22px; }
.vl-draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: vlDraw 1.5s var(--ease-out) forwards;
}
.vl-mount { animation-delay: .35s; }
.vl-water { animation-delay: .9s; animation-duration: .9s; }
.vl-spark { opacity: 0; transform-origin: 44px 17.5px; animation: vlSpark 1s 1.25s var(--ease-out) forwards; }
@keyframes vlDraw { to { stroke-dashoffset: 0; } }
@keyframes vlSpark {
  from { opacity: 0; transform: scale(.3) rotate(-40deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
.veil-en {
  font-family: var(--latin);
  font-size: clamp(17px, 2.6vw, 23px);
  letter-spacing: .48em;
  text-indent: .48em;
  color: var(--gold);
  display: block;
  animation: veilIn 1.4s .2s var(--ease-out) both;
}
.veil-ja {
  display: block; margin-top: 12px;
  font-size: 11px; letter-spacing: .3em; text-indent: .3em;
  color: var(--ink-mute);
  animation: veilIn 1.4s .6s var(--ease-out) both;
}
@keyframes veilIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Header ───────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .5s, box-shadow .5s, padding .5s;
}
.header.is-solid {
  background: rgba(250, 247, 241, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184, 147, 90, .18);
  padding-block: 11px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 38px; height: 38px; color: var(--gold); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.35; }
.brand-ja { font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: .12em; }
.brand-en { font-size: 10px; letter-spacing: .18em; color: var(--gold); }
.nav { display: flex; gap: clamp(12px, 1.6vw, 24px); }
.nav a {
  font-size: 13px; font-weight: 400; letter-spacing: .06em;
  position: relative; padding-block: 4px; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-indent: .08em;
  color: var(--white); background: var(--ink);
  padding: 11px 24px; border-radius: 3px; white-space: nowrap;
  transition: background .4s, transform .3s;
}
.header-cta:hover { background: var(--gold); transform: translateY(-1px); }
.menu-btn { display: none; }

/* Drawer (mobile) */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(250, 247, 241, .97);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer-nav { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.drawer-nav a { font-family: var(--serif); font-size: 19px; letter-spacing: .14em; }
.drawer-cta {
  margin-top: 12px; color: var(--white); background: var(--ink);
  padding: 14px 34px; border-radius: 999px; font-size: 15px;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 500; letter-spacing: .22em; text-indent: .1em;
  padding: 17px 42px; border-radius: 3px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s, background .35s, color .35s, border-color .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sub { font-size: 10px; font-weight: 300; letter-spacing: .14em; opacity: .85; margin-top: 3px; }
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #c9a468, var(--gold) 55%, #a37e45);
  box-shadow: 0 12px 34px -12px rgba(184, 147, 90, .6);
}
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  transition: left .8s var(--ease-out);
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover { box-shadow: 0 18px 42px -12px rgba(184, 147, 90, .7); }
.btn-ghost { color: var(--ink); border-color: rgba(34, 37, 46, .35); background: rgba(255, 253, 249, .6); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-line { color: var(--ink); border-color: rgba(184, 147, 90, .55); }
.btn-line:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-block { width: 100%; }

/* ── Reveal on scroll ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ── Section headings ─────────────────────── */
.sec-eyebrow {
  font-size: 13px; letter-spacing: .3em; text-indent: .3em;
  color: var(--gold); margin-bottom: 18px; font-weight: 400;
}
.sec-eyebrow.center { text-align: center; }
.sec-eyebrow.light { color: var(--gold-soft); }
.sec-title {
  font-family: var(--serif);
  font-size: clamp(25px, 3.8vw, 38px);
  font-weight: 600; line-height: 1.65; letter-spacing: .08em;
}
.sec-title.center { text-align: center; }
.sec-title.light { color: var(--white); }
.sec-rule {
  position: relative;
  width: 96px; height: 1px; margin: 30px 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.sec-rule::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; background: var(--gold);
  transform: translate(0, -50%) rotate(45deg);
}
.sec-rule.center { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold-soft) 30%, var(--gold-soft) 70%, transparent); }
.sec-rule.center::after { left: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.sec-latin {
  font-family: var(--latin); font-style: italic; font-weight: 400;
  font-size: 15px; letter-spacing: .18em; color: var(--gold);
  margin-top: 14px;
}
.sec-latin.center { text-align: center; }

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo picture { display: contents; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%;
  transform: scaleX(-1);
  animation: heroZoom 14s var(--ease-out) both;
}
@keyframes heroZoom { from { transform: scaleX(-1.08) scaleY(1.08); } to { transform: scaleX(-1) scaleY(1); } }
.hero-photo-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, .97) 0%, rgba(250, 247, 241, .92) 34%, rgba(250, 247, 241, .55) 55%, rgba(250, 247, 241, .06) 80%),
    linear-gradient(0deg, rgba(250, 247, 241, .9) 0%, rgba(250, 247, 241, 0) 26%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(1160px, 92%); margin-inline: auto;
  padding-top: 72px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; letter-spacing: .3em;
  color: var(--ink-soft); margin-bottom: 32px;
  border: 1px solid rgba(184, 147, 90, .45);
  background: rgba(255, 253, 249, .55);
  padding: 8px 22px; border-radius: 2px;
}
.hero-eyebrow::before {
  content: ""; width: 4px; height: 4px; flex: none;
  background: var(--gold); transform: rotate(45deg);
}
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(31px, 5.4vw, 58px);
  line-height: 1.62; letter-spacing: .06em;
}
.ht-line { display: block; }
.hero-lead {
  margin-top: 30px; font-size: clamp(14px, 1.5vw, 15.5px);
  color: var(--ink-soft); line-height: 2.25;
}
.hero-actions { margin-top: 40px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 12px; color: var(--ink-mute); letter-spacing: .06em; }
.hero-side {
  position: absolute; z-index: 2; right: clamp(16px, 3.4vw, 48px); bottom: 110px;
}
.tate {
  writing-mode: vertical-rl; font-family: var(--serif);
  font-size: 13px; letter-spacing: .5em; color: var(--ink-soft);
  border-right: 1px solid rgba(184, 147, 90, .55); padding-right: 14px;
}

/* ── News ─────────────────────────────────── */
.news { background: var(--white); border-bottom: 1px solid rgba(184, 147, 90, .16); }
.news-inner {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 28px; padding: 26px 0; align-items: start;
}
.news-title {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  letter-spacing: .3em; color: var(--gold); padding-top: 6px;
}
.news-list { display: flex; flex-direction: column; }
.news-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 7px 0; font-size: 13.5px;
  border-bottom: 1px dotted rgba(138, 141, 150, .3);
}
.news-list li:last-child { border-bottom: none; }
.news-list time { font-family: var(--latin); font-size: 13px; color: var(--ink-mute); flex: none; letter-spacing: .06em; }
.news-tag {
  flex: none; font-size: 10px; color: var(--gold);
  border: 1px solid var(--gold-soft); border-radius: 3px;
  padding: 1px 8px; letter-spacing: .08em;
}
.news-list a { color: var(--ink-soft); transition: color .3s; }
.news-list a:hover { color: var(--gold); }

/* ── Promises ─────────────────────────────── */
.stats { padding: 88px 0 76px; background: var(--white); }
.promise-intro {
  text-align: center; font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 18px); letter-spacing: .1em;
  color: var(--ink-soft); margin-bottom: 54px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.stat { padding: 8px 20px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 90px; background: linear-gradient(180deg, transparent, var(--gold-pale), transparent);
}
.promise-num {
  width: 54px; height: 54px; margin: 0 auto 18px;
  border: 1px solid var(--gold-soft); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 21px; color: var(--gold);
}
.promise-title {
  font-family: var(--serif); font-size: 18.5px; font-weight: 600;
  letter-spacing: .08em; margin-bottom: 12px;
}
.stat-label { font-size: 13px; color: var(--ink-soft); text-align: left; display: inline-block; max-width: 300px; }

/* ── Photo figures (shared) ───────────────── */
.concept-cap {
  margin-top: 14px; font-family: var(--hand);
  font-size: 13.5px; color: var(--ink-mute); line-height: 1.8;
  letter-spacing: .04em;
}

/* ── Concept ──────────────────────────────── */
.concept { padding: 130px 0 110px; background: var(--white); overflow: hidden; }
.concept-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.concept-visual img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 4px 120px 4px 4px;
  box-shadow: var(--shadow-soft);
}
.concept-text { margin-top: 26px; font-size: 15px; color: var(--ink-soft); line-height: 2.3; }

/* ── Greeting ─────────────────────────────── */
.greeting {
  padding: 110px 0 130px; background: var(--white);
  position: relative;
}
.greeting::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1160px, 92%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}
.greeting-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.greeting-lead {
  font-family: var(--serif); font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 600; line-height: 1.85; letter-spacing: .06em;
}
.greeting-text { margin-top: 24px; font-size: 14.5px; color: var(--ink-soft); line-height: 2.25; }
.greeting-sign {
  margin-top: 38px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.sign-title { font-size: 12px; color: var(--ink-mute); }
.sign-name { font-family: var(--serif); font-size: 22px; letter-spacing: .22em; }
.sign-seal {
  width: 40px; height: 40px; flex: none;
  border: 1.5px solid var(--seal); border-radius: 6px;
  color: var(--seal);
  font-family: var(--serif); font-size: 13px; font-weight: 600;
  display: grid; place-items: center;
  line-height: 1.15; letter-spacing: .04em;
  writing-mode: vertical-rl;
  opacity: .85; transform: rotate(-3deg);
}
.greeting-visual { position: sticky; top: 110px; }
.greeting-visual img {
  width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

/* ── Reasons ──────────────────────────────── */
.reasons { padding: 130px 0; background: linear-gradient(180deg, var(--ivory), var(--ivory-deep)); }
.reason-wrap {
  margin-top: 70px;
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px); align-items: start;
}
.reason-photo { position: sticky; top: 110px; }
.reason-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 4px; box-shadow: var(--shadow-soft);
}
.reason-list { display: flex; flex-direction: column; }
.reason-item {
  display: flex; gap: 26px; align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid rgba(184, 147, 90, .25);
}
.reason-item:first-child { padding-top: 6px; }
.reason-num {
  font-family: var(--latin); font-size: 30px; color: var(--gold);
  flex: none; line-height: 1;
}
.reason-item h3 {
  font-family: var(--serif); font-size: 19.5px; font-weight: 600;
  letter-spacing: .07em; margin-bottom: 10px; line-height: 1.6;
}
.reason-item p { font-size: 14px; color: var(--ink-soft); }

/* ── Flow ─────────────────────────────────── */
.flow { padding: 130px 0; background: var(--white); }
.flow-list {
  margin-top: 76px; max-width: 760px; margin-inline: auto;
  position: relative;
}
.flow-list::before {
  content: ""; position: absolute; left: 31px; top: 10px; bottom: 40px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 50%, var(--gold-pale));
}
.flow-item {
  position: relative; display: flex; gap: 36px;
  padding-bottom: 54px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-marker {
  position: relative; z-index: 1; flex: none;
  width: 63px; height: 63px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--latin); font-size: 19px; color: var(--gold);
  box-shadow: 0 0 0 8px var(--white);
}
.flow-marker-last {
  background: linear-gradient(135deg, #c9a468, var(--gold));
  color: #fff; font-size: 22px;
}
.flow-body h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: .07em; margin: 8px 0 10px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.flow-dur {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: var(--gold); border: 1px solid var(--gold-soft);
  padding: 3px 12px; border-radius: 999px; letter-spacing: .08em;
}
.flow-body p { font-size: 14px; color: var(--ink-soft); max-width: 580px; }

/* ── Plans ────────────────────────────────── */
.plans { padding: 130px 0; background: linear-gradient(180deg, var(--ivory-deep), var(--ivory)); }
.plans-lead { margin-top: 30px; font-size: 15px; color: var(--ink-soft); }
.plan-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.plan-card {
  position: relative; background: var(--white);
  border: 1px solid rgba(184, 147, 90, .2);
  border-radius: 4px; padding: 44px 34px 38px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, opacity 1.1s var(--ease-out);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.plan-card-hero {
  border: 1px solid var(--gold-soft);
  background: linear-gradient(180deg, #fffdf8, #fdf8ee);
  transform: scale(1.03);
}
.plan-card-hero:hover { transform: scale(1.03) translateY(-6px); }
.plan-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; color: #fff;
  background: linear-gradient(135deg, #c9a468, var(--gold));
  padding: 6px 20px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(184, 147, 90, .6);
}
.plan-name {
  font-family: var(--serif); font-size: 23px; font-weight: 600;
  letter-spacing: .14em; text-align: center;
}
.plan-tag { text-align: center; font-size: 12px; color: var(--gold); margin-top: 8px; }
.plan-price {
  text-align: center; margin-top: 26px;
  font-family: var(--latin); font-size: 44px; font-weight: 500; line-height: 1;
}
.plan-yen { font-size: .5em; vertical-align: .4em; margin-right: 2px; color: var(--gold); }
.plan-per { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--ink-mute); margin-left: 4px; }
.plan-init { text-align: center; font-size: 12px; color: var(--ink-mute); margin-top: 10px; }
.plan-features {
  margin: 30px 0; padding-top: 28px;
  border-top: 1px solid var(--gold-pale);
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.plan-features li {
  font-size: 13.5px; padding-left: 26px; position: relative; color: var(--ink-soft);
}
.plan-features li::before {
  content: "✓"; position: absolute; left: 2px; color: var(--gold); font-size: 13px;
}
.plan-features li.off { color: #c3c5cb; }
.plan-features li.off::before { content: "—"; color: #d8dade; }
.plan-seikon {
  text-align: center; font-size: 12.5px; color: var(--ink-soft);
  margin-bottom: 20px; letter-spacing: .08em;
}
.plans-note { margin-top: 48px; font-size: 11px; color: var(--ink-mute); line-height: 2; }

/* ── Quote band (Sakurajima) ──────────────── */
.quote-band {
  position: relative; overflow: hidden;
  min-height: 440px;
  display: flex; align-items: center;
}
.quote-bg {
  position: absolute; inset: -14% 0; width: 100%; height: 128%;
  object-fit: cover; object-position: 50% 38%;
  will-change: transform;
}
.quote-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34, 37, 46, .38), rgba(34, 37, 46, .5));
}
.quote-inner { position: relative; z-index: 1; text-align: center; padding: 90px 0; }
.quote-text {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 4vw, 42px); letter-spacing: .14em;
  color: #fff; line-height: 1.9;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}
.quote-sub {
  margin-top: 24px; font-size: clamp(12.5px, 1.4vw, 14.5px);
  color: rgba(255, 253, 249, .92); letter-spacing: .12em; line-height: 2.2;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .5);
}

/* ── Events ───────────────────────────────── */
.events { padding: 130px 0; background: var(--white); }
.event-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.event-card {
  background: var(--ivory); border: 1px solid rgba(184, 147, 90, .2);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), box-shadow .5s;
}
.event-card:hover { box-shadow: var(--shadow-soft); }
.event-img { position: relative; aspect-ratio: 16 / 8.4; overflow: hidden; }
.event-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.event-card:hover .event-img img { transform: scale(1.05); }
.event-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-indent: .18em;
  color: #fff; background: rgba(34, 37, 46, .82);
  border: 1px solid rgba(255, 253, 249, .4);
  padding: 6px 16px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.event-body { padding: 30px 32px 34px; }
.event-body h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: .08em; line-height: 1.6;
}
.event-meta {
  font-size: 12px; color: var(--gold); letter-spacing: .08em;
  margin: 8px 0 14px;
}
.event-body p:last-child { font-size: 13.5px; color: var(--ink-soft); }
.event-cta { margin-top: 48px; text-align: center; }
.voices-note { margin-top: 18px; font-size: 11px; color: var(--ink-mute); }

/* ── FAQ ──────────────────────────────────── */
.faq { padding: 130px 0; background: linear-gradient(180deg, var(--ivory), var(--ivory-deep)); }
.faq-container { max-width: 800px; }
.faq-list { margin-top: 60px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(184, 147, 90, .18);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  padding: 23px 30px;
  font-family: var(--serif); font-size: 15.5px; font-weight: 600;
  letter-spacing: .05em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; flex: none;
  font-family: var(--latin); font-size: 20px; color: var(--gold);
}
.faq-icon {
  margin-left: auto; flex: none; position: relative;
  width: 16px; height: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold);
  top: 50%; left: 0; width: 100%; height: 1px;
  transition: transform .4s var(--ease-out);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-body { padding: 0 30px 26px 68px; }
.faq-body p { font-size: 14px; color: var(--ink-soft); }

/* ── Access ───────────────────────────────── */
.access { padding: 130px 0; background: var(--white); }
.access-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.access-photo img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: 4px; box-shadow: var(--shadow-soft);
}
.access-table { display: flex; flex-direction: column; }
.access-table > div {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(184, 147, 90, .22);
  font-size: 14px;
}
.access-table > div:first-child { padding-top: 2px; }
.access-table dt { color: var(--gold); letter-spacing: .14em; font-weight: 400; }
.access-table dd { color: var(--ink-soft); }
.access-table small { font-size: 11.5px; color: var(--ink-mute); }
.access-routes {
  margin-top: 30px; padding: 28px 30px 26px;
  background: var(--ivory); border-radius: 6px;
  border-left: 2px solid var(--gold);
}
.access-routes-title {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  letter-spacing: .12em; margin-bottom: 18px;
}
.access-routes ul { display: flex; flex-direction: column; gap: 12px; }
.access-routes li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 13.5px; color: var(--ink-soft);
}
.route-mark {
  flex: none; width: 44px; text-align: center;
  font-size: 10.5px; letter-spacing: .06em; color: var(--gold);
  border: 1px solid var(--gold-soft); border-radius: 3px;
  padding: 2px 0;
}
.access-routes-note {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(184, 147, 90, .25);
  font-size: 12px; color: var(--ink-mute); line-height: 1.95;
}

/* ── Contact ──────────────────────────────── */
.contact {
  position: relative; padding: 140px 0;
  background: linear-gradient(160deg, #23262f, #2c2f3a 60%, #33323a);
  color: var(--white);
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; opacity: .5; }
.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5vw, 3vw) scale(1.12); }
}
.aurora-c1 { width: 50vw; height: 50vw; top: -18vw; right: -10vw; background: radial-gradient(circle, rgba(184, 147, 90, .5), transparent 65%); }
.aurora-c2 { width: 44vw; height: 44vw; bottom: -18vw; left: -10vw; background: radial-gradient(circle, rgba(232, 200, 192, .3), transparent 65%); animation-delay: -8s; }
.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(44px, 6vw, 90px); align-items: start;
}
.contact-lead { margin-top: 28px; font-size: 14.5px; color: #cfd0d6; line-height: 2.2; }
.contact-points { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact-points li {
  font-size: 13.5px; color: #e6e2d8; padding-left: 30px; position: relative;
}
.contact-points li::before {
  content: "✦"; position: absolute; left: 2px; color: var(--gold-soft); font-size: 13px;
}
.contact-form {
  background: rgba(255, 253, 249, .98);
  border-radius: 10px; padding: 42px 38px;
  color: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .55);
  position: relative;
}
.form-row { margin-bottom: 22px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .08em;
  margin-bottom: 9px;
}
.req {
  font-size: 10px; font-weight: 500; color: #fff;
  background: var(--gold); border-radius: 3px; padding: 2px 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; font-family: var(--sans); font-size: 14px;
  padding: 13px 16px;
  border: 1px solid #ddd5c6; border-radius: 6px;
  background: #fff; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 90, .16);
}
.contact-form input.is-error, .contact-form textarea.is-error { border-color: #c96a5a; }
.form-note { margin-top: 16px; font-size: 11px; color: var(--ink-mute); text-align: center; }
.form-done[hidden] { display: none; }
.form-done {
  position: absolute; inset: 0; border-radius: 10px;
  background: rgba(255, 253, 249, .99);
  display: grid; place-content: center; text-align: center;
  padding: 40px; gap: 8px;
  animation: fadeIn .8s var(--ease-out);
}
.form-done p { font-size: 14px; color: var(--ink-soft); }
.form-done-title {
  font-family: var(--serif); font-size: 22px !important; font-weight: 600;
  color: var(--ink) !important; letter-spacing: .1em;
}
@keyframes fadeIn { from { opacity: 0; } }

/* ── Footer ───────────────────────────────── */
.footer { background: #1c1e26; color: #b9bac2; padding: 76px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1.5fr .7fr;
  gap: clamp(36px, 5vw, 80px); padding-bottom: 60px;
}
.footer-brand .brand-mark { color: var(--gold-soft); }
.footer-name { font-family: var(--serif); font-size: 19px; color: #fff; margin-top: 16px; letter-spacing: .14em; }
.footer-en { font-family: var(--latin); font-size: 11px; letter-spacing: .34em; color: var(--gold-soft); margin-top: 6px; }
.footer-tag { font-size: 12.5px; margin-top: 18px; }
.footer-info dl { display: flex; flex-direction: column; gap: 13px; }
.footer-info div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; font-size: 13px; }
.footer-info dt { color: var(--gold-soft); letter-spacing: .1em; }
.footer-info a { text-decoration: underline; text-underline-offset: 3px; }
.footer-info a:hover { color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 13px; transition: color .3s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0; text-align: center;
  font-family: var(--latin); font-size: 11px; letter-spacing: .18em; color: #7c7e88;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .brand { margin-right: 0; }
  .header { justify-content: space-between; }
  .menu-btn {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 110;
  }
  .menu-btn span {
    width: 26px; height: 1.5px; background: var(--ink);
    transition: transform .4s var(--ease-out), opacity .3s;
  }
  .menu-btn.is-open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
  .menu-btn.is-open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }
  .hero-photo img { object-position: 74% 40%; }
  .concept-grid, .greeting-grid { grid-template-columns: 1fr; gap: 48px; }
  .greeting-visual, .reason-photo { position: static; max-width: 520px; }
  .reason-wrap { grid-template-columns: 1fr; gap: 48px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-card-hero { transform: none; }
  .plan-card-hero:hover { transform: translateY(-6px); }
  .event-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin-inline: auto; }
  .stat + .stat::before { display: none; }
  .stat-label { max-width: none; }
  .news-inner { grid-template-columns: 1fr; gap: 10px; }
  .news-list li { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 640px) {
  .pc { display: none; }
  .sp { display: inline; }
  body { line-height: 1.85; }
  .header-cta { display: none; }
  /* Mobile hero: text on ivory, photo as its own band at the bottom */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-side { display: none; }
  .hero-inner { padding-top: 96px; padding-bottom: 0; }
  .hero-photo { top: auto; bottom: 0; height: 42svh; }
  .hero-photo img { object-position: 50% 100%; transform: none; animation-name: heroZoomM; }
  @keyframes heroZoomM { from { transform: scale(1.07); } to { transform: scale(1); } }
  .hero-photo-fade {
    background: linear-gradient(180deg, var(--ivory) 0%, rgba(250, 247, 241, .55) 16%, rgba(250, 247, 241, 0) 42%);
  }
  .hero-title { font-size: min(7.4vw, 32px); letter-spacing: .03em; line-height: 1.7; }
  .hero-lead { margin-top: 22px; }
  .hero-actions { margin-top: 28px; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-note { margin-top: 14px; line-height: 1.8; }
  .concept, .reasons, .flow, .plans, .events, .faq, .access { padding: 92px 0; }
  .quote-band { min-height: 320px; }
  .greeting { padding: 84px 0 96px; }
  .contact { padding: 96px 0; }
  .contact-form { padding: 34px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .flow-list::before { left: 24px; }
  .flow-marker { width: 49px; height: 49px; font-size: 16px; box-shadow: 0 0 0 6px var(--white); }
  .flow-item { gap: 22px; padding-bottom: 44px; }
  .reason-item { flex-direction: column; gap: 10px; padding: 28px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-info div { grid-template-columns: 82px 1fr; }
  .faq-item summary { padding: 20px 20px; font-size: 14.5px; }
  .faq-body { padding: 0 20px 22px 56px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora, .hero-photo img { animation: none !important; }
  .reveal { transition: opacity .5s; transform: none; }
}
