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

:root {
  --ink: #1A1612;
  --ink-deep: #0F0D0A;
  --parchment: #F5F0E8;
  --parchment-warm: #EDE5D8;
  --copper: #B8703F;
  --copper-light: #D4945F;
  --copper-deep: #9A5C32;
  --copper-glow: rgba(184, 112, 63, 0.15);
  --text-dark: #2A2420;
  --text-body: #4A443E;
  --text-muted: #6E6862;
  --text-faint: #B0AAA4;
  --border: rgba(26, 22, 18, 0.1);
  --border-strong: rgba(26, 22, 18, 0.2);
  --cta: #B8703F;
  --cta-hover: #A5633A;
  --font-display: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --font-mono: 'Inter', sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

/* Reveal */
.rv { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-left { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
.rv-left.vis { opacity: 1; transform: translateX(0); }
.rv-right { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
.rv-right.vis { opacity: 1; transform: translateX(0); }
.rv-scale { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
.rv-scale.vis { opacity: 1; transform: scale(1); }
.d1 { transition-delay: 0.04s; } .d2 { transition-delay: 0.08s; } .d3 { transition-delay: 0.12s; }
.d4 { transition-delay: 0.16s; } .d5 { transition-delay: 0.2s; } .d6 { transition-delay: 0.2s; }
.d7 { transition-delay: 0.2s; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 4vw;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(24px);
  padding: 0.9rem 4vw;
  box-shadow: 0 1px 0 var(--border);
}
.nav.on-dark .nav-brand { color: var(--parchment); }
.nav.on-dark .nav-cta { background: var(--parchment); color: var(--ink); }
.nav-brand {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--ink); text-decoration: none;
  display: flex; align-items: baseline; gap: 0.6rem;
  transition: color 0.4s ease;
}
.nav-brand small { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; color: var(--text-muted); }
.nav-cta {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.65rem 2rem; background: var(--ink); color: var(--parchment);
  text-decoration: none; transition: all 0.4s ease;
}
.nav-cta { background: var(--cta); }
.nav-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }

/* In-page anchor chip bar (below fixed nav, appears after hero) */
.anchor-nav {
  position: fixed; top: 75px; left: 0; right: 0; z-index: 999;
  display: flex; gap: 0.5rem; align-items: center; height: 44px;
  padding: 0 4vw;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none; white-space: nowrap;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.anchor-nav a {
  flex: 0 0 auto; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.03em; color: var(--text-body); text-decoration: none;
  padding: 0.32rem 0.85rem; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255, 255, 255, 0.5); transition: all 0.25s ease;
}
.anchor-nav a:hover { border-color: var(--copper-deep); color: var(--copper-deep); }
.anchor-nav a.anchor-cta { background: var(--cta); color: #fff; border-color: var(--cta); font-weight: 600; }
.anchor-nav a.anchor-cta:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: #fff; }
#simulator, #comparison, #voices, #pricing, #contact, #faq { scroll-margin-top: 132px; }
@media (max-width: 768px) { .anchor-nav { top: 69px; height: 42px; padding: 0 5vw; } }

/* ===== Pain Points ===== */
.pain-section {
  background: var(--ink-deep);
  color: var(--parchment);
  padding: 4rem 8vw;
  text-align: center;
}
.pain-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: left;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
a.pain-item { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a.pain-item:hover { opacity: 0.7; }
.pain-icon { font-size: 0.78rem; flex-shrink: 0; color: var(--copper); letter-spacing: -0.05em; }
.pain-text { font-size: 0.9rem; line-height: 1.5; color: rgba(245, 240, 232, 0.85); }
.pain-text strong { color: var(--parchment); }
.pain-answer {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--copper-light);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===== Photo Break ===== */
.photo-break {
  height: 50vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}
.photo-break img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.photo-break:hover img { transform: scale(1.03); }
.photo-break-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 13, 10, 0.35);
}
.photo-break-text {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; font-style: normal; color: var(--parchment);
  text-align: center; letter-spacing: 0.04em; line-height: 1.4;
}

/* ===== Section Base ===== */
.sec { padding: 8rem 8vw; position: relative; }
.sec-dark { background: var(--ink); color: var(--parchment); }
.sec-warm { background: var(--parchment-warm); }
.sec-label {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--copper-deep);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.sec-label::before { content: ''; width: 24px; height: 1px; background: var(--copper); }
.sec-dark .sec-label { color: var(--copper-light); }
.sec-dark .sec-label::before { background: var(--copper-light); }
.sec-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 1.5rem; max-width: 700px;
}
.sec-heading em { font-style: normal; color: var(--copper); font-weight: 600; }
.sec-dark .sec-heading { color: var(--parchment); }
.sec-body { font-size: 0.88rem; font-weight: 400; line-height: 2.1; color: var(--text-body); max-width: 600px; }
.sec-dark .sec-body { color: rgba(245, 240, 232, 0.85); }

/* Campaign */
.campaign-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.camp-card {
  padding: 3rem; border: 1px solid var(--border); position: relative;
  background: var(--parchment); transition: all 0.5s var(--ease-expo); overflow: hidden;
}
.camp-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--copper); transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s var(--ease-expo);
}
.camp-card:hover::before { transform: scaleY(1); }
.camp-card:hover { border-color: var(--copper); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26, 22, 18, 0.08); }
.camp-icon { font-family: var(--font-mono); font-size: 2.8rem; font-weight: 700; color: var(--copper); line-height: 1; margin-bottom: 1.5rem; }
.camp-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.camp-card p { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 2; }
.campaign-quote { margin-top: 3rem; padding: 2.5rem 3rem; background: var(--ink); position: relative; }
.campaign-quote::before {
  content: '\201C'; font-family: var(--font-display); font-size: 6rem; font-weight: 700;
  color: var(--copper-deep); opacity: 0.2; position: absolute; top: -0.5rem; left: 1.5rem; line-height: 1;
}
.campaign-quote p { font-size: 0.9rem; font-weight: 400; font-style: normal; color: rgba(245, 240, 232, 0.75); line-height: 2.1; position: relative; z-index: 1; }

/* Features with Photo */
.feat-section { position: relative; overflow: hidden; }
.feat-bg {
  position: absolute; inset: 0;
  background: var(--ink-deep) center/cover no-repeat;
}
.feat-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15, 13, 10, 0.8);
}
.feat-content { position: relative; z-index: 2; }
.feat-grid {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; border: 1px solid rgba(245, 240, 232, 0.1);
  background: rgba(245, 240, 232, 0.08);
}
.feat-item {
  padding: 2.6rem 2.2rem;
  position: relative; transition: background 0.4s ease;
  background: #171310; border: 1px solid rgba(245, 240, 232, 0.08);
}
.feat-item:hover { background: #1E1813; }
.feat-num { font-family: var(--font-mono); font-size: 4rem; font-weight: 300; color: var(--copper); opacity: 0.3; line-height: 1; margin-bottom: 2rem; font-style: normal; }
.feat-item h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--parchment); margin-bottom: 1rem; line-height: 1.5; }
.feat-item p { font-size: 0.8rem; font-weight: 400; color: rgba(245, 240, 232, 0.85); line-height: 1.85; max-width: 34em; }

