:root {
  --ink: #163533;
  --ink-deep: #0d2928;
  --teal: #17756e;
  --teal-bright: #2b9187;
  --aqua: #d9efeb;
  --aqua-pale: #edf8f5;
  --ivory: #fbfaf5;
  --paper: #f7f8f4;
  --gold: #c7a45b;
  --gold-pale: #ead9ae;
  --muted: #667b77;
  --line: rgba(22, 53, 51, .14);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 24px 70px rgba(15, 55, 52, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: 130px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(251, 250, 245, .9);
  border-color: rgba(22, 53, 51, .1);
  box-shadow: 0 12px 35px rgba(22, 53, 51, .06);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.brand-kicker {
  font-size: 9px;
  letter-spacing: .34em;
  color: var(--teal);
  margin-bottom: 8px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .13em;
  white-space: nowrap;
}
.brand-name b { font-weight: 500; letter-spacing: .08em; }
.global-nav { display: flex; align-items: center; gap: 28px; }
.global-nav > a {
  font-size: 12px;
  letter-spacing: .08em;
  position: relative;
}
.global-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.global-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  min-width: 130px;
  padding: 12px 20px;
  color: #fff;
  background: var(--ink);
  text-align: center;
  border: 1px solid var(--ink);
  transition: color .25s ease, background .25s ease;
}
.nav-cta:hover { color: var(--ink); background: transparent; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 132px 0 84px;
  background:
    radial-gradient(circle at 78% 30%, rgba(208, 235, 229, .88), transparent 37%),
    linear-gradient(116deg, #fbfaf5 0 47%, #eef7f4 47% 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 117, 110, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 117, 110, .04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to right, transparent, #000 50%, #000);
}
.hero-bg {
  position: absolute;
  width: 58%;
  height: 84%;
  right: -8%;
  top: 8%;
  background: url("hero_abstract.jpg") center / cover no-repeat;
  opacity: .18;
  filter: saturate(.8);
  mask-image: linear-gradient(90deg, transparent 0, #000 28%, #000 74%, transparent 100%);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(199, 164, 91, .4);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(199, 164, 91, .12);
}
.hero-orbit-a { width: 620px; height: 620px; right: -190px; top: 50px; }
.hero-orbit-a::after { left: 95px; top: 45px; }
.hero-orbit-b { width: 330px; height: 330px; left: -170px; bottom: -80px; opacity: .6; }
.hero-orbit-b::after { right: 45px; top: 48px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 90px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--teal);
  font-weight: 700;
}
.eyebrow { display: flex; align-items: center; gap: 13px; }
.eyebrow span { width: 42px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(49px, 5.25vw, 76px);
  line-height: 1.38;
  letter-spacing: .08em;
  font-weight: 500;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: .05em;
  bottom: .06em;
  height: .16em;
  background: var(--gold-pale);
  z-index: -1;
}
.hero-line-small {
  display: block;
  margin-bottom: 10px;
  font-size: .43em;
  letter-spacing: .22em;
  color: var(--teal);
}
.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #48615d;
  font-size: 15px;
  line-height: 2.15;
}
.hero-actions { display: flex; align-items: stretch; gap: 14px; margin-top: 38px; }
.button {
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 15px 35px rgba(23, 117, 110, .2);
}
.button-primary:hover { background: var(--ink); box-shadow: 0 18px 40px rgba(13, 41, 40, .22); }
.button-ghost {
  min-width: 174px;
  padding-inline: 22px;
  flex-direction: column;
  gap: 0;
  border-color: rgba(22, 53, 51, .22);
  background: rgba(255, 255, 255, .42);
}
.button-ghost span { font-family: Georgia, serif; font-size: 15px; letter-spacing: .08em; }
.button-ghost small { font-size: 9px; color: var(--muted); letter-spacing: .12em; }
.button-ghost:hover { background: #fff; border-color: var(--gold); }
.hero-note { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.hero-note-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 10px;
  color: var(--gold);
  flex: 0 0 auto;
}
.hero-note p { margin: 0; font-size: 10px; line-height: 1.6; color: #738580; }

.hero-visual { position: relative; min-height: 650px; }
.visual-frame {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 430px;
  height: 550px;
  border: 1px solid rgba(199, 164, 91, .6);
  background: rgba(255, 255, 255, .48);
  box-shadow: var(--shadow);
}
.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.visual-frame::before {
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, .55);
}
.visual-frame::after {
  inset: auto -18px -18px auto;
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(23, 117, 110, .2);
  border-bottom: 1px solid rgba(23, 117, 110, .2);
}
.visual-image { position: absolute; overflow: hidden; }
.visual-image img { width: 100%; height: 100%; object-fit: cover; }
.visual-image-main { inset: 0; }
.visual-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 47, 44, .52));
}
.visual-image-sub {
  z-index: 4;
  left: -84px;
  bottom: -52px;
  width: 190px;
  height: 240px;
  border: 8px solid var(--ivory);
  box-shadow: 0 20px 46px rgba(15, 54, 51, .2);
}
.visual-monogram {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: -32px;
  color: rgba(255, 255, 255, .8);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
  letter-spacing: -.08em;
  writing-mode: vertical-rl;
  mix-blend-mode: soft-light;
}
.visual-private-card {
  position: absolute;
  z-index: 6;
  right: -34px;
  bottom: 34px;
  width: 216px;
  padding: 22px 24px;
  color: #fff;
  background: rgba(13, 41, 40, .9);
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(10px);
}
.visual-private-card span,
.visual-private-card small { display: block; font-size: 8px; letter-spacing: .28em; opacity: .72; }
.visual-private-card strong { display: block; margin: 4px 0 2px; font-family: Georgia, serif; font-size: 24px; letter-spacing: .15em; }
.visual-flower {
  position: absolute;
  z-index: 7;
  left: -34px;
  top: -38px;
  width: 105px;
  color: var(--gold);
  opacity: .75;
}
.visual-flower svg { fill: none; stroke: currentColor; stroke-width: .9; }
.hero-stat-card {
  position: absolute;
  z-index: 8;
  padding: 18px 22px;
  background: rgba(251, 250, 245, .92);
  border: 1px solid rgba(22, 53, 51, .14);
  box-shadow: 0 16px 40px rgba(15, 55, 52, .1);
  backdrop-filter: blur(12px);
}
.hero-stat-card > span { display: block; font-family: Georgia, serif; font-size: 8px; letter-spacing: .24em; color: var(--teal); }
.hero-stat-card strong { display: block; font-family: Georgia, serif; line-height: 1.2; font-weight: 400; }
.hero-stat-card p { margin: 4px 0 0; font-size: 9px; color: var(--muted); }
.stat-card-primary { left: 10px; top: 55px; width: 210px; }
.stat-card-primary strong { font-size: 25px; margin-top: 6px; letter-spacing: .02em; }
.stat-card-primary strong small { display: block; font-size: 10px; letter-spacing: .2em; }
.stat-card-primary strong span { color: var(--gold); }
.stat-card-secondary { right: -18px; bottom: 3px; width: 198px; }
.stat-card-secondary strong { margin-top: 5px; font-size: 17px; letter-spacing: .1em; }
.hero-bottom {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: .25em;
  color: var(--muted);
}
.hero-bottom i { width: 70px; height: 1px; background: var(--gold); position: relative; overflow: hidden; }
.hero-bottom i::after { content: ""; position: absolute; inset: 0; background: var(--teal); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }

.section-heading { margin-bottom: 56px; }
.section-heading.centered { max-width: 720px; margin-inline: auto; text-align: center; }
.section-heading h2,
.intro-copy h2,
.reward-heading h2,
.details-heading h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.45;
  letter-spacing: .1em;
  font-weight: 500;
}
.section-heading h2 span { font-size: .52em; display: block; color: var(--teal); letter-spacing: .18em; margin-bottom: 5px; }
.section-heading > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.section-lead { color: var(--muted); }

.intro { background: var(--ivory); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.intro-visual { position: relative; min-height: 650px; }
.intro-visual::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 86%;
  left: -30px;
  top: 34px;
  background: var(--aqua);
}
.intro-image {
  position: absolute;
  left: 45px;
  top: 0;
  width: 72%;
  height: 590px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 85, 79, .02), rgba(10, 37, 36, .24));
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: 44% 50%; }
.intro-seal {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(13, 41, 40, .2);
}
.intro-seal::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.intro-seal span { font-family: Georgia, serif; font-size: 8px; letter-spacing: .25em; }
.intro-seal strong { margin: 4px 0; font-family: Georgia, serif; font-size: 20px; letter-spacing: .15em; }
.vertical-caption {
  position: absolute;
  right: -25px;
  top: 20px;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--teal);
}
.intro-copy .section-lead { margin: 26px 0 38px; line-height: 2.15; }
.concept-points { border-top: 1px solid var(--line); }
.concept-points article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.concept-points article > span { font-family: Georgia, serif; font-size: 14px; color: var(--gold); }
.concept-points h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 20px; letter-spacing: .08em; font-weight: 500; }
.concept-points p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