/* Stories with Photos */
.stories-layout { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.story-item { position: relative; border: 1px solid var(--border); transition: all 0.5s var(--ease-expo); overflow: hidden; }
.story-item:first-child { border-right: none; }
.story-photo { height: 260px; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-expo); }
.story-item:hover .story-photo img { transform: scale(1.05); }
.story-body { padding: 3rem; }
.story-location { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 1rem; }
.story-item h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; line-height: 1.5; }
.story-item > .story-body > p { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 2; }
.story-result { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.story-big-num { font-family: var(--font-mono); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; color: var(--copper); line-height: 1; }
.story-big-num small { font-size: 0.7em; font-weight: 400; opacity: 0.6; }
.story-big-label { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); margin-top: 0.5rem; }
a.story-item { text-decoration: none; color: inherit; display: block; }
a.story-item:hover { border-color: var(--copper); }

/* Logic */
.logic-layout { display: grid; grid-template-columns: 55% 1fr; gap: 6rem; margin-top: 4rem; align-items: start; }
.logic-prose p { font-size: 0.88rem; font-weight: 400; color: rgba(245, 240, 232, 0.85); line-height: 2.2; margin-bottom: 1.5rem; }
.logic-prose strong { color: var(--parchment); font-weight: 500; }
.flow-visual { position: relative; padding: 2.5rem; border: 1px solid rgba(245, 240, 232, 0.1); }
.flow-title { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 2.5rem; }
.flow-node { display: flex; align-items: center; gap: 1.25rem; padding: 1.2rem 0; }
.flow-dot { width: 10px; height: 10px; border: 2px solid var(--copper); border-radius: 50%; flex-shrink: 0; position: relative; }
.flow-dot.active { background: var(--copper); box-shadow: 0 0 16px var(--copper-glow); }
.flow-dot::after { content: ''; position: absolute; top: calc(100% + 2px); left: 50%; transform: translateX(-50%); width: 1px; height: 24px; background: rgba(184, 112, 63, 0.3); }
.flow-node:last-child .flow-dot::after { display: none; }
.flow-node p { font-size: 0.78rem; color: rgba(245, 240, 232, 0.6); line-height: 1.6; }
.flow-node p strong { color: var(--parchment); font-weight: 500; }
.flow-highlight { margin-top: 0.5rem; padding: 1.5rem; background: rgba(184, 112, 63, 0.08); border-left: 2px solid var(--copper); }
.flow-highlight p { font-size: 0.78rem; color: var(--copper-light); line-height: 1.7; }

/* CEO Message — magazine interview style */
.ceo-section { padding: 7rem 8vw 6rem; background: var(--parchment-warm); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.ceo-section::before { content: '"'; position: absolute; font-family: var(--font-display); font-size: 28rem; color: var(--copper); opacity: 0.05; top: -8rem; left: 4vw; line-height: 0.8; pointer-events: none; font-weight: 700; }
.ceo-wrap { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; position: relative; }
.ceo-portrait { position: relative; aspect-ratio: 870 / 1200; overflow: hidden; background: var(--ink); }
.ceo-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(8%) contrast(1.02); }
.ceo-portrait-caption { position: absolute; left: 0; right: 0; bottom: -2.2rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; line-height: 1.6; }
.ceo-portrait-caption span { display: block; }
.ceo-portrait-caption span:first-child { color: var(--text-body); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.15rem; }
.ceo-body { padding-top: 0.5rem; }
.ceo-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--copper-deep); text-transform: uppercase; font-weight: 600; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
.ceo-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--copper); }
.ceo-pull { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--ink); line-height: 1.6; letter-spacing: 0.01em; margin-bottom: 2.5rem; text-indent: -0.5em; padding-left: 0.5em; }
.ceo-pull::before { content: '\201C'; color: var(--copper); }
.ceo-pull::after { content: '\201D'; color: var(--copper); }
.ceo-body p { font-size: 0.92rem; line-height: 2.15; color: var(--text-body); margin-bottom: 1.2rem; }
.ceo-body p strong { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--copper-light); padding-bottom: 1px; }
.ceo-sign-block { margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--border); display: flex; align-items: flex-end; gap: 1.8rem; flex-wrap: wrap; }
.ceo-sign-meta { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; line-height: 1.7; }
.ceo-sign-meta strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); font-weight: 600; letter-spacing: 0.04em; margin-top: 0.2rem; }
.ceo-sign-meta strong small { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); margin-left: 0.5rem; text-transform: uppercase; }
.ceo-sign-image { height: 56px; }
.ceo-sign-image img { height: 100%; width: auto; display: block; opacity: 0.85; }
@media (max-width: 860px) {
  .ceo-wrap { grid-template-columns: 1fr; gap: 3rem; max-width: 540px; }
  .ceo-portrait { max-width: 260px; margin: 0 auto; }
  .ceo-portrait-caption { text-align: center; }
  .ceo-pull { font-size: 1.4rem; }
}
@media (max-width: 720px) { .ceo-section { padding: 4.5rem 6vw 4rem; } .ceo-section::before { font-size: 16rem; top: -4rem; } }

/* MVV Section (Mission · Vision · Value) */
.mvv-section { position: relative; overflow: hidden; padding: 6rem 8vw; background: var(--ink); color: var(--parchment); }
.mvv-bg { position: absolute; inset: 0; background: var(--ink-deep) center/cover no-repeat; opacity: 0.35; }
.mvv-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 13, 10, 0.85) 0%, rgba(15, 13, 10, 0.92) 100%); }
.mvv-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.mvv-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.mvv-head .sec-label { justify-content: center; color: var(--copper-light); margin-bottom: 0.8rem; }
.mvv-head .sec-label::before { background: var(--copper-light); }
.mvv-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 600; color: var(--parchment); line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 1rem; }
.mvv-head h2 em { font-style: normal; color: var(--copper-light); }
.mvv-head p { font-size: 0.88rem; color: rgba(245, 240, 232, 0.85); line-height: 1.95; }
.mvv-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 1.5rem; }
.mvv-card { padding: 2.4rem 2rem; background: rgba(245, 240, 232, 0.04); border: 1px solid rgba(245, 240, 232, 0.12); display: flex; flex-direction: column; }
.mvv-card-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.24em; color: var(--copper-light); text-transform: uppercase; font-weight: 700; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(184, 112, 63, 0.3); }
.mvv-card-body { font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; color: var(--parchment); line-height: 1.95; letter-spacing: 0.02em; }
.mvv-card-body strong { color: var(--copper-light); font-weight: 600; }
.mvv-values { list-style: none; padding: 0; margin: 0; counter-reset: mvv-counter; }
.mvv-values li { counter-increment: mvv-counter; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: rgba(245, 240, 232, 0.92); line-height: 1.7; padding: 0.85rem 0 0.85rem 2.4rem; border-bottom: 1px dashed rgba(245, 240, 232, 0.12); position: relative; }
.mvv-values li:last-child { border-bottom: none; }
.mvv-values li::before { content: counter(mvv-counter, decimal-leading-zero); position: absolute; left: 0; top: 0.85rem; font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; color: var(--copper); letter-spacing: 0.06em; }
.mvv-footnote { text-align: center; margin-top: 2.5rem; font-size: 0.78rem; color: rgba(245, 240, 232, 0.5); letter-spacing: 0.04em; }
.mvv-digest { max-width: 780px; margin: 0 auto; }
.mvv-digest p { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.95; color: rgba(245, 240, 232, 0.9); margin-bottom: 1.3rem; padding-left: 6.2rem; text-indent: -6.2rem; }
.mvv-digest p:last-child { margin-bottom: 0; }
.mvv-digest em { font-style: normal; color: var(--copper-light); }
.mvv-digest strong { color: var(--parchment); font-weight: 600; }
.mvv-digest-tag { display: inline-block; width: 5.4rem; margin-right: 0.8rem; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper-light); text-indent: 0; vertical-align: 0.15em; }
@media (max-width: 600px) {
  .mvv-digest p { padding-left: 0; text-indent: 0; }
  .mvv-digest-tag { display: block; width: auto; margin: 0 0 0.4rem; }
}
@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 720px) { .mvv-section { padding: 4rem 6vw; } .mvv-card { padding: 1.8rem 1.4rem; } }

/* Pricing */
.pricing-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; border: 1px solid var(--border-strong); }
.plan { padding: 3.5rem 2.5rem; border-right: 1px solid var(--border); position: relative; transition: all 0.5s var(--ease-expo); background: #fff; }
.plan:last-child { border-right: none; }
.plan:hover { background: #fff; transform: translateY(-6px); box-shadow: 0 24px 60px rgba(26, 22, 18, 0.1); z-index: 2; }
.plan.featured { background: #3A322B; color: var(--parchment); }
.plan.featured:hover { background: #322A24; }
.plan-label { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 2rem; }
.plan.featured .plan-label { color: var(--copper-light); }
.plan-rec { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--copper); }
.plan-price { font-family: var(--font-mono); font-size: 3.5rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.3rem; }
.plan.featured .plan-price { color: #F5F0E8; }
.plan-price small { font-size: 0.8rem; font-weight: 400; opacity: 0.5; }
.plan-per { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.plan.featured .plan-per { color: rgba(245, 240, 232, 0.5); }
.plan-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 2rem; }
.plan.featured .plan-divider { background: rgba(245, 240, 232, 0.15); }
.plan-desc { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 2; }
.plan.featured .plan-desc { color: rgba(245, 240, 232, 0.85); }

/* Quality */
.quality-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 4rem; align-items: center; }
.quality-text p { font-size: 0.9rem; font-weight: 400; color: rgba(245, 240, 232, 0.85); line-height: 2.3; margin-bottom: 1.5rem; }
.quality-visual { text-align: right; }
.quality-num { font-family: var(--font-mono); font-size: clamp(8rem, 15vw, 12rem); font-weight: 700; color: var(--copper); line-height: 0.85; opacity: 0.2; letter-spacing: -0.04em; }
.quality-unit { font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; font-style: normal; color: rgba(245, 240, 232, 0.5); margin-top: 0.5rem; }

/* FAQ */
.faq-list { margin-top: 4rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0; background: none; border: none; color: var(--ink);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  text-align: left; cursor: pointer; transition: color 0.3s ease; letter-spacing: 0.02em;
}
.faq-q:hover { color: var(--copper); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-left: 2rem; transition: all 0.4s ease; font-size: 0.8rem; color: var(--text-muted);
}
.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); color: var(--parchment); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-expo); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 2; padding-bottom: 1.8rem; }