.features {
  background:
    radial-gradient(circle at 10% 20%, rgba(219, 239, 235, .65), transparent 25%),
    linear-gradient(180deg, #f6f8f5, #f0f6f3);
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px 30px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(22, 53, 51, .1);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(199, 164, 91, .45); }
.feature-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(23, 117, 110, .08);
  border-radius: 50%;
}
.feature-card-wide { grid-column: span 2; display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 25px; }
.feature-card-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.feature-card-dark p { color: rgba(255,255,255,.65) !important; }
.feature-card-dark .feature-number { color: rgba(255,255,255,.12); }
.feature-card-dark .feature-icon { color: var(--gold-pale); border-color: rgba(255,255,255,.18); }
.feature-card-dark .feature-en { color: var(--gold-pale) !important; }
.feature-number {
  position: absolute;
  right: 18px;
  top: 2px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(22, 53, 51, .06);
}
.feature-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 117, 110, .22);
  color: var(--teal);
}
.feature-icon svg { width: 40px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.feature-card:not(.feature-card-wide) .feature-icon { margin-bottom: 36px; }
.feature-card .feature-en { margin: 0 0 10px; font-family: Georgia, serif; font-size: 8px; letter-spacing: .25em; color: var(--teal); }
.feature-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 22px; line-height: 1.6; letter-spacing: .08em; font-weight: 500; }
.feature-card h3 b { color: var(--gold-pale); font-weight: 500; }
.feature-card > p:last-child,
.feature-card > div > p:last-child { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.reward { position: relative; color: #fff; background: var(--ink-deep); overflow: hidden; }
.reward-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(43, 145, 135, .28), transparent 35%),
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.05) 49.8% 50.2%, transparent 50.2%);
}
.reward-texture::before {
  content: "AP";
  position: absolute;
  right: -70px;
  bottom: -135px;
  font-family: Georgia, serif;
  font-size: 360px;
  line-height: 1;
  color: rgba(255,255,255,.025);
}
.reward-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.section-kicker-light { color: var(--gold-pale); }
.reward-heading p:last-child { max-width: 430px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 2.1; }
.reward-panel { display: grid; grid-template-columns: 1.05fr .95fr; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(8px); }
.reward-main { padding: 48px 44px; border-right: 1px solid rgba(255,255,255,.12); }
.reward-main > span { font-size: 10px; letter-spacing: .22em; color: var(--gold-pale); }
.reward-main > p { margin: 14px 0 -4px; font-family: Georgia, serif; font-size: 20px; letter-spacing: .18em; }
.reward-main > p b { font-size: 62px; font-weight: 400; letter-spacing: 0; }
.reward-main strong { display: block; font-family: Georgia, serif; font-size: clamp(42px, 4.4vw, 61px); line-height: 1.15; letter-spacing: .02em; font-weight: 400; color: #fff; white-space: nowrap; }
.reward-main strong sup { color: var(--gold-pale); font-size: .45em; }
.reward-main small { display: block; margin-top: 22px; color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.7; }
.reward-list { padding: 26px 34px; display: flex; flex-direction: column; justify-content: center; }
.reward-list div { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.reward-list div:last-child { border-bottom: 0; }
.reward-list span { font-family: Georgia, serif; font-size: 12px; color: var(--gold-pale); }
.reward-list p { margin: 0; font-family: var(--serif); font-size: 15px; line-height: 1.8; letter-spacing: .07em; }

.voices { background: var(--ivory); }
.voices .section-heading { display: grid; grid-template-columns: .35fr 1fr; align-items: end; gap: 40px; }
.voices .section-heading .section-kicker { align-self: start; }
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.voice-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 390px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(22, 53, 51, .07);
}
.voice-card-reverse { grid-template-columns: 58% 42%; }
.voice-card-reverse .voice-photo { order: 2; }
.voice-photo { overflow: hidden; }
.voice-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s ease; }
.voice-card:hover .voice-photo img { transform: scale(1.035); }
.voice-content { padding: 42px 34px; display: flex; flex-direction: column; justify-content: center; }
.voice-content > span { font-family: Georgia, serif; font-size: 9px; letter-spacing: .24em; color: var(--teal); }
.voice-content blockquote { margin: 22px 0 18px; font-family: var(--serif); font-size: 20px; line-height: 1.85; letter-spacing: .07em; }
.voice-content p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.details { background: var(--paper); }
.details-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.details-heading { position: sticky; top: 120px; align-self: start; }
.details-heading > p:not(.section-kicker) { margin: 22px 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--gold); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--teal); }
.details-list { margin: 0; border-top: 1px solid var(--line); }
.details-list > div { display: grid; grid-template-columns: 145px 1fr; gap: 30px; padding: 27px 4px; border-bottom: 1px solid var(--line); }
.details-list dt { font-family: var(--serif); font-size: 14px; color: var(--teal); letter-spacing: .1em; }
.details-list dd { margin: 0; font-size: 14px; }
.details-list dd small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.details-list ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.details-list li { padding: 4px 12px; border: 1px solid rgba(23, 117, 110, .18); background: var(--aqua-pale); font-size: 11px; }