/* Media */
.media-list { margin-top: 3rem; max-width: 760px; }
.media-item {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.media-date {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.06em; color: var(--text-muted); white-space: nowrap; min-width: 7rem;
}
.media-text { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 1.8; }

/* Final CTA with Photo */
.final {
  position: relative; overflow: hidden; text-align: center;
  padding: 10rem 8vw;
}
.final-bg {
  position: absolute; inset: 0;
  background: var(--ink-deep) center/cover no-repeat;
}
.final-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(245, 240, 232, 0.92);
}
.final-content { position: relative; z-index: 2; }
.final-status {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.2em; color: #B85C3F; margin-bottom: 3.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #B85C3F; animation: pulsate 2s ease infinite; }
@keyframes pulsate { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.8); } }
.cta-form { max-width: 480px; margin: 0 auto; text-align: left; }
/* Inquiry type filter (TOP) */
.inquiry-filter { margin-bottom: 1.4rem; padding: 1.5rem 1.4rem; background: rgba(15,13,10,0.78); border: 1px solid rgba(184,112,63,0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.inquiry-filter-q { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-align: center; }
.inquiry-filter-q .req { color: #E89B8A; margin-left: 0.25em; font-weight: 700; }
.inquiry-filter-options { display: flex; flex-direction: column; gap: 0.55rem; }
.inquiry-filter-opt { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.9rem 1rem; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); cursor: pointer; transition: border-color .2s, background .2s; }
.inquiry-filter-opt:hover { border-color: var(--copper-light); background: rgba(255,255,255,0.1); }
.inquiry-filter-opt input { margin-top: 0.25rem; flex-shrink: 0; accent-color: var(--copper); }
.inquiry-filter-opt:has(input:checked) { border-color: var(--copper); background: rgba(184,112,63,0.2); }
.inquiry-filter-label { font-size: 0.85rem; line-height: 1.5; color: var(--parchment); }
.inquiry-filter-label strong { display: block; color: #fff; font-weight: 700; margin-bottom: 0.15rem; font-size: 0.92rem; }
.inquiry-filter-label small { display: block; font-size: 0.78rem; color: rgba(245,240,232,0.78); line-height: 1.5; }
.inquiry-redirect { background: rgba(15,13,10,0.85); border-left: 3px solid var(--copper); padding: 1.5rem 1.4rem; margin-bottom: 0.5rem; color: var(--parchment); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.inquiry-redirect h4 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: #fff; margin-bottom: 0.55rem; }
.inquiry-redirect p { font-size: 0.85rem; color: rgba(245,240,232,0.92); line-height: 1.8; margin-bottom: 1.1rem; }
.inquiry-redirect-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.85rem 1.4rem; background: var(--copper); color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; transition: background .2s; }
.inquiry-redirect-btn:hover { background: var(--copper-light); }
.is-hidden { display: none !important; }
/* HubSpot Developer embed form styling — NOCOS design system */
.hs-form-html { font-family: var(--font-body); color: var(--text-body); }
.hs-form-html form { display: flex; flex-direction: column; gap: 1rem; }
.hs-form-html label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-dark); margin-bottom: 0.4rem; }
.hs-form-html input[type="text"], .hs-form-html input[type="email"], .hs-form-html input[type="tel"], .hs-form-html input[type="number"], .hs-form-html input[type="url"], .hs-form-html select, .hs-form-html textarea { width: 100%; padding: 0.85rem 1rem; font-family: inherit; font-size: 0.92rem; color: var(--ink); background: #fff; border: 1px solid var(--border-strong); border-radius: 0; outline: none; transition: border-color 0.3s ease; appearance: none; -webkit-appearance: none; }
.hs-form-html input[type="text"]:focus, .hs-form-html input[type="email"]:focus, .hs-form-html input[type="tel"]:focus, .hs-form-html input[type="number"]:focus, .hs-form-html select:focus, .hs-form-html textarea:focus { border-color: var(--copper); }
.hs-form-html select { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234A443E'%3E%3Cpath d='M5 8l5 5 5-5H5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px; padding-right: 2.5rem; }
.hs-form-html textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.hs-form-html .hs-form-required { color: #c0392b; margin-left: 0.25em; font-weight: 700; }
.hs-form-html .hs-error-msgs, .hs-form-html .hs-error-msg { color: #c0392b; font-size: 0.78rem; margin-top: 0.25rem; list-style: none; padding: 0; }
.hs-form-html .legal-consent-container { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; padding: 0.6rem 0; }
.hs-form-html .legal-consent-container a { color: var(--copper-deep); text-decoration: underline; }
.hs-form-html input[type="submit"], .hs-form-html .hs-button, .hs-form-html .hsfc-Button, .hs-form-html button[type="submit"], .hs-form-html button[type="button"].hsfc-Button { padding: 0.9rem 2rem; background: var(--ink) !important; color: var(--parchment) !important; border: none !important; font-family: var(--font-body) !important; font-size: 0.92rem !important; font-weight: 600 !important; letter-spacing: 0.06em !important; cursor: pointer !important; transition: background 0.3s ease, transform 0.2s ease !important; border-radius: 0 !important; }
.hs-form-html input[type="submit"]:hover, .hs-form-html .hs-button:hover, .hs-form-html .hsfc-Button:hover { background: var(--copper) !important; transform: translateY(-1px); }
/* Multi-step form: 送信 (submit) gets primary copper, 前へ (back) gets subtle */
.hs-form-html button[type="submit"].hsfc-Button { background: var(--copper) !important; }
.hs-form-html button[type="submit"].hsfc-Button:hover { background: var(--copper-light) !important; }
/* Multi-step nav alignment */
.hs-form-html .hsfc-NextSubmitButtonWrapper, .hs-form-html .hsfc-PreviousNextWrapper, .hs-form-html .hsfc-StepNavigationButton { display: flex; gap: 0.8rem; margin-top: 1rem; }
/* Progress indicator */
.hs-form-html .hsfc-StepProgressBar { background: var(--copper) !important; }
.hs-form-html .hsfc-StepProgressBackground { background: var(--border) !important; }
.hs-form-html .submitted-message { padding: 1.5rem; background: var(--copper-glow); border-left: 3px solid var(--copper); color: var(--ink); font-size: 0.92rem; line-height: 1.8; }
.hs-form-html .hs-form-field { margin: 0; }
.hs-form-html fieldset { border: none; padding: 0; margin: 0; }
.hs-form-html .hs-fieldtype-checkbox ul, .hs-form-html .hs-fieldtype-radio ul, .hs-form-html .inputs-list { list-style: none; padding: 0; margin: 0.3rem 0; }
.hs-form-html .hs-fieldtype-checkbox li, .hs-form-html .hs-fieldtype-radio li { margin-bottom: 0.4rem; }
.hs-form-html input[type="checkbox"], .hs-form-html input[type="radio"] { margin-right: 0.5rem; vertical-align: middle; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--text-dark); margin-bottom: 0.6rem; }
.form-input, .form-select {
  width: 100%; padding: 1rem 0; font-family: var(--font-body); font-size: 0.88rem; font-weight: 400;
  color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--border-strong);
  outline: none; transition: border-color 0.4s ease; border-radius: 0; appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus { border-bottom-color: var(--copper); }
.form-input::placeholder { color: var(--text-faint); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23B8703F' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center;
}
.form-select option { background: var(--parchment); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.btn-submit {
  width: 100%; margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 1.2rem 2.5rem; background: var(--ink); color: var(--parchment);
  border: none; cursor: pointer; transition: all 0.5s var(--ease-expo); position: relative; overflow: hidden;
}
.btn-submit::before { content: ''; position: absolute; inset: 0; background: var(--cta); transform: translateY(101%); transition: transform 0.5s var(--ease-expo); }
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit span { position: relative; z-index: 1; }
.form-phone-alt {
  text-align: center; padding: 1.5rem 0; margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.form-phone-alt p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-phone-alt a {
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: 500;
  color: var(--copper-deep); text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.3s ease;
}
.form-phone-alt a:hover { color: var(--ink); }

/* Nav Phone */
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  color: var(--ink); text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.nav-phone-icon { font-size: 0.85rem; }
.nav-phone-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em; }
.nav-phone-sub { font-size: 0.72rem; font-weight: 400; color: var(--text-dark); }
.nav.on-dark .nav-phone { color: var(--parchment); }
.nav.on-dark .nav-phone .nav-phone-sub { color: rgba(245, 240, 232, 0.82); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
/* Hamburger menu button */
.nav-menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; touch-action:manipulation; -webkit-tap-highlight-color:transparent; user-select:none; padding: 0; margin-left: 1.2rem; gap: 5px; transition: opacity 0.3s ease; }
.nav-menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: all 0.35s var(--ease-expo); transform-origin: center; }
.nav.on-dark .nav-menu-toggle span { background: var(--parchment); }
.nav-menu-toggle:hover { opacity: 0.7; }
.nav-menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Slide-out menu panel */
.nav-menu-backdrop { position: fixed; inset: 0; background: rgba(15, 13, 10, 0.6); backdrop-filter: blur(4px); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.nav-menu-backdrop.is-open { opacity: 1; visibility: visible; }
.nav-menu-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: var(--parchment); z-index: 1001; transform: translateX(100%); transition: transform 0.5s var(--ease-expo); overflow-y: auto; box-shadow: -20px 0 60px rgba(15, 13, 10, 0.2); }
.nav-menu-panel.is-open { transform: translateX(0); }
.nav-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 2rem; border-bottom: 1px solid var(--border); }
.nav-menu-brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink); text-decoration: none; }
.nav-menu-close { width: 32px; height: 32px; background: transparent; border: none; cursor: pointer; padding: 0; position: relative; }
.nav-menu-close::before, .nav-menu-close::after { content: ''; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.5px; background: var(--ink); transform-origin: center; }
.nav-menu-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-menu-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.nav-menu-body { padding: 1.4rem 0; }
.nav-menu-group { padding: 0 2rem; margin-bottom: 1.8rem; }
.nav-menu-group-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; color: var(--copper-deep); text-transform: uppercase; margin-bottom: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.nav-menu-group-label::before { content: ''; width: 18px; height: 1px; background: var(--copper); }
.nav-menu-link { display: block; font-size: 0.92rem; color: var(--text-body); text-decoration: none; padding: 0.65rem 0; border-bottom: 1px dashed var(--border); transition: color 0.2s ease, padding-left 0.2s ease; font-weight: 500; }
.nav-menu-link:hover { color: var(--copper-deep); padding-left: 0.5rem; }
.nav-menu-link small { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; font-weight: 400; }
.nav-menu-link:last-child { border-bottom: none; }
.nav-menu-cta { margin: 1rem 2rem 2rem; padding: 1rem 1.4rem; background: var(--ink); color: var(--parchment); text-align: center; text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; transition: background 0.3s ease; display: block; }
.nav-menu-cta:hover { background: var(--copper); }
@media (max-width: 720px) {
  .nav-menu-toggle { margin-left: 0.6rem; }
  .nav-menu-panel { width: 100vw; max-width: 100vw; }
}

/* Footer (4-column nav) */
.site-footer { background: var(--ink-deep); color: var(--text-faint); padding: 4rem 6vw 2rem; }
.site-footer-top { max-width: 1200px; margin: 0 auto 3rem; }
.site-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2.5rem; }
.site-footer-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.12em; color: var(--parchment); text-decoration: none; }
.site-footer-brand small { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-faint); margin-top: 0.6rem; line-height: 1.7; }
.site-footer-col h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; color: var(--copper-light); text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.site-footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer-col li { margin-bottom: 0.6rem; }
.site-footer-col a { color: rgba(245, 240, 232, 0.75); text-decoration: none; font-size: 0.82rem; transition: color 0.2s ease; }
.site-footer-col a:hover { color: var(--copper-light); }
.site-footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 1.8rem; border-top: 1px solid rgba(245, 240, 232, 0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-faint); flex-wrap: wrap; gap: 1rem; }
.site-footer-bottom a { color: var(--text-faint); text-decoration: none; margin-left: 1.2rem; }
.site-footer-bottom a:hover { color: var(--copper-light); }
@media (max-width: 900px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .site-footer-grid { grid-template-columns: 1fr; }
  .site-footer-bottom { flex-direction: column; text-align: center; }
}

/* Mid CTA Band */
.mid-cta {
  padding: 3.5rem 8vw;
  background: var(--cta);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.mid-cta-text {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--parchment); line-height: 1.6;
}
.mid-cta-text small { display: block; font-size: 0.78rem; font-weight: 400; opacity: 0.8; margin-top: 0.3rem; }
.mid-cta-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.mid-cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; padding: 0.9rem 2rem;
  text-decoration: none; transition: all 0.4s var(--ease-expo);
}
.mid-cta-btn.primary { background: #fff; color: var(--cta); font-weight: 700; }
.mid-cta-btn.primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.mid-cta-btn.secondary {
  background: transparent; color: var(--parchment); border: 1px solid rgba(245,240,232,0.5);
}
.mid-cta-btn.secondary:hover { border-color: var(--parchment); background: rgba(245,240,232,0.1); }
.mid-cta-phone { font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.06em; }

/* Mobile Fixed Phone Bar */
.mobile-phone-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--ink);
  padding: 0;
}
.mobile-phone-bar-inner {
  display: grid; grid-template-columns: 1fr 1fr;
}
.mobile-bar-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem; text-decoration: none;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; transition: background 0.3s ease;
}
.mobile-bar-phone { background: var(--parchment); color: var(--ink); }
.mobile-bar-phone:hover { background: #fff; }
.mobile-bar-form { background: var(--cta); color: #fff; }
.mobile-bar-form:hover { background: var(--cta-hover); }
.mobile-bar-icon { font-size: 1rem; }

/* Desktop Floating CTA — single primary, phone reveals on hover/focus */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
  pointer-events: none;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.4rem; text-decoration: none;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(26, 22, 18, 0.22);
  transition: all 0.3s ease;
}
.floating-cta-primary { background: var(--cta); color: #fff; }
.floating-cta-primary:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184, 112, 63, 0.3); }
.floating-cta-secondary {
  position: absolute; right: 0; bottom: calc(100% + 0.5rem);
  background: var(--parchment); color: var(--ink); border: 1px solid var(--border-strong);
  opacity: 0; transform: translateY(10px) scale(0.97); pointer-events: none;
  transition: opacity 0.35s var(--ease-expo), transform 0.35s var(--ease-expo);
}
.floating-cta:hover .floating-cta-secondary,
.floating-cta:focus-within .floating-cta-secondary {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.floating-cta-secondary:hover { background: #fff; }
@media (max-width: 768px) { .floating-cta { display: none; } }

/* Exit Intent Popup */
.exit-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15, 13, 10, 0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-popup {
  background: var(--parchment); max-width: 480px; width: 90%;
  padding: 3rem; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  transform: translateY(20px); transition: transform 0.5s var(--ease-expo);
}
.exit-overlay.show .exit-popup { transform: translateY(0); }
.exit-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; background: none; border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted); transition: all 0.3s ease;
}
.exit-close:hover { background: var(--ink); color: var(--parchment); border-color: var(--ink); }
.exit-popup-label {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper-deep);
  margin-bottom: 1rem;
}
.exit-popup h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); line-height: 1.4; margin-bottom: 0.8rem;
}
.exit-popup p {
  font-size: 0.82rem; font-weight: 400; color: var(--text-body);
  line-height: 1.9; margin-bottom: 1.5rem;
}
.exit-popup-cta {
  display: block; width: 100%; text-align: center;
  padding: 1rem 2rem; background: var(--cta); color: #fff;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  transition: all 0.4s var(--ease-expo);
}
.exit-popup-cta:hover { background: var(--cta-hover); transform: translateY(-2px); }
.exit-popup-sub {
  display: block; text-align: center; margin-top: 0.8rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* Trust Badges near form */
.form-trust-badges {
  display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.form-trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; background: rgba(26, 22, 18, 0.04);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-trust-badge-icon { font-size: 0.9rem; color: var(--copper-deep); }

/* Voices */
.voices-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.voice-card { padding: 2.5rem; border-right: 1px solid var(--border); position: relative; }
.voice-card:last-child { border-right: none; }
.voice-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: var(--copper); opacity: 0.15; position: absolute; top: 0.5rem; left: 1.2rem; line-height: 1;
}
.voice-card p { font-size: 0.82rem; font-weight: 400; color: var(--text-body); line-height: 2; position: relative; z-index: 1; }
.voice-attr { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.15em; color: var(--text-muted); }

/* Transition Flow */
.transition-steps { margin-top: 4rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step-item {
  padding: 2.5rem 2rem; border: 1px solid rgba(245, 240, 232, 0.1);
  border-right: none; position: relative; counter-increment: step;
}
.step-item:last-child { border-right: 1px solid rgba(245, 240, 232, 0.1); }
.step-num { font-family: var(--font-mono); font-size: 3rem; font-weight: 300; color: var(--copper); opacity: 0.3; line-height: 1; margin-bottom: 1.5rem; font-style: normal; }
.step-item h3 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; color: var(--parchment); margin-bottom: 0.8rem; line-height: 1.5; }
.step-item p { font-size: 0.78rem; font-weight: 400; color: rgba(245, 240, 232, 0.55); line-height: 1.9; }
.step-arrow { position: absolute; right: -0.6rem; top: 50%; transform: translateY(-50%); color: var(--copper); font-size: 1rem; z-index: 2; }
.transition-highlight { margin-top: 2.5rem; text-align: center; }
.transition-highlight-text {
  display: inline-block; padding: 1rem 3rem;
  background: rgba(184, 112, 63, 0.1); border: 1px solid rgba(184, 112, 63, 0.3);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--copper-light);
}

/* Trust Bar */
.trust-bar { padding: 3rem 8vw; background: var(--ink); display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item-label { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 240, 232, 0.4); margin-bottom: 0.3rem; }
.trust-item-value { font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; color: var(--parchment); letter-spacing: 0.02em; }
.trust-item-value small { font-size: 0.78rem; font-weight: 400; opacity: 0.5; }
.trust-item-note { font-size: 0.78rem; font-weight: 300; color: rgba(245, 240, 232, 0.35); margin-top: 0.25rem; letter-spacing: 0.02em; }