.flow { background: linear-gradient(180deg, #eef7f4, #f8faf7); }
.flow-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.flow-list::before { content: ""; position: absolute; left: 10%; right: 10%; top: 73px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.flow-list li { position: relative; min-height: 330px; padding: 35px 28px; background: rgba(255,255,255,.78); border: 1px solid rgba(22,53,51,.1); text-align: center; }
.flow-number { position: absolute; left: 18px; top: 12px; font-family: Georgia, serif; font-size: 11px; color: var(--gold); }
.flow-icon { position: relative; z-index: 2; width: 76px; height: 76px; margin: 0 auto 35px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: var(--ivory); border: 1px solid var(--gold); box-shadow: 0 0 0 9px rgba(255,255,255,.76); }
.flow-icon svg { width: 38px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.flow-list h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 20px; letter-spacing: .08em; font-weight: 500; }
.flow-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 100px; }
.faq-heading > p:not(.section-kicker) { margin-top: 20px; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 26px 58px 26px 0;
  display: flex;
  gap: 17px;
  align-items: flex-start;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .07em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 17px;
  height: 1px;
  background: var(--teal);
  transition: transform .25s ease;
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list summary span,
.faq-answer > span { font-family: Georgia, serif; color: var(--gold); flex: 0 0 auto; }
.faq-answer { display: flex; gap: 17px; padding: 0 50px 26px 0; color: var(--muted); font-size: 13px; }
.faq-answer p { margin: 0; line-height: 2; }

.cta-section { position: relative; padding: 130px 0; color: #fff; background: var(--ink); overflow: hidden; }
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,41,40,.97), rgba(13,41,40,.76)),
    url("editorial_blur.jpg") center 35% / cover no-repeat;
  opacity: .95;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(199,164,91,.3);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 850px; text-align: center; }
.cta-inner h2 { margin: 0; font-family: var(--serif); font-size: clamp(35px, 4vw, 54px); line-height: 1.5; letter-spacing: .09em; font-weight: 500; }
.cta-inner > p:not(.section-kicker):not(.cta-disclaimer) { margin: 18px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.cta-actions { display: flex; justify-content: center; align-items: stretch; gap: 18px; margin-top: 42px; }
.button-line { min-width: 330px; color: var(--ink); background: #fff; }
.button-line:hover { background: var(--aqua); }
.line-badge { padding: 3px 7px; color: #fff; background: var(--teal); font-family: Arial, sans-serif; font-size: 9px; border-radius: 2px; }
.cta-phone { min-width: 260px; padding: 12px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.32); transition: background .25s ease, transform .25s ease; }
.cta-phone:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.cta-phone small { font-size: 9px; letter-spacing: .14em; opacity: .7; }
.cta-phone strong { font-family: Georgia, serif; font-size: 20px; letter-spacing: .08em; font-weight: 400; }
.cta-phone span { font-size: 9px; opacity: .6; }
.cta-disclaimer { margin: 28px 0 0; font-size: 10px; color: rgba(255,255,255,.48); }

.site-footer { padding: 46px 0 96px; color: rgba(255,255,255,.72); background: #071c1b; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand span { font-family: Georgia, serif; font-size: 8px; letter-spacing: .25em; color: var(--gold-pale); }
.footer-brand strong { margin-top: 5px; font-family: var(--serif); font-size: 18px; letter-spacing: .16em; font-weight: 500; }
.footer-links { display: flex; gap: 25px; font-size: 10px; }
.footer-links a:hover { color: #fff; }
.footer-inner > p { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-family: Georgia, serif; font-size: 8px; letter-spacing: .17em; color: rgba(255,255,255,.35); }
.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .global-nav { gap: 17px; }
  .global-nav > a { font-size: 10px; }
  .nav-cta { min-width: 112px; padding-inline: 14px; }
  .hero-grid { gap: 40px; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); }
  .visual-frame { right: 0; width: 380px; }
  .stat-card-primary { left: -15px; }
  .intro-grid { gap: 65px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 1; display: block; }
  .feature-card-wide .feature-icon { margin-bottom: 36px; }
  .reward-grid { gap: 45px; }
  .voice-grid { gap: 24px; }
  .voice-card, .voice-card-reverse { grid-template-columns: 1fr; }
  .voice-card-reverse .voice-photo { order: 0; }
  .voice-photo { height: 300px; }
  .details-grid, .faq-grid { gap: 55px; }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  .section { padding: 95px 0; }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .header-inner { width: min(100% - 32px, 1320px); }
  .brand-kicker { font-size: 7px; }
  .brand-name { font-size: 17px; }
  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    border: 0;
    background: transparent;
    position: relative;
    z-index: 1002;
    cursor: pointer;
  }
  .menu-button span { width: 25px; height: 1px; background: var(--ink); transition: transform .3s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 30px;
    background: rgba(251,250,245,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .global-nav > a { font-family: var(--serif); font-size: 18px; letter-spacing: .1em; }
  .global-nav .nav-cta { margin-top: 15px; width: min(320px, 100%); color: #fff; }
  body.menu-open { overflow: hidden; }

  .hero { min-height: auto; padding: 115px 0 105px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 670px; }
  .hero h1 { font-size: clamp(45px, 9vw, 66px); }
  .hero-visual { width: min(580px, 100%); min-height: 650px; margin-inline: auto; }
  .visual-frame { right: 7%; width: 70%; }
  .hero-bg { width: 100%; right: -45%; opacity: .13; }
  .stat-card-primary { left: 2%; }
  .stat-card-secondary { right: 0; }

  .intro-grid, .reward-grid, .details-grid, .faq-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 60px; }
  .intro-visual { width: min(580px, 100%); margin-inline: auto; }
  .details-heading { position: static; }
  .reward-grid { gap: 50px; }
  .reward-panel { max-width: 720px; }
  .voices .section-heading { grid-template-columns: 1fr; gap: 0; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list::before { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .button-line, .cta-phone { width: min(430px, 100%); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 34px, 1180px); }
  .section { padding: 82px 0; }
  .hero { padding: 98px 0 78px; background: linear-gradient(160deg, #fbfaf5, #ebf6f2); }
  .hero::before { opacity: .3; background-size: 25px 25px; }
  .hero h1 { font-size: 41px; line-height: 1.48; letter-spacing: .055em; }
  .hero-line-small { font-size: .42em; letter-spacing: .15em; }
  .hero-lead { font-size: 13px; line-height: 2; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-note { align-items: flex-start; }
  .hero-visual { min-height: 555px; }
  .visual-frame { top: 0; right: 0; width: 82%; height: 460px; }
  .visual-image-sub { left: -52px; bottom: -45px; width: 145px; height: 185px; border-width: 6px; }
  .visual-private-card { right: -16px; bottom: 24px; width: 172px; padding: 17px; }
  .visual-private-card strong { font-size: 19px; }
  .visual-monogram { font-size: 70px; }
  .visual-flower { left: -25px; top: -29px; width: 80px; }
  .hero-stat-card { padding: 14px 16px; }
  .stat-card-primary { top: 38px; left: -1px; width: 172px; }
  .stat-card-primary strong { font-size: 20px; }
  .stat-card-secondary { bottom: 3px; right: 0; width: 169px; }
  .stat-card-secondary strong { font-size: 13px; }
  .hero-bottom { display: none; }
  .hero-orbit-a { width: 430px; height: 430px; right: -240px; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .intro-copy h2,
  .reward-heading h2,
  .details-heading h2,
  .faq-heading h2 { font-size: 34px; line-height: 1.52; letter-spacing: .07em; }
  .intro-visual { min-height: 500px; }
  .intro-image { left: 20px; width: 78%; height: 455px; }
  .intro-visual::before { left: -16px; }
  .intro-seal { width: 126px; height: 126px; right: 0; bottom: 5px; }
  .intro-seal strong { font-size: 15px; }
  .vertical-caption { display: none; }
  .concept-points article { grid-template-columns: 38px 1fr; gap: 12px; }
  .concept-points h3 { font-size: 17px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 29px 24px; }
  .feature-card .feature-icon, .feature-card-wide .feature-icon { margin-bottom: 26px; }
  .feature-card h3 { font-size: 20px; }
  .feature-number { font-size: 50px; }

  .reward-panel { grid-template-columns: 1fr; }
  .reward-main { padding: 36px 27px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .reward-main > p b { font-size: 50px; }
  .reward-main strong { font-size: 39px; }
  .reward-list { padding: 16px 27px; }

  .voice-grid { grid-template-columns: 1fr; }
  .voice-photo { height: 360px; }
  .voice-content { padding: 31px 27px; }
  .voice-content blockquote { font-size: 18px; }

  .details-list > div { grid-template-columns: 1fr; gap: 7px; padding: 22px 0; }
  .details-list dt { font-size: 12px; }
  .details-list dd { font-size: 13px; }

  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: auto; padding: 30px 25px; }
  .flow-icon { margin-bottom: 24px; }

  .faq-list summary { padding: 22px 43px 22px 0; font-size: 14px; line-height: 1.8; }
  .faq-answer { padding-right: 10px; font-size: 12px; }

  .cta-section { padding: 95px 0 110px; }
  .cta-bg::after { inset: 9px; }
  .cta-inner h2 { font-size: 32px; }
  .button-line { min-width: 0; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 15px 20px; }
  .site-footer { padding-bottom: 125px; }
  .mobile-cta {
    position: fixed;
    z-index: 990;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    padding-bottom: env(safe-area-inset-bottom);
    color: #fff;
    background: var(--ink-deep);
    box-shadow: 0 -12px 30px rgba(8, 34, 32, .18);
    transform: translateY(105%);
    transition: transform .35s ease;
  }
  .mobile-cta.is-visible { transform: translateY(0); }
  .mobile-cta a { min-height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.12); }
  .mobile-cta a:last-child { background: var(--teal); border-right: 0; }
  .mobile-cta span { font-size: 13px; font-weight: 700; }
  .mobile-cta small { font-size: 8px; opacity: .68; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