/* Plan features list */
.plan-features { list-style: none; padding: 0; margin-top: 1.5rem; }
.plan-features li {
  font-size: 0.78rem; font-weight: 400; color: var(--text-body); line-height: 1.6;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.plan.featured .plan-features li { color: rgba(245, 240, 232, 0.75); border-bottom-color: rgba(245, 240, 232, 0.12); }
.plan-features li::before { content: '✓'; color: var(--copper-deep); font-weight: 500; font-size: 0.78rem; }
.plan.featured .plan-features li::before { color: var(--copper-light); }

/* Plan fee details */
.plan-fees { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.plan.featured .plan-fees { border-top-color: rgba(245, 240, 232, 0.1); }
.plan-fee-row { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; font-size: 0.78rem; }
.plan-fee-label { color: var(--text-muted); font-weight: 400; }
.plan.featured .plan-fee-label { color: rgba(245, 240, 232, 0.55); }
.plan-fee-val { font-weight: 500; color: var(--ink); }
.plan.featured .plan-fee-val { color: var(--parchment); }

/* Plan recommend */
.plan-recommend { margin-top: 2rem; padding: 1.2rem 1.4rem; background: var(--copper-glow); border-left: 2px solid var(--copper); font-size: 0.78rem; font-weight: 400; color: var(--text-body); line-height: 1.9; }
.plan.featured .plan-recommend { background: rgba(184, 112, 63, 0.12); color: rgba(245, 240, 232, 0.75); }
.plan-recommend strong { font-weight: 500; color: var(--copper-deep); display: block; margin-bottom: 0.3rem; }
.plan.featured .plan-recommend strong { color: var(--copper-light); }

/* Simulation table */
.sim-section { margin-top: 5rem; }
.sim-title { font-family: var(--font-body); font-size: 1.5rem; font-weight: 700; text-align: center; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.sim-subtitle { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); text-align: center; margin-bottom: 2.5rem; }
.sim-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border-strong); overflow: hidden; }
.sim-table th, .sim-table td { padding: 0.9rem 1rem; text-align: center; font-size: 0.78rem; }
.sim-table thead th { background: var(--ink); color: var(--parchment); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.06em; border-right: 1px solid rgba(245, 240, 232, 0.1); }
.sim-table thead th:last-child { border-right: none; }
.sim-table thead th:first-child { background: var(--text-muted); text-align: left; }
.sim-table thead th.hl { background: var(--copper); }
.sim-table tbody td { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); font-weight: 400; }
.sim-table tbody td:last-child { border-right: none; }
.sim-table tbody td:first-child { text-align: left; font-weight: 400; color: var(--text-muted); background: rgba(26, 22, 18, 0.02); }
.sim-table tbody tr:last-child td { font-weight: 600; font-size: 0.85rem; background: var(--copper-glow); border-bottom: none; }
.sim-table tbody tr:last-child td:first-child { background: rgba(184, 112, 63, 0.08); }
.sim-table .txt-minus { color: #b04a3a; }
.sim-table .txt-plus { color: var(--copper-deep); font-weight: 600; }
.sim-note { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); margin-top: 1rem; text-align: center; line-height: 1.8; }

/* Footer */
.footer { padding: 3rem 8vw; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: 0.12em; color: var(--ink); opacity: 0.4; }
.footer-text { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; }

/* Responsive */
@media (max-width: 1280px) and (min-width: 769px) {
  .nav { padding: 1.15rem 4.5vw; }
  .nav-brand { font-size: 1.3rem; }
  .nav-right { gap: 1.25rem; }
  .nav-phone-num { font-size: 0.78rem; }
  .nav-phone-sub { font-size: 0.78rem; }
  .nav-cta { padding: 0.65rem 1.5rem; }
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: 1fr 1fr !important; }
  .feat-item { border-bottom: 1px solid rgba(245, 240, 232, 0.08); }
  .feat-item:nth-child(2n) { border-right: none; }
  .stories-layout { grid-template-columns: 1fr !important; }
  .logic-layout, .quality-layout { grid-template-columns: 1fr; gap: 3rem; }
  .mission-content { max-width: 100%; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card { border-right: none; border-bottom: 1px solid var(--border); }
  .voice-card:last-child { border-bottom: none; }
  .transition-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .trust-bar { gap: 2rem; }
}
@media (max-width: 768px) {
  .sec { padding: 5rem 6vw; }
  .nav { padding: 1rem 5vw; }
  .nav-brand { font-size: 1.25rem; }
  .campaign-layout, .stories-layout, .pricing-layout { grid-template-columns: 1fr; }
  .story-item:first-child { border-right: 1px solid var(--border); border-bottom: none; }
  .plan { border-right: none; border-bottom: 1px solid var(--border); }
  .plan:last-child { border-bottom: none; }
  .sim-table th, .sim-table td { padding: 0.6rem 0.5rem; font-size: 0.78rem; }
  .sim-table thead th { font-size: 0.78rem; }
  .sim-section { margin-top: 3rem; overflow-x: auto; }
  .feat-grid { grid-template-columns: 1fr !important; }
  .feat-item { border-right: none !important; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .transition-steps { grid-template-columns: 1fr; }
  .pain-list { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; padding: 2.5rem 6vw; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .final { padding: 6rem 6vw 8rem; }
  .photo-break { height: 35vh; min-height: 250px; }
  .mobile-phone-bar { display: block; }
  .mid-cta { flex-direction: column; text-align: center; padding: 2.5rem 6vw; }
  .mid-cta-actions { flex-direction: column; width: 100%; }
  .mid-cta-btn { justify-content: center; width: 100%; }
}

/* ===== L-8 Area badges ===== */
.area-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; padding: 1.5rem 6vw; background: var(--parchment-warm); border-bottom: 1px solid var(--border); font-size: 0.78rem; color: var(--text-body); }
.area-bar-label { font-weight: 700; color: var(--ink); margin-right: 0.5rem; letter-spacing: 0.05em; }
.area-chip { display: inline-block; padding: 0.3rem 0.85rem; background: #fff; border: 1px solid var(--border-strong); border-radius: 999px; font-size: 0.78rem; font-weight: 500; color: var(--ink); letter-spacing: 0.04em; }
.area-bar-note { font-size: 0.78rem; color: var(--text-muted); margin-left: 0.5rem; }
@media (max-width: 720px) { .area-bar { padding: 1.2rem 6vw; gap: 0.4rem; } .area-bar-note { display: block; width: 100%; text-align: center; margin: 0.5rem 0 0; } }

/* ===== L-1 Simulator ===== */
.simulator-section { padding: 6rem 8vw; background: var(--parchment); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sim-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.sim-head .sec-label { justify-content: center; }
.sim-head .sec-heading { text-align: center; margin-bottom: 1rem; }
.sim-head .sec-body { font-size: 0.9rem; color: var(--text-body); line-height: 1.9; }
.sim-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--border-strong); }
.sim-input-panel { padding: 2.5rem; border-right: 1px solid var(--border); background: var(--parchment-warm); }
.sim-result-panel { padding: 2.5rem; }
.sim-field { margin-bottom: 1.6rem; }
.sim-field-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.sim-field-input { width: 100%; padding: 0.8rem 1rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--border-strong); font-family: var(--font-mono, inherit); }
.sim-field-input:focus { outline: none; border-color: var(--copper); }
.sim-presets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.sim-preset-btn { padding: 0.35rem 0.8rem; font-size: 0.78rem; background: #fff; border: 1px solid var(--border-strong); color: var(--text-body); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.sim-preset-btn:hover, .sim-preset-btn.active { background: var(--ink); color: var(--parchment); border-color: var(--ink); }
.sim-slider-wrap { display: flex; align-items: center; gap: 0.8rem; }
.sim-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: var(--border-strong); outline: none; cursor: pointer; }
.sim-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--copper); border-radius: 50%; cursor: pointer; }
.sim-slider::-moz-range-thumb { width: 18px; height: 18px; background: var(--copper); border-radius: 50%; cursor: pointer; border: none; }
.sim-slider-val { font-size: 0.95rem; font-weight: 700; color: var(--copper); min-width: 50px; text-align: right; }
.sim-plan-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 0.4rem; border: 1px solid var(--border-strong); }
.sim-plan-tab { padding: 0.7rem 0.4rem; font-size: 0.78rem; background: #fff; color: var(--text-body); cursor: pointer; border: none; border-right: 1px solid var(--border); transition: all 0.2s; font-family: inherit; text-align: center; }
.sim-plan-tab:last-child { border-right: none; }
.sim-plan-tab.active { background: var(--copper); color: #fff; }
.sim-plan-tab strong { display: block; font-size: 0.78rem; font-weight: 700; }
.sim-plan-tab small { font-size: 0.78rem; opacity: 0.85; }
.sim-result-headline { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }
.sim-result-bignum { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--copper); line-height: 1.05; margin-bottom: 0.4rem; }
.sim-result-bignum small { font-size: 0.45em; color: var(--ink); margin-left: 0.3em; }
.sim-result-sub { font-size: 0.88rem; color: var(--text-body); margin-bottom: 1.8rem; line-height: 1.7; }
.sim-result-sub strong { color: var(--copper-deep); font-weight: 700; }
.sim-breakdown { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border-strong); margin-bottom: 1.6rem; font-size: 0.78rem; }
.sim-breakdown th, .sim-breakdown td { padding: 0.7rem 0.9rem; text-align: right; }
.sim-breakdown th:first-child, .sim-breakdown td:first-child { text-align: left; }
.sim-breakdown thead th { background: var(--ink); color: var(--parchment); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; }
.sim-breakdown tbody td { border-bottom: 1px solid var(--border); }
.sim-breakdown tbody tr:last-child td { border-bottom: none; font-weight: 700; background: var(--copper-glow); color: var(--ink); }
.sim-cta-block { padding: 1.4rem 1.6rem; background: var(--ink); color: var(--parchment); margin-top: 1rem; }
.sim-cta-block p { font-size: 0.88rem; margin-bottom: 0.9rem; line-height: 1.7; }
.sim-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.6rem; background: var(--copper); color: #fff; font-size: 0.85rem; font-weight: 700; text-decoration: none; letter-spacing: 0.05em; transition: background 0.2s; }
.sim-cta-btn:hover { background: var(--cta-hover); }
.sim-secondary-link { font-size: 0.78rem; color: rgba(245, 240, 232, 0.85); margin-top: 0.9rem; margin-bottom: 0; line-height: 1.6; }
.sim-secondary-link a { color: var(--copper-light); text-decoration: underline; text-underline-offset: 3px; }
.sim-secondary-link a:hover { color: var(--parchment); }
.sim-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1.2rem; line-height: 1.7; }
@media (max-width: 880px) {
  .simulator-section { padding: 4rem 6vw; }
  .sim-grid { grid-template-columns: 1fr; }
  .sim-input-panel { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
  .sim-result-panel { padding: 2rem 1.5rem; }
}

/* ===== L-2 Comparison Table ===== */
.comp-section { padding: 6rem 8vw; background: var(--parchment-warm); }
.comp-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.comp-head .sec-heading { text-align: center; margin-bottom: 0.9rem; }
.comp-head .sec-body { font-size: 0.88rem; color: var(--text-body); line-height: 1.9; }
.comp-table-wrap { max-width: 1080px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--border-strong); }
.comp-table th, .comp-table td { padding: 1.1rem 1.2rem; text-align: left; font-size: 0.82rem; vertical-align: top; line-height: 1.6; }
.comp-table thead th { background: var(--ink); color: var(--parchment); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.05em; border-right: 1px solid rgba(245,240,232,0.12); text-align: center; }
.comp-table thead th:first-child { background: var(--text-muted); }
.comp-table thead th:last-child { background: var(--copper); border-right: none; }
.comp-table tbody th { font-weight: 600; color: var(--ink); background: rgba(26,22,18,0.03); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); width: 22%; font-size: 0.8rem; }
.comp-table tbody td { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); color: var(--text-body); }
.comp-table tbody td:last-child { border-right: none; background: var(--copper-glow); color: var(--ink); font-weight: 600; }
.comp-table tbody tr:last-child th, .comp-table tbody tr:last-child td { border-bottom: none; }
.comp-mark { display: inline-block; font-weight: 700; margin-right: 0.3em; }
.comp-mark-good { color: var(--copper-deep); }
.comp-mark-mid { color: #c89a4a; }
.comp-note { max-width: 1080px; margin: 1.5rem auto 0; padding: 1.2rem 1.5rem; background: #fff; border-left: 3px solid var(--copper); font-size: 0.85rem; color: var(--text-body); line-height: 1.8; }
.comp-note strong { color: var(--ink); }
@media (max-width: 720px) { .comp-section { padding: 4rem 6vw; } }

/* ===== Risk Hedge Section ===== */
.risk-section { padding: 6rem 8vw; background: var(--parchment); border-top: 1px solid var(--border); }
.risk-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.risk-head .sec-heading { text-align: center; margin-bottom: 0.9rem; }
.risk-head .sec-body { margin: 0 auto; font-size: 0.88rem; color: var(--text-body); line-height: 1.9; }
.risk-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.risk-card { background: #fff; border: 1px solid var(--border-strong); padding: 2rem 1.6rem; position: relative; display: flex; flex-direction: column; }
.risk-card-icon { width: 32px; height: 32px; margin-bottom: 0.9rem; color: var(--copper-deep); }
.risk-card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.risk-card-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; color: var(--copper-deep); text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
.risk-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; line-height: 1.45; }
.risk-card-stat { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--copper); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.risk-card-stat small { font-size: 0.9rem; font-weight: 500; margin-left: 0.25em; color: var(--text-body); }
.risk-card-stat-sub { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 1rem; }
.risk-card p { font-size: 0.82rem; color: var(--text-body); line-height: 1.85; }
.risk-flow { max-width: 920px; margin: 3.5rem auto 0; padding: 2.2rem 2rem; background: var(--ink); color: var(--parchment); position: relative; }
.risk-flow-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 1.4rem; font-weight: 600; text-align: center; }
.risk-flow-diagram { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; max-width: 800px; margin: 0 auto; }
.risk-flow-node { background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.15); padding: 1rem 0.8rem; text-align: center; font-size: 0.78rem; line-height: 1.5; }
.risk-flow-node strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--parchment); margin-bottom: 0.25rem; font-weight: 600; }
.risk-flow-node small { display: block; font-size: 0.78rem; color: var(--text-faint); margin-top: 0.3rem; line-height: 1.4; }
.risk-flow-node.is-hub { background: var(--copper); border-color: var(--copper); color: var(--parchment); }
.risk-flow-node.is-hub strong { color: var(--parchment); }
.risk-flow-node.is-hub small { color: rgba(245,240,232,0.85); }
.risk-flow-arrow { font-size: 1.2rem; color: var(--copper-light); text-align: center; font-weight: 300; }
.risk-flow-caption { text-align: center; margin-top: 1.4rem; font-size: 0.78rem; color: var(--text-faint); line-height: 1.8; }
.risk-flow-caption strong { color: var(--parchment); font-weight: 600; }
.risk-cta { max-width: 920px; margin: 2rem auto 0; text-align: center; }
.risk-cta a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--copper-deep); text-decoration: none; font-weight: 600; padding: 0.7rem 1.4rem; border: 1px solid var(--copper); transition: all 0.3s ease; letter-spacing: 0.04em; }
.risk-cta a:hover { background: var(--copper); color: var(--parchment); }
@media (max-width: 920px) {
  .risk-grid { grid-template-columns: 1fr; max-width: 520px; }
  .risk-flow-diagram { grid-template-columns: 1fr; gap: 0.6rem; }
  .risk-flow-arrow { transform: rotate(90deg); font-size: 1rem; padding: 0.2rem 0; }
}
@media (max-width: 720px) { .risk-section { padding: 4rem 6vw; } .risk-flow { padding: 1.8rem 1.2rem; } }

/* ===== Property Gallery ===== */
.gallery-section { padding: 6rem 8vw; background: var(--parchment-warm); border-top: 1px solid var(--border); }
.gallery-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.gallery-head .sec-heading { text-align: center; margin-bottom: 0.9rem; }
.gallery-head .sec-body { margin: 0 auto; font-size: 0.88rem; color: var(--text-body); line-height: 1.9; }
.gallery-track {
  max-width: 1280px; margin: 0 auto; display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { position: relative; overflow: hidden; background: var(--ink); flex: 0 0 auto; width: 380px; height: 320px; scroll-snap-align: start; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease-expo); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.is-feature { width: 480px; }
.gallery-item-label { position: absolute; left: 0; bottom: 0; right: 0; padding: 1.2rem 1.4rem 1rem; background: linear-gradient(to top, rgba(15,13,10,0.85) 0%, rgba(15,13,10,0.4) 70%, transparent 100%); color: var(--parchment); pointer-events: none; }
.gallery-item-label-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--copper-light); text-transform: uppercase; margin-bottom: 0.2rem; font-weight: 600; }
.gallery-item-label-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em; }
.gallery-item.is-feature .gallery-item-label-name { font-size: 1.15rem; }
.gallery-footnote { max-width: 1200px; margin: 1.8rem auto 0; text-align: center; font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }
.editor-note { max-width: 720px; margin: 2.2rem auto 0; padding: 1rem 1.4rem 1rem 2.6rem; font-size: 0.82rem; line-height: 1.95; color: var(--text-body); font-family: var(--font-display); font-style: italic; position: relative; }
.editor-note::before { content: '──'; position: absolute; left: 0.6rem; top: 1rem; color: var(--copper-deep); font-weight: 600; letter-spacing: -0.1em; font-style: normal; font-family: var(--font-body); }
.editor-note small { display: block; font-family: var(--font-mono); font-size: 0.68rem; font-style: normal; color: var(--text-muted); letter-spacing: 0.12em; margin-top: 0.5rem; text-transform: uppercase; }
@media (max-width: 720px) {
  .gallery-section { padding: 4rem 6vw; }
  .gallery-track { gap: 0.8rem; }
  .gallery-item { width: 280px; height: 260px; }
  .gallery-item.is-feature { width: 320px; }
}

/* ===== L-3 Savings Table ===== */
.savings-block { margin-top: 4rem; padding: 2.5rem; background: #fff; border: 1px solid var(--border-strong); }
.savings-head { text-align: center; margin-bottom: 1.5rem; }
.savings-head h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.savings-head p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.savings-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border-strong); font-size: 0.85rem; }
.savings-table th, .savings-table td { padding: 0.85rem 1rem; text-align: right; }
.savings-table th:first-child, .savings-table td:first-child { text-align: left; }
.savings-table thead th { background: var(--ink); color: var(--parchment); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; }
.savings-table tbody td { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); color: var(--text-body); }
.savings-table tbody td:last-child { border-right: none; background: var(--copper-glow); color: var(--ink); font-weight: 700; }
.savings-table tbody tr:last-child td { border-bottom: none; }
.savings-table tbody tr.savings-row-active td { background: rgba(184,112,63,0.18) !important; color: var(--ink); position: relative; }
.savings-table tbody tr.savings-row-active td:first-child::before { content: "▶"; color: var(--copper-deep); margin-right: 0.4em; font-size: 0.7em; }
.savings-table tbody tr td { transition: background 0.3s ease; }
.savings-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.7; }
@media (max-width: 720px) {
  .savings-block { padding: 1.5rem; }
  .savings-table th, .savings-table td { padding: 0.6rem 0.5rem; font-size: 0.78rem; }
}

/* ===== L-4 Voices (enhanced) ===== */
.voice-card-v2 { padding: 2rem; border-right: 1px solid var(--border); background: #fff; display: flex; flex-direction: column; gap: 1rem; }
.voice-card-v2:last-child { border-right: none; }
.voice-head { display: flex; align-items: center; gap: 0.9rem; }
.voice-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--copper); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; flex-shrink: 0; letter-spacing: 0.02em; }
.voice-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; line-height: 1.4; }
.voice-meta { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.voice-quote { font-size: 0.82rem; color: var(--text-body); line-height: 1.95; flex: 1; }
.voice-result { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; padding-top: 0.9rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--ink); font-weight: 600; }
.voice-result span::before { content: "▶ "; color: var(--copper-deep); margin-right: 0.2em; }
.voices-grid-v2 { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--border); }
.voices-grid-v2 .voice-card-v2:nth-child(2n) { border-right: none; }
.voices-grid-v2 .voice-card-v2:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
@media (max-width: 880px) {
  .voices-grid-v2 { grid-template-columns: 1fr; }
  .voice-card-v2 { border-right: none !important; border-bottom: 1px solid var(--border); }
  .voice-card-v2:last-child { border-bottom: none; }
}
/* ===== Information Structure (担当者属人型 vs 組織保管型) ===== */
.istr-section { text-align: center; }
.istr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 3rem; text-align: left; }
.istr-card { background: #fff; border: 1px solid var(--border-strong); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; }
.istr-card.legacy { border-top: 4px solid #B30B00; }
.istr-card.nocos { border-top: 4px solid var(--copper); }
.istr-tag { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.istr-card.legacy .istr-tag { color: #B30B00; }
.istr-card.nocos .istr-tag { color: var(--copper); }
.istr-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--ink); line-height: 1.55; margin: 0.35rem 0 1.2rem; }
.istr-row { display: grid; grid-template-columns: 8.2rem 1fr; gap: 0.9rem; padding: 0.85rem 0; border-top: 1px dashed var(--border); }
.istr-row:first-of-type { border-top: none; padding-top: 0; }
.istr-k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--text-muted); padding-top: 0.15rem; }
.istr-v { font-size: 0.85rem; line-height: 1.85; color: var(--text-body); }
.istr-v strong { color: var(--ink); font-weight: 700; }
.istr-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.istr-chip { font-size: 0.72rem; line-height: 1.5; padding: 0.28rem 0.65rem; border: 1px solid var(--border-strong); background: var(--parchment); color: var(--ink); }
.istr-card.legacy .istr-chip { border-style: dashed; border-color: rgba(179, 11, 0, 0.45); background: rgba(179, 11, 0, 0.04); }
.istr-card.nocos .istr-chip { border-color: rgba(184, 112, 63, 0.5); background: var(--copper-glow); }
.istr-out { margin-top: auto; padding: 0.9rem 1.1rem; font-size: 0.85rem; line-height: 1.8; display: flex; gap: 0.6rem; }
.istr-out .mark { flex-shrink: 0; font-weight: 700; }
.istr-card.legacy .istr-out { background: rgba(179, 11, 0, 0.06); border-left: 3px solid #B30B00; }
.istr-card.legacy .istr-out .mark { color: #B30B00; }
.istr-card.nocos .istr-out { background: var(--copper-glow); border-left: 3px solid var(--copper); }
.istr-card.nocos .istr-out .mark { color: var(--copper-deep); }
.istr-out strong { color: var(--ink); }
.istr-caption { margin: 1.6rem auto 0; max-width: 780px; font-size: 0.82rem; line-height: 1.9; color: var(--text-muted); }
.istr-caption strong { color: var(--ink); }
.istr-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; padding: 0.9rem 2rem; background: transparent; color: var(--ink); border: 1px solid var(--ink); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.3s ease; }
.istr-link:hover { background: var(--ink); color: var(--parchment); }
@media (max-width: 880px) {
  .istr-grid { grid-template-columns: 1fr; gap: 1rem; }
  .istr-row { grid-template-columns: 1fr; gap: 0.3rem; }
}
@media (max-width:760px){br.brp{display:none}}
